DyslexiaFontTest.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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\Service;
  24. use OC\App\AppManager;
  25. use OC\Route\Router;
  26. use OCA\Theming\ImageManager;
  27. use OCA\Theming\ITheme;
  28. use OCA\Theming\Themes\DyslexiaFont;
  29. use OCA\Theming\ThemingDefaults;
  30. use OCA\Theming\Util;
  31. use OCP\App\IAppManager;
  32. use OCP\Files\IAppData;
  33. use OCP\ICacheFactory;
  34. use OCP\IConfig;
  35. use OCP\IL10N;
  36. use OCP\IRequest;
  37. use OCP\IURLGenerator;
  38. use OCP\IUserSession;
  39. use PHPUnit\Framework\MockObject\MockObject;
  40. use Test\TestCase;
  41. class DyslexiaFontTest extends TestCase {
  42. /** @var ThemingDefaults|MockObject */
  43. private $themingDefaults;
  44. /** @var IURLGenerator|MockObject */
  45. private $urlGenerator;
  46. /** @var ImageManager|MockObject */
  47. private $imageManager;
  48. /** @var IConfig|MockObject */
  49. private $config;
  50. /** @var IL10N|MockObject */
  51. private $l10n;
  52. /** @var IAppManager|MockObject */
  53. private $appManager;
  54. private DyslexiaFont $dyslexiaFont;
  55. protected function setUp(): void {
  56. $this->themingDefaults = $this->createMock(ThemingDefaults::class);
  57. $this->userSession = $this->createMock(IUserSession::class);
  58. $this->imageManager = $this->createMock(ImageManager::class);
  59. $this->config = $this->createMock(IConfig::class);
  60. $this->l10n = $this->createMock(IL10N::class);
  61. $this->appManager = $this->createMock(IAppManager::class);
  62. $util = new Util(
  63. $this->config,
  64. $this->appManager,
  65. $this->createMock(IAppData::class),
  66. $this->imageManager
  67. );
  68. $userSession = $this->createMock(IUserSession::class);
  69. $cacheFactory = $this->createMock(ICacheFactory::class);
  70. $request = $this->createMock(IRequest::class);
  71. $router = $this->createMock(Router::class);
  72. $this->urlGenerator = new \OC\URLGenerator(
  73. $this->config,
  74. $userSession,
  75. $cacheFactory,
  76. $request,
  77. $router
  78. );
  79. $this->themingDefaults
  80. ->expects($this->any())
  81. ->method('getColorPrimary')
  82. ->willReturn('#0082c9');
  83. $this->themingDefaults
  84. ->expects($this->any())
  85. ->method('getDefaultColorPrimary')
  86. ->willReturn('#0082c9');
  87. $this->l10n
  88. ->expects($this->any())
  89. ->method('t')
  90. ->willReturnCallback(function ($text, $parameters = []) {
  91. return vsprintf($text, $parameters);
  92. });
  93. $this->dyslexiaFont = new DyslexiaFont(
  94. $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('opendyslexic', $this->dyslexiaFont->getId());
  107. }
  108. public function testGetType() {
  109. $this->assertEquals(ITheme::TYPE_FONT, $this->dyslexiaFont->getType());
  110. }
  111. public function testGetTitle() {
  112. $this->assertNotEmpty($this->dyslexiaFont->getTitle());
  113. }
  114. public function testGetEnableLabel() {
  115. $this->assertNotEmpty($this->dyslexiaFont->getEnableLabel());
  116. }
  117. public function testGetDescription() {
  118. $this->assertNotEmpty($this->dyslexiaFont->getDescription());
  119. }
  120. public function testGetMediaQuery() {
  121. $this->assertEquals('', $this->dyslexiaFont->getMediaQuery());
  122. }
  123. public function testGetCSSVariables() {
  124. $this->assertStringStartsWith('OpenDyslexic', $this->dyslexiaFont->getCSSVariables()['--font-face']);
  125. }
  126. public function dataTestGetCustomCss() {
  127. return [
  128. ['', true],
  129. ['', false],
  130. ['/subfolder', true],
  131. ['/subfolder', false],
  132. ];
  133. }
  134. /**
  135. * @dataProvider dataTestGetCustomCss
  136. *
  137. * Ensure the fonts are always loaded from the web root
  138. * despite having url rewriting enabled or not
  139. *
  140. * @param string $webRoot
  141. * @param bool $prettyUrlsEnabled
  142. */
  143. public function testGetCustomCss($webRoot, $prettyUrlsEnabled) {
  144. \OC::$WEBROOT = $webRoot;
  145. $this->config->expects($this->any())
  146. ->method('getSystemValue')
  147. ->with('htaccess.IgnoreFrontController', false)
  148. ->willReturn($prettyUrlsEnabled);
  149. $this->assertStringContainsString("'$webRoot/apps/theming/fonts/OpenDyslexic-Regular.woff'", $this->dyslexiaFont->getCustomCss());
  150. $this->assertStringNotContainsString('index.php', $this->dyslexiaFont->getCustomCss());
  151. }
  152. }