container = $this->createMock(ShaarliTestContainer::class); $this->container->loginManager = $this->createMock(LoginManager::class); // Config $this->container->conf = $this->createMock(ConfigManager::class); $this->container->conf->method('get')->willReturnCallback(function (string $parameter, $default) { if ($parameter === 'general.tags_separator') { return '@'; } return $default === null ? $parameter : $default; }); // PageBuilder $this->container->pageBuilder = $this->createMock(PageBuilder::class); $this->container->pageBuilder ->method('render') ->willReturnCallback(function (string $template): string { return $template; }) ; // Plugin Manager $this->container->pluginManager = $this->createMock(PluginManager::class); // BookmarkService $this->container->bookmarkService = $this->createMock(BookmarkServiceInterface::class); // Formatter $this->container->formatterFactory = $this->createMock(FormatterFactory::class); $this->container->formatterFactory ->method('getFormatter') ->willReturnCallback(function (): BookmarkFormatter { return new BookmarkRawFormatter($this->container->conf, true); }) ; // CacheManager $this->container->pageCacheManager = $this->createMock(PageCacheManager::class); // SessionManager $this->container->sessionManager = $this->createMock(SessionManager::class); // $_SERVER $this->container->environment = [ 'SERVER_NAME' => 'shaarli', 'SERVER_PORT' => '80', 'REQUEST_URI' => '/subfolder/daily-rss', 'REMOTE_ADDR' => '1.2.3.4', 'SCRIPT_NAME' => '/subfolder/index.php', ]; $this->container->basePath = '/subfolder'; } /** * Pass a reference of an array which will be populated by `pageBuilder->assign` calls during execution. * * @param mixed $variables Array reference to populate. */ protected function assignTemplateVars(array &$variables): void { $this->container->pageBuilder ->method('assign') ->willReturnCallback(function ($key, $value) use (&$variables) { $variables[$key] = $value; return $this; }) ; } protected static function generateString(int $length): string { // bin2hex(random_bytes) generates string twice as long as given parameter $length = (int) ceil($length / 2); return bin2hex(random_bytes($length)); } /** * Force to be used in PHPUnit context. */ protected abstract function isInTestsContext(): bool; }