userSession = $this->createMock(IUserSession::class); $this->config = $this->createMock(IConfig::class); $this->logger = $this->createMock(LoggerInterface::class); $this->themingDefaults = $this->createMock(ThemingDefaults::class); $this->themingDefaults->expects($this->any()) ->method('getColorPrimary') ->willReturn('#0082c9'); $this->themingDefaults->expects($this->any()) ->method('getDefaultColorPrimary') ->willReturn('#0082c9'); $this->initThemes(); $this->themesService = new ThemesService( $this->userSession, $this->config, $this->logger, ...array_values($this->themes) ); parent::setUp(); } public function testGetThemes(): void { $expected = [ 'default', 'light', 'dark', 'light-highcontrast', 'dark-highcontrast', 'opendyslexic', ]; $this->assertEquals($expected, array_keys($this->themesService->getThemes())); } public function testGetThemesEnforced(): void { $this->config->expects($this->once()) ->method('getSystemValueString') ->with('enforce_theme', '') ->willReturn('dark'); $this->logger->expects($this->never()) ->method('error'); $expected = [ 'default', 'dark', ]; $this->assertEquals($expected, array_keys($this->themesService->getThemes())); } public function testGetThemesEnforcedInvalid(): void { $this->config->expects($this->once()) ->method('getSystemValueString') ->with('enforce_theme', '') ->willReturn('invalid'); $this->logger->expects($this->once()) ->method('error') ->with('Enforced theme not found', ['theme' => 'invalid']); $expected = [ 'default', 'light', 'dark', 'light-highcontrast', 'dark-highcontrast', 'opendyslexic', ]; $this->assertEquals($expected, array_keys($this->themesService->getThemes())); } public function dataTestEnableTheme() { return [ ['default', [], ['default']], ['dark', [], ['dark']], ['dark', ['dark'], ['dark']], ['opendyslexic', ['dark'], ['dark', 'opendyslexic']], ['dark', ['light-highcontrast', 'opendyslexic'], ['opendyslexic', 'dark']], ]; } /** * @dataProvider dataTestEnableTheme * * @param string $toEnable * @param string[] $enabledThemes * @param string[] $expectedEnabled */ public function testEnableTheme(string $toEnable, array $enabledThemes, array $expectedEnabled): void { $user = $this->createMock(IUser::class); $this->userSession->expects($this->any()) ->method('getUser') ->willReturn($user); $user->expects($this->any()) ->method('getUID') ->willReturn('user'); $this->config->expects($this->once()) ->method('getUserValue') ->with('user', Application::APP_ID, 'enabled-themes', '[]') ->willReturn(json_encode($enabledThemes)); $this->assertEquals($expectedEnabled, $this->themesService->enableTheme($this->themes[$toEnable])); } public function dataTestDisableTheme() { return [ ['dark', [], []], ['dark', ['dark'], []], ['opendyslexic', ['dark', 'opendyslexic'], ['dark'], ], ['light-highcontrast', ['opendyslexic'], ['opendyslexic']], ]; } /** * @dataProvider dataTestDisableTheme * * @param string $toEnable * @param string[] $enabledThemes * @param string[] $expectedEnabled */ public function testDisableTheme(string $toDisable, array $enabledThemes, array $expectedEnabled): void { $user = $this->createMock(IUser::class); $this->userSession->expects($this->any()) ->method('getUser') ->willReturn($user); $user->expects($this->any()) ->method('getUID') ->willReturn('user'); $this->config->expects($this->once()) ->method('getUserValue') ->with('user', Application::APP_ID, 'enabled-themes', '[]') ->willReturn(json_encode($enabledThemes)); $this->assertEquals($expectedEnabled, $this->themesService->disableTheme($this->themes[$toDisable])); } public function dataTestIsEnabled() { return [ ['dark', [], false], ['dark', ['dark'], true], ['opendyslexic', ['dark', 'opendyslexic'], true], ['light-highcontrast', ['opendyslexic'], false], ]; } /** * @dataProvider dataTestIsEnabled * * @param string $toEnable * @param string[] $enabledThemes */ public function testIsEnabled(string $themeId, array $enabledThemes, $expected): void { $user = $this->createMock(IUser::class); $this->userSession->expects($this->any()) ->method('getUser') ->willReturn($user); $user->expects($this->any()) ->method('getUID') ->willReturn('user'); $this->config->expects($this->once()) ->method('getUserValue') ->with('user', Application::APP_ID, 'enabled-themes', '[]') ->willReturn(json_encode($enabledThemes)); $this->assertEquals($expected, $this->themesService->isEnabled($this->themes[$themeId])); } public function testGetEnabledThemes(): void { $user = $this->createMock(IUser::class); $this->userSession->expects($this->any()) ->method('getUser') ->willReturn($user); $user->expects($this->any()) ->method('getUID') ->willReturn('user'); $this->config->expects($this->once()) ->method('getUserValue') ->with('user', Application::APP_ID, 'enabled-themes', '[]') ->willReturn(json_encode([])); $this->config->expects($this->once()) ->method('getSystemValueString') ->with('enforce_theme', '') ->willReturn(''); $this->assertEquals([], $this->themesService->getEnabledThemes()); } public function testGetEnabledThemesEnforced(): void { $user = $this->createMock(IUser::class); $this->userSession->expects($this->any()) ->method('getUser') ->willReturn($user); $user->expects($this->any()) ->method('getUID') ->willReturn('user'); $this->config->expects($this->once()) ->method('getUserValue') ->with('user', Application::APP_ID, 'enabled-themes', '[]') ->willReturn(json_encode([])); $this->config->expects($this->once()) ->method('getSystemValueString') ->with('enforce_theme', '') ->willReturn('light'); $this->assertEquals(['light'], $this->themesService->getEnabledThemes()); } public function dataTestSetEnabledThemes() { return [ [[], []], [['light'], ['light']], [['dark'], ['dark']], [['dark', 'dark', 'opendyslexic'], ['dark', 'opendyslexic']], ]; } /** * @dataProvider dataTestSetEnabledThemes * * @param string[] $enabledThemes * @param string[] $expected */ public function testSetEnabledThemes(array $enabledThemes, array $expected): void { $user = $this->createMock(IUser::class); $this->userSession->expects($this->any()) ->method('getUser') ->willReturn($user); $user->expects($this->any()) ->method('getUID') ->willReturn('user'); $this->config->expects($this->once()) ->method('setUserValue') ->with('user', Application::APP_ID, 'enabled-themes', json_encode($expected)); $this->invokePrivate($this->themesService, 'setEnabledThemes', [$enabledThemes]); } private function initThemes() { $util = $this->createMock(Util::class); $urlGenerator = $this->createMock(IURLGenerator::class); $imageManager = $this->createMock(ImageManager::class); $l10n = $this->createMock(IL10N::class); $appManager = $this->createMock(IAppManager::class); $this->themes = [ 'default' => new DefaultTheme( $util, $this->themingDefaults, $this->userSession, $urlGenerator, $imageManager, $this->config, $l10n, $appManager, null, ), 'light' => new LightTheme( $util, $this->themingDefaults, $this->userSession, $urlGenerator, $imageManager, $this->config, $l10n, $appManager, null, ), 'dark' => new DarkTheme( $util, $this->themingDefaults, $this->userSession, $urlGenerator, $imageManager, $this->config, $l10n, $appManager, null, ), 'light-highcontrast' => new HighContrastTheme( $util, $this->themingDefaults, $this->userSession, $urlGenerator, $imageManager, $this->config, $l10n, $appManager, null, ), 'dark-highcontrast' => new DarkHighContrastTheme( $util, $this->themingDefaults, $this->userSession, $urlGenerator, $imageManager, $this->config, $l10n, $appManager, null, ), 'opendyslexic' => new DyslexiaFont( $util, $this->themingDefaults, $this->userSession, $urlGenerator, $imageManager, $this->config, $l10n, $appManager, null, ), ]; } }