HighContrastThemeTest.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>
  4. *
  5. * @author John Molakvoæ <skjnldsv@protonmail.com>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OCA\Theming\Tests\Themes;
  24. use OCA\Theming\AppInfo\Application;
  25. use OCA\Theming\ImageManager;
  26. use OCA\Theming\ITheme;
  27. use OCA\Theming\Service\BackgroundService;
  28. use OCA\Theming\Themes\HighContrastTheme;
  29. use OCA\Theming\ThemingDefaults;
  30. use OCA\Theming\Util;
  31. use OCP\App\IAppManager;
  32. use OCP\Files\IAppData;
  33. use OCP\IConfig;
  34. use OCP\IL10N;
  35. use OCP\IURLGenerator;
  36. use OCP\IUserSession;
  37. use PHPUnit\Framework\MockObject\MockObject;
  38. class HighContrastThemeTest extends AccessibleThemeTestCase {
  39. /** @var ThemingDefaults|MockObject */
  40. private $themingDefaults;
  41. /** @var IUserSession|MockObject */
  42. private $userSession;
  43. /** @var IURLGenerator|MockObject */
  44. private $urlGenerator;
  45. /** @var ImageManager|MockObject */
  46. private $imageManager;
  47. /** @var IConfig|MockObject */
  48. private $config;
  49. /** @var IL10N|MockObject */
  50. private $l10n;
  51. /** @var IAppManager|MockObject */
  52. private $appManager;
  53. // !! important: Enable WCAG AAA tests
  54. protected bool $WCAGaaa = true;
  55. protected function setUp(): void {
  56. $this->themingDefaults = $this->createMock(ThemingDefaults::class);
  57. $this->userSession = $this->createMock(IUserSession::class);
  58. $this->urlGenerator = $this->createMock(IURLGenerator::class);
  59. $this->imageManager = $this->createMock(ImageManager::class);
  60. $this->config = $this->createMock(IConfig::class);
  61. $this->l10n = $this->createMock(IL10N::class);
  62. $this->appManager = $this->createMock(IAppManager::class);
  63. $this->util = new Util(
  64. $this->config,
  65. $this->appManager,
  66. $this->createMock(IAppData::class),
  67. $this->imageManager
  68. );
  69. $this->themingDefaults
  70. ->expects($this->any())
  71. ->method('getColorPrimary')
  72. ->willReturn('#0082c9');
  73. $this->themingDefaults
  74. ->expects($this->any())
  75. ->method('getDefaultColorPrimary')
  76. ->willReturn('#0082c9');
  77. $this->themingDefaults
  78. ->expects($this->any())
  79. ->method('getBackground')
  80. ->willReturn('/apps/' . Application::APP_ID . '/img/background/' . BackgroundService::DEFAULT_BACKGROUND_IMAGE);
  81. $this->l10n
  82. ->expects($this->any())
  83. ->method('t')
  84. ->willReturnCallback(function ($text, $parameters = []) {
  85. return vsprintf($text, $parameters);
  86. });
  87. $this->urlGenerator
  88. ->expects($this->any())
  89. ->method('imagePath')
  90. ->willReturnCallback(function ($app = 'core', $filename = '') {
  91. return "/$app/img/$filename";
  92. });
  93. $this->theme = new HighContrastTheme(
  94. $this->util,
  95. $this->themingDefaults,
  96. $this->userSession,
  97. $this->urlGenerator,
  98. $this->imageManager,
  99. $this->config,
  100. $this->l10n,
  101. $this->appManager,
  102. );
  103. parent::setUp();
  104. }
  105. public function testGetId() {
  106. $this->assertEquals('light-highcontrast', $this->theme->getId());
  107. }
  108. public function testGetType() {
  109. $this->assertEquals(ITheme::TYPE_THEME, $this->theme->getType());
  110. }
  111. public function testGetTitle() {
  112. $this->assertEquals('High contrast mode', $this->theme->getTitle());
  113. }
  114. public function testGetEnableLabel() {
  115. $this->assertEquals('Enable high contrast mode', $this->theme->getEnableLabel());
  116. }
  117. public function testGetDescription() {
  118. $this->assertEquals('A high contrast mode to ease your navigation. Visual quality will be reduced but clarity will be increased.', $this->theme->getDescription());
  119. }
  120. public function testGetMediaQuery() {
  121. $this->assertEquals('(prefers-contrast: more)', $this->theme->getMediaQuery());
  122. }
  123. }