123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <?php
- /**
- * @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
- *
- * @author Lukas Reschke <lukas@statuscode.ch>
- *
- * @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\Settings\Tests\AppInfo;
- use OC\Settings\Manager;
- use OCP\IDBConnection;
- use OCP\IL10N;
- use OCP\ILogger;
- use OCP\IServerContainer;
- use OCP\IURLGenerator;
- use OCP\L10N\IFactory;
- use OCP\Settings\ISettings;
- use OCP\Settings\ISubAdminSettings;
- use Test\TestCase;
- class ManagerTest extends TestCase {
- /** @var Manager|\PHPUnit\Framework\MockObject\MockObject */
- private $manager;
- /** @var ILogger|\PHPUnit\Framework\MockObject\MockObject */
- private $logger;
- /** @var IDBConnection|\PHPUnit\Framework\MockObject\MockObject */
- private $l10n;
- /** @var IFactory|\PHPUnit\Framework\MockObject\MockObject */
- private $l10nFactory;
- /** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject */
- private $url;
- /** @var IServerContainer|\PHPUnit\Framework\MockObject\MockObject */
- private $container;
- protected function setUp(): void {
- parent::setUp();
- $this->logger = $this->createMock(ILogger::class);
- $this->l10n = $this->createMock(IL10N::class);
- $this->l10nFactory = $this->createMock(IFactory::class);
- $this->url = $this->createMock(IURLGenerator::class);
- $this->container = $this->createMock(IServerContainer::class);
- $this->manager = new Manager(
- $this->logger,
- $this->l10nFactory,
- $this->url,
- $this->container
- );
- }
- public function testGetAdminSections() {
- $this->manager->registerSection('admin', \OCA\WorkflowEngine\Settings\Section::class);
- $this->assertEquals([
- 55 => [\OC::$server->query(\OCA\WorkflowEngine\Settings\Section::class)],
- ], $this->manager->getAdminSections());
- }
- public function testGetPersonalSections() {
- $this->manager->registerSection('personal', \OCA\WorkflowEngine\Settings\Section::class);
- $this->assertEquals([
- 55 => [\OC::$server->query(\OCA\WorkflowEngine\Settings\Section::class)],
- ], $this->manager->getPersonalSections());
- }
- public function testGetAdminSectionsEmptySection() {
- $this->assertEquals([], $this->manager->getAdminSections());
- }
- public function testGetPersonalSectionsEmptySection() {
- $this->l10nFactory
- ->expects($this->once())
- ->method('get')
- ->with('lib')
- ->willReturn($this->l10n);
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->willReturnArgument(0);
- $this->assertEquals([], $this->manager->getPersonalSections());
- }
- public function testGetAdminSettings() {
- $section = $this->createMock(ISettings::class);
- $section->method('getPriority')
- ->willReturn(13);
- $section->method('getSection')
- ->willReturn('sharing');
- $this->container->method('query')
- ->with('myAdminClass')
- ->willReturn($section);
- $this->manager->registerSetting('admin', 'myAdminClass');
- $settings = $this->manager->getAdminSettings('sharing');
- $this->assertEquals([
- 13 => [$section]
- ], $settings);
- }
- public function testGetAdminSettingsAsSubAdmin() {
- $section = $this->createMock(ISettings::class);
- $section->method('getPriority')
- ->willReturn(13);
- $section->method('getSection')
- ->willReturn('sharing');
- $this->container->method('query')
- ->with('myAdminClass')
- ->willReturn($section);
- $this->manager->registerSetting('admin', 'myAdminClass');
- $settings = $this->manager->getAdminSettings('sharing', true);
- $this->assertEquals([], $settings);
- }
- public function testGetSubAdminSettingsAsSubAdmin() {
- $section = $this->createMock(ISubAdminSettings::class);
- $section->method('getPriority')
- ->willReturn(13);
- $section->method('getSection')
- ->willReturn('sharing');
- $this->container->expects($this->once())
- ->method('query')
- ->with('mySubAdminClass')
- ->willReturn($section);
- $this->manager->registerSetting('admin', 'mySubAdminClass');
- $settings = $this->manager->getAdminSettings('sharing', true);
- $this->assertEquals([
- 13 => [$section]
- ], $settings);
- }
- public function testGetPersonalSettings() {
- $section = $this->createMock(ISettings::class);
- $section->method('getPriority')
- ->willReturn(16);
- $section->method('getSection')
- ->willReturn('security');
- $section2 = $this->createMock(ISettings::class);
- $section2->method('getPriority')
- ->willReturn(100);
- $section2->method('getSection')
- ->willReturn('security');
- $this->manager->registerSetting('personal', 'section1');
- $this->manager->registerSetting('personal', 'section2');
- $this->container->expects($this->at(0))
- ->method('query')
- ->with('section1')
- ->willReturn($section);
- $this->container->expects($this->at(1))
- ->method('query')
- ->with('section2')
- ->willReturn($section2);
- $settings = $this->manager->getPersonalSettings('security');
- $this->assertEquals([
- 16 => [$section],
- 100 => [$section2],
- ], $settings);
- }
- public function testSameSectionAsPersonalAndAdmin() {
- $this->l10nFactory
- ->expects($this->once())
- ->method('get')
- ->with('lib')
- ->willReturn($this->l10n);
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->willReturnArgument(0);
- $this->manager->registerSection('personal', \OCA\WorkflowEngine\Settings\Section::class);
- $this->manager->registerSection('admin', \OCA\WorkflowEngine\Settings\Section::class);
- $this->assertEquals([
- 55 => [\OC::$server->query(\OCA\WorkflowEngine\Settings\Section::class)],
- ], $this->manager->getPersonalSections());
- $this->assertEquals([
- 55 => [\OC::$server->query(\OCA\WorkflowEngine\Settings\Section::class)],
- ], $this->manager->getAdminSections());
- }
- }
|