123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775 |
- <?php
- /**
- * @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Guillaume COMPAGNON <gcompagnon@outlook.com>
- * @author Jan-Christoph Borchardt <hey@jancborchardt.net>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
- * @author Julius Haertl <jus@bitgrid.net>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Michael Weimann <mail@michael-weimann.eu>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\Theming\Tests;
- use OCA\Theming\ImageManager;
- use OCA\Theming\ThemingDefaults;
- use OCA\Theming\Util;
- use OCP\App\IAppManager;
- use OCP\Files\IAppData;
- use OCP\Files\NotFoundException;
- use OCP\ICache;
- use OCP\ICacheFactory;
- use OCP\IConfig;
- use OCP\IL10N;
- use OCP\INavigationManager;
- use OCP\IURLGenerator;
- use Test\TestCase;
- class ThemingDefaultsTest extends TestCase {
- /** @var IConfig|\PHPUnit\Framework\MockObject\MockObject */
- private $config;
- /** @var IL10N|\PHPUnit\Framework\MockObject\MockObject */
- private $l10n;
- /** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject */
- private $urlGenerator;
- /** @var \OC_Defaults|\PHPUnit\Framework\MockObject\MockObject */
- private $defaults;
- /** @var IAppData|\PHPUnit\Framework\MockObject\MockObject */
- private $appData;
- /** @var ICacheFactory|\PHPUnit\Framework\MockObject\MockObject */
- private $cacheFactory;
- /** @var ThemingDefaults */
- private $template;
- /** @var Util|\PHPUnit\Framework\MockObject\MockObject */
- private $util;
- /** @var ICache|\PHPUnit\Framework\MockObject\MockObject */
- private $cache;
- /** @var IAppManager|\PHPUnit\Framework\MockObject\MockObject */
- private $appManager;
- /** @var ImageManager|\PHPUnit\Framework\MockObject\MockObject */
- private $imageManager;
- /** @var INavigationManager|\PHPUnit\Framework\MockObject\MockObject */
- private $navigationManager;
- protected function setUp(): void {
- parent::setUp();
- $this->config = $this->createMock(IConfig::class);
- $this->l10n = $this->createMock(IL10N::class);
- $this->urlGenerator = $this->createMock(IURLGenerator::class);
- $this->cacheFactory = $this->createMock(ICacheFactory::class);
- $this->cache = $this->createMock(ICache::class);
- $this->util = $this->createMock(Util::class);
- $this->imageManager = $this->createMock(ImageManager::class);
- $this->appManager = $this->createMock(IAppManager::class);
- $this->navigationManager = $this->createMock(INavigationManager::class);
- $this->defaults = new \OC_Defaults();
- $this->urlGenerator
- ->expects($this->any())
- ->method('getBaseUrl')
- ->willReturn('');
- $this->template = new ThemingDefaults(
- $this->config,
- $this->l10n,
- $this->urlGenerator,
- $this->cacheFactory,
- $this->util,
- $this->imageManager,
- $this->appManager,
- $this->navigationManager
- );
- }
- public function testGetNameWithDefault() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('Nextcloud');
- $this->assertEquals('Nextcloud', $this->template->getName());
- }
- public function testGetNameWithCustom() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('MyCustomCloud');
- $this->assertEquals('MyCustomCloud', $this->template->getName());
- }
- public function testGetHTMLNameWithDefault() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('Nextcloud');
- $this->assertEquals('Nextcloud', $this->template->getHTMLName());
- }
- public function testGetHTMLNameWithCustom() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('MyCustomCloud');
- $this->assertEquals('MyCustomCloud', $this->template->getHTMLName());
- }
- public function testGetTitleWithDefault() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('Nextcloud');
- $this->assertEquals('Nextcloud', $this->template->getTitle());
- }
- public function testGetTitleWithCustom() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('MyCustomCloud');
- $this->assertEquals('MyCustomCloud', $this->template->getTitle());
- }
- public function testGetEntityWithDefault() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('Nextcloud');
- $this->assertEquals('Nextcloud', $this->template->getEntity());
- }
- public function testGetEntityWithCustom() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('MyCustomCloud');
- $this->assertEquals('MyCustomCloud', $this->template->getEntity());
- }
- public function testGetBaseUrlWithDefault() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'url', $this->defaults->getBaseUrl())
- ->willReturn($this->defaults->getBaseUrl());
- $this->assertEquals($this->defaults->getBaseUrl(), $this->template->getBaseUrl());
- }
- public function testGetBaseUrlWithCustom() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'url', $this->defaults->getBaseUrl())
- ->willReturn('https://example.com/');
- $this->assertEquals('https://example.com/', $this->template->getBaseUrl());
- }
- public function legalUrlProvider() {
- return [
- [ '' ],
- [ 'https://example.com/legal.html']
- ];
- }
- /**
- * @param $imprintUrl
- * @dataProvider legalUrlProvider
- */
- public function testGetImprintURL($imprintUrl) {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'imprintUrl', '')
- ->willReturn($imprintUrl);
- $this->assertEquals($imprintUrl, $this->template->getImprintUrl());
- }
- /**
- * @param $privacyUrl
- * @dataProvider legalUrlProvider
- */
- public function testGetPrivacyURL($privacyUrl) {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'privacyUrl', '')
- ->willReturn($privacyUrl);
- $this->assertEquals($privacyUrl, $this->template->getPrivacyUrl());
- }
- public function testGetSloganWithDefault() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'slogan', $this->defaults->getSlogan())
- ->willReturn($this->defaults->getSlogan());
- $this->assertEquals($this->defaults->getSlogan(), $this->template->getSlogan());
- }
- public function testGetSloganWithCustom() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'slogan', $this->defaults->getSlogan())
- ->willReturn('My custom Slogan');
- $this->assertEquals('My custom Slogan', $this->template->getSlogan());
- }
- public function testGetShortFooter() {
- $this->config
- ->expects($this->exactly(5))
- ->method('getAppValue')
- ->willReturnMap([
- ['theming', 'url', $this->defaults->getBaseUrl(), 'url'],
- ['theming', 'name', 'Nextcloud', 'Name'],
- ['theming', 'slogan', $this->defaults->getSlogan(), 'Slogan'],
- ['theming', 'imprintUrl', '', ''],
- ['theming', 'privacyUrl', '', ''],
- ]);
- $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan', $this->template->getShortFooter());
- }
- public function testGetShortFooterEmptyUrl() {
- $this->navigationManager->expects($this->once())->method('getAll')->with(INavigationManager::TYPE_GUEST)->willReturn([]);
- $this->config
- ->expects($this->exactly(5))
- ->method('getAppValue')
- ->willReturnMap([
- ['theming', 'url', $this->defaults->getBaseUrl(), ''],
- ['theming', 'name', 'Nextcloud', 'Name'],
- ['theming', 'slogan', $this->defaults->getSlogan(), 'Slogan'],
- ['theming', 'imprintUrl', '', ''],
- ['theming', 'privacyUrl', '', ''],
- ]);
- $this->assertEquals('<span class="entity-name">Name</span> – Slogan', $this->template->getShortFooter());
- }
- public function testGetShortFooterEmptySlogan() {
- $this->navigationManager->expects($this->once())->method('getAll')->with(INavigationManager::TYPE_GUEST)->willReturn([]);
- $this->config
- ->expects($this->exactly(5))
- ->method('getAppValue')
- ->willReturnMap([
- ['theming', 'url', $this->defaults->getBaseUrl(), 'url'],
- ['theming', 'name', 'Nextcloud', 'Name'],
- ['theming', 'slogan', $this->defaults->getSlogan(), ''],
- ['theming', 'imprintUrl', '', ''],
- ['theming', 'privacyUrl', '', ''],
- ]);
- $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a>', $this->template->getShortFooter());
- }
- public function testGetShortFooterImprint() {
- $this->navigationManager->expects($this->once())->method('getAll')->with(INavigationManager::TYPE_GUEST)->willReturn([]);
- $this->config
- ->expects($this->exactly(5))
- ->method('getAppValue')
- ->willReturnMap([
- ['theming', 'url', $this->defaults->getBaseUrl(), 'url'],
- ['theming', 'name', 'Nextcloud', 'Name'],
- ['theming', 'slogan', $this->defaults->getSlogan(), 'Slogan'],
- ['theming', 'imprintUrl', '', 'https://example.com/imprint'],
- ['theming', 'privacyUrl', '', ''],
- ]);
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->willReturnArgument(0);
- $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><a href="https://example.com/imprint" class="legal" target="_blank" rel="noreferrer noopener">Legal notice</a>', $this->template->getShortFooter());
- }
- public function testGetShortFooterPrivacy() {
- $this->navigationManager->expects($this->once())->method('getAll')->with(INavigationManager::TYPE_GUEST)->willReturn([]);
- $this->config
- ->expects($this->exactly(5))
- ->method('getAppValue')
- ->willReturnMap([
- ['theming', 'url', $this->defaults->getBaseUrl(), 'url'],
- ['theming', 'name', 'Nextcloud', 'Name'],
- ['theming', 'slogan', $this->defaults->getSlogan(), 'Slogan'],
- ['theming', 'imprintUrl', '', ''],
- ['theming', 'privacyUrl', '', 'https://example.com/privacy'],
- ]);
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->willReturnArgument(0);
- $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><a href="https://example.com/privacy" class="legal" target="_blank" rel="noreferrer noopener">Privacy policy</a>', $this->template->getShortFooter());
- }
- public function testGetShortFooterAllLegalLinks() {
- $this->navigationManager->expects($this->once())->method('getAll')->with(INavigationManager::TYPE_GUEST)->willReturn([]);
- $this->config
- ->expects($this->exactly(5))
- ->method('getAppValue')
- ->willReturnMap([
- ['theming', 'url', $this->defaults->getBaseUrl(), 'url'],
- ['theming', 'name', 'Nextcloud', 'Name'],
- ['theming', 'slogan', $this->defaults->getSlogan(), 'Slogan'],
- ['theming', 'imprintUrl', '', 'https://example.com/imprint'],
- ['theming', 'privacyUrl', '', 'https://example.com/privacy'],
- ]);
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->willReturnArgument(0);
- $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><a href="https://example.com/imprint" class="legal" target="_blank" rel="noreferrer noopener">Legal notice</a> · <a href="https://example.com/privacy" class="legal" target="_blank" rel="noreferrer noopener">Privacy policy</a>', $this->template->getShortFooter());
- }
- public function invalidLegalUrlProvider() {
- return [
- ['example.com/legal'], # missing scheme
- ['https:///legal'], # missing host
- ];
- }
- /**
- * @param $invalidImprintUrl
- * @dataProvider invalidLegalUrlProvider
- */
- public function testGetShortFooterInvalidImprint($invalidImprintUrl) {
- $this->navigationManager->expects($this->once())->method('getAll')->with(INavigationManager::TYPE_GUEST)->willReturn([]);
- $this->config
- ->expects($this->exactly(5))
- ->method('getAppValue')
- ->willReturnMap([
- ['theming', 'url', $this->defaults->getBaseUrl(), 'url'],
- ['theming', 'name', 'Nextcloud', 'Name'],
- ['theming', 'slogan', $this->defaults->getSlogan(), 'Slogan'],
- ['theming', 'imprintUrl', '', $invalidImprintUrl],
- ['theming', 'privacyUrl', '', ''],
- ]);
- $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan', $this->template->getShortFooter());
- }
- /**
- * @param $invalidPrivacyUrl
- * @dataProvider invalidLegalUrlProvider
- */
- public function testGetShortFooterInvalidPrivacy($invalidPrivacyUrl) {
- $this->navigationManager->expects($this->once())->method('getAll')->with(INavigationManager::TYPE_GUEST)->willReturn([]);
- $this->config
- ->expects($this->exactly(5))
- ->method('getAppValue')
- ->willReturnMap([
- ['theming', 'url', $this->defaults->getBaseUrl(), 'url'],
- ['theming', 'name', 'Nextcloud', 'Name'],
- ['theming', 'slogan', $this->defaults->getSlogan(), 'Slogan'],
- ['theming', 'imprintUrl', '', ''],
- ['theming', 'privacyUrl', '', $invalidPrivacyUrl],
- ]);
- $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan', $this->template->getShortFooter());
- }
- public function testgetColorPrimaryWithDefault() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'color', $this->defaults->getColorPrimary())
- ->willReturn($this->defaults->getColorPrimary());
- $this->assertEquals($this->defaults->getColorPrimary(), $this->template->getColorPrimary());
- }
- public function testgetColorPrimaryWithCustom() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'color', $this->defaults->getColorPrimary())
- ->willReturn('#fff');
- $this->assertEquals('#fff', $this->template->getColorPrimary());
- }
- public function testSet() {
- $this->config
- ->expects($this->at(0))
- ->method('setAppValue')
- ->with('theming', 'MySetting', 'MyValue');
- $this->config
- ->expects($this->at(1))
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('15');
- $this->config
- ->expects($this->at(2))
- ->method('setAppValue')
- ->with('theming', 'cachebuster', 16);
- $this->cacheFactory
- ->expects($this->at(0))
- ->method('createDistributed')
- ->with('theming-')
- ->willReturn($this->cache);
- $this->cacheFactory
- ->expects($this->at(1))
- ->method('createDistributed')
- ->with('imagePath')
- ->willReturn($this->cache);
- $this->cache
- ->expects($this->any())
- ->method('clear')
- ->with('');
- $this->template->set('MySetting', 'MyValue');
- }
- public function testUndoName() {
- $this->config
- ->expects($this->at(0))
- ->method('deleteAppValue')
- ->with('theming', 'name');
- $this->config
- ->expects($this->at(1))
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('15');
- $this->config
- ->expects($this->at(2))
- ->method('setAppValue')
- ->with('theming', 'cachebuster', 16);
- $this->config
- ->expects($this->at(3))
- ->method('getAppValue')
- ->with('theming', 'name', 'Nextcloud')
- ->willReturn('Nextcloud');
- $this->assertSame('Nextcloud', $this->template->undo('name'));
- }
- public function testUndoBaseUrl() {
- $this->config
- ->expects($this->at(0))
- ->method('deleteAppValue')
- ->with('theming', 'url');
- $this->config
- ->expects($this->at(1))
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('15');
- $this->config
- ->expects($this->at(2))
- ->method('setAppValue')
- ->with('theming', 'cachebuster', 16);
- $this->config
- ->expects($this->at(3))
- ->method('getAppValue')
- ->with('theming', 'url', $this->defaults->getBaseUrl())
- ->willReturn($this->defaults->getBaseUrl());
- $this->assertSame($this->defaults->getBaseUrl(), $this->template->undo('url'));
- }
- public function testUndoSlogan() {
- $this->config
- ->expects($this->at(0))
- ->method('deleteAppValue')
- ->with('theming', 'slogan');
- $this->config
- ->expects($this->at(1))
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('15');
- $this->config
- ->expects($this->at(2))
- ->method('setAppValue')
- ->with('theming', 'cachebuster', 16);
- $this->config
- ->expects($this->at(3))
- ->method('getAppValue')
- ->with('theming', 'slogan', $this->defaults->getSlogan())
- ->willReturn($this->defaults->getSlogan());
- $this->assertSame($this->defaults->getSlogan(), $this->template->undo('slogan'));
- }
- public function testUndoColor() {
- $this->config
- ->expects($this->at(0))
- ->method('deleteAppValue')
- ->with('theming', 'color');
- $this->config
- ->expects($this->at(1))
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('15');
- $this->config
- ->expects($this->at(2))
- ->method('setAppValue')
- ->with('theming', 'cachebuster', 16);
- $this->config
- ->expects($this->at(3))
- ->method('getAppValue')
- ->with('theming', 'color', $this->defaults->getColorPrimary())
- ->willReturn($this->defaults->getColorPrimary());
- $this->assertSame($this->defaults->getColorPrimary(), $this->template->undo('color'));
- }
- public function testUndoDefaultAction() {
- $this->config
- ->expects($this->at(0))
- ->method('deleteAppValue')
- ->with('theming', 'defaultitem');
- $this->config
- ->expects($this->at(1))
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('15');
- $this->config
- ->expects($this->at(2))
- ->method('setAppValue')
- ->with('theming', 'cachebuster', 16);
- $this->assertSame('', $this->template->undo('defaultitem'));
- }
- public function testGetBackground() {
- $this->imageManager
- ->expects($this->once())
- ->method('getImageUrl')
- ->with('background')
- ->willReturn('custom-background?v=0');
- $this->assertEquals('custom-background?v=0', $this->template->getBackground());
- }
- private function getLogoHelper($withName, $useSvg) {
- $this->imageManager->expects($this->any())
- ->method('getImage')
- ->with('logo')
- ->willThrowException(new NotFoundException());
- $this->config
- ->expects($this->at(0))
- ->method('getAppValue')
- ->with('theming', 'logoMime')
- ->willReturn('');
- $this->config
- ->expects($this->at(1))
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('0');
- $this->urlGenerator->expects($this->once())
- ->method('imagePath')
- ->with('core', $withName)
- ->willReturn('core-logo');
- $this->assertEquals('core-logo?v=0', $this->template->getLogo($useSvg));
- }
- public function testGetLogoDefaultWithSvg() {
- $this->getLogoHelper('logo/logo.svg', true);
- }
- public function testGetLogoDefaultWithoutSvg() {
- $this->getLogoHelper('logo/logo.png', false);
- }
- public function testGetLogoCustom() {
- $this->config
- ->expects($this->at(0))
- ->method('getAppValue')
- ->with('theming', 'logoMime', false)
- ->willReturn('image/svg+xml');
- $this->config
- ->expects($this->at(1))
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('0');
- $this->urlGenerator->expects($this->once())
- ->method('linkToRoute')
- ->with('theming.Theming.getImage')
- ->willReturn('custom-logo?v=0');
- $this->assertEquals('custom-logo' . '?v=0', $this->template->getLogo());
- }
- public function testGetScssVariablesCached() {
- $this->config->expects($this->any())->method('getAppValue')->with('theming', 'cachebuster', '0')->willReturn('1');
- $this->cacheFactory->expects($this->once())
- ->method('createDistributed')
- ->with('theming-1-')
- ->willReturn($this->cache);
- $this->cache->expects($this->once())->method('get')->with('getScssVariables')->willReturn(['foo' => 'bar']);
- $this->assertEquals(['foo' => 'bar'], $this->template->getScssVariables());
- }
- public function testGetScssVariables() {
- $this->config->expects($this->at(0))->method('getAppValue')->with('theming', 'cachebuster', '0')->willReturn('0');
- $this->config->expects($this->at(1))->method('getAppValue')->with('theming', 'logoMime', false)->willReturn('jpeg');
- $this->config->expects($this->at(2))->method('getAppValue')->with('theming', 'backgroundMime', false)->willReturn('jpeg');
- $this->config->expects($this->at(3))->method('getAppValue')->with('theming', 'logoheaderMime', false)->willReturn('jpeg');
- $this->config->expects($this->at(4))->method('getAppValue')->with('theming', 'faviconMime', false)->willReturn('jpeg');
- $this->config->expects($this->at(5))->method('getAppValue')->with('theming', 'color', null)->willReturn($this->defaults->getColorPrimary());
- $this->config->expects($this->at(6))->method('getAppValue')->with('theming', 'color', $this->defaults->getColorPrimary())->willReturn($this->defaults->getColorPrimary());
- $this->config->expects($this->at(7))->method('getAppValue')->with('theming', 'color', $this->defaults->getColorPrimary())->willReturn($this->defaults->getColorPrimary());
- $this->config->expects($this->at(8))->method('getAppValue')->with('theming', 'color', $this->defaults->getColorPrimary())->willReturn($this->defaults->getColorPrimary());
- $this->util->expects($this->any())->method('invertTextColor')->with($this->defaults->getColorPrimary())->willReturn(false);
- $this->util->expects($this->any())->method('elementColor')->with($this->defaults->getColorPrimary())->willReturn('#aaaaaa');
- $this->cacheFactory->expects($this->once())
- ->method('createDistributed')
- ->with('theming-0-')
- ->willReturn($this->cache);
- $this->cache->expects($this->once())->method('get')->with('getScssVariables')->willReturn(null);
- $this->imageManager->expects($this->at(0))->method('getImageUrl')->with('logo')->willReturn('custom-logo?v=0');
- $this->imageManager->expects($this->at(1))->method('getImageUrl')->with('logoheader')->willReturn('custom-logoheader?v=0');
- $this->imageManager->expects($this->at(2))->method('getImageUrl')->with('favicon')->willReturn('custom-favicon?v=0');
- $this->imageManager->expects($this->at(3))->method('getImageUrl')->with('background')->willReturn('custom-background?v=0');
- $expected = [
- 'theming-cachebuster' => '\'0\'',
- 'theming-logo-mime' => '\'jpeg\'',
- 'theming-background-mime' => '\'jpeg\'',
- 'image-logo' => "url('custom-logo?v=0')",
- 'image-login-background' => "url('custom-background?v=0')",
- 'color-primary' => $this->defaults->getColorPrimary(),
- 'color-primary-text' => '#ffffff',
- 'image-login-plain' => 'false',
- 'color-primary-element' => '#aaaaaa',
- 'theming-logoheader-mime' => '\'jpeg\'',
- 'theming-favicon-mime' => '\'jpeg\'',
- 'image-logoheader' => "url('custom-logoheader?v=0')",
- 'image-favicon' => "url('custom-favicon?v=0')",
- 'has-legal-links' => 'false'
- ];
- $this->assertEquals($expected, $this->template->getScssVariables());
- }
- public function testGetDefaultAndroidURL() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'AndroidClientUrl', 'https://play.google.com/store/apps/details?id=com.nextcloud.client')
- ->willReturn('https://play.google.com/store/apps/details?id=com.nextcloud.client');
- $this->assertEquals('https://play.google.com/store/apps/details?id=com.nextcloud.client', $this->template->getAndroidClientUrl());
- }
- public function testGetCustomAndroidURL() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'AndroidClientUrl', 'https://play.google.com/store/apps/details?id=com.nextcloud.client')
- ->willReturn('https://play.google.com/store/apps/details?id=com.mycloud.client');
- $this->assertEquals('https://play.google.com/store/apps/details?id=com.mycloud.client', $this->template->getAndroidClientUrl());
- }
- public function testGetDefaultiOSURL() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'iOSClientUrl', 'https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8')
- ->willReturn('https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8');
- $this->assertEquals('https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8', $this->template->getiOSClientUrl());
- }
- public function testGetCustomiOSURL() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'iOSClientUrl', 'https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8')
- ->willReturn('https://geo.itunes.apple.com/us/app/nextcloud/id1234567890?mt=8');
- $this->assertEquals('https://geo.itunes.apple.com/us/app/nextcloud/id1234567890?mt=8', $this->template->getiOSClientUrl());
- }
- public function testGetDefaultiTunesAppId() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'iTunesAppId', '1125420102')
- ->willReturn('1125420102');
- $this->assertEquals('1125420102', $this->template->getiTunesAppId());
- }
- public function testGetCustomiTunesAppId() {
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('theming', 'iTunesAppId', '1125420102')
- ->willReturn('1234567890');
- $this->assertEquals('1234567890', $this->template->getiTunesAppId());
- }
- public function dataReplaceImagePath() {
- return [
- ['core', 'test.png', false],
- ['core', 'manifest.json'],
- ['core', 'favicon.ico'],
- ['core', 'favicon-touch.png']
- ];
- }
- /** @dataProvider dataReplaceImagePath */
- public function testReplaceImagePath($app, $image, $result = 'themingRoute?v=0') {
- $this->cache->expects($this->any())
- ->method('get')
- ->with('shouldReplaceIcons')
- ->willReturn(true);
- $this->config
- ->expects($this->any())
- ->method('getAppValue')
- ->with('theming', 'cachebuster', '0')
- ->willReturn('0');
- $this->urlGenerator
- ->expects($this->any())
- ->method('linkToRoute')
- ->willReturn('themingRoute');
- $this->assertEquals($result, $this->template->replaceImagePath($app, $image));
- }
- }
|