123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- <?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 Tests\Settings;
- use OC\Accounts\AccountManager;
- use OC\Settings\Admin\Sharing;
- use OC\Settings\Manager;
- use OC\Settings\Mapper;
- use OC\Settings\Personal\Security;
- use OC\Settings\Section;
- use OCP\App\IAppManager;
- use OCP\Encryption\IManager;
- use OCP\IConfig;
- use OCP\IDBConnection;
- use OCP\IGroupManager;
- use OCP\IL10N;
- use OCP\ILogger;
- use OCP\IRequest;
- use OCP\IURLGenerator;
- use OCP\IUserManager;
- use OCP\L10N\IFactory;
- use OCP\Lock\ILockingProvider;
- 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 $dbConnection;
- /** @var IL10N|\PHPUnit_Framework_MockObject_MockObject */
- private $l10n;
- /** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
- private $config;
- /** @var IManager|\PHPUnit_Framework_MockObject_MockObject */
- private $encryptionManager;
- /** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
- private $userManager;
- /** @var ILockingProvider|\PHPUnit_Framework_MockObject_MockObject */
- private $lockingProvider;
- /** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */
- private $request;
- /** @var Mapper|\PHPUnit_Framework_MockObject_MockObject */
- private $mapper;
- /** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject */
- private $url;
- /** @var AccountManager|\PHPUnit_Framework_MockObject_MockObject */
- private $accountManager;
- /** @var IGroupManager|\PHPUnit_Framework_MockObject_MockObject */
- private $groupManager;
- /** @var IFactory|\PHPUnit_Framework_MockObject_MockObject */
- private $l10nFactory;
- /** @var \OC_Defaults|\PHPUnit_Framework_MockObject_MockObject */
- private $defaults;
- /** @var IAppManager */
- private $appManager;
- public function setUp() {
- parent::setUp();
- $this->logger = $this->createMock(ILogger::class);
- $this->dbConnection = $this->createMock(IDBConnection::class);
- $this->l10n = $this->createMock(IL10N::class);
- $this->config = $this->createMock(IConfig::class);
- $this->encryptionManager = $this->createMock(IManager::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->lockingProvider = $this->createMock(ILockingProvider::class);
- $this->request = $this->createMock(IRequest::class);
- $this->mapper = $this->createMock(Mapper::class);
- $this->url = $this->createMock(IURLGenerator::class);
- $this->accountManager = $this->createMock(AccountManager::class);
- $this->groupManager = $this->createMock(IGroupManager::class);
- $this->l10nFactory = $this->createMock(IFactory::class);
- $this->defaults = $this->createMock(\OC_Defaults::class);
- $this->appManager = $this->createMock(IAppManager::class);
- $this->manager = new Manager(
- $this->logger,
- $this->dbConnection,
- $this->l10n,
- $this->config,
- $this->encryptionManager,
- $this->userManager,
- $this->lockingProvider,
- $this->request,
- $this->mapper,
- $this->url,
- $this->accountManager,
- $this->groupManager,
- $this->l10nFactory,
- $this->defaults,
- $this->appManager
- );
- }
- public function settingsTypeProvider() {
- return [
- ['admin', 'admin_settings'],
- ['personal', 'personal_settings'],
- ];
- }
- /**
- * @dataProvider settingsTypeProvider
- * @param string $type
- * @param string $table
- */
- public function testSetupSettingsUpdate($type, $table) {
- $className = 'OCA\Files\Settings\Admin';
- $this->mapper->expects($this->any())
- ->method('has')
- ->with($table, $className)
- ->will($this->returnValue(true));
- $this->mapper->expects($this->once())
- ->method('update')
- ->with($table,
- 'class',
- $className, [
- 'section' => 'additional',
- 'priority' => 5
- ]);
- $this->mapper->expects($this->never())
- ->method('add');
- $this->manager->setupSettings([
- $type => $className,
- ]);
- }
- /**
- * @dataProvider settingsTypeProvider
- * @param string $type
- * @param string $table
- */
- public function testSetupSettingsAdd($type, $table) {
- $this->mapper->expects($this->any())
- ->method('has')
- ->with($table, 'OCA\Files\Settings\Admin')
- ->will($this->returnValue(false));
- $this->mapper->expects($this->once())
- ->method('add')
- ->with($table, [
- 'class' => 'OCA\Files\Settings\Admin',
- 'section' => 'additional',
- 'priority' => 5
- ]);
- $this->mapper->expects($this->never())
- ->method('update');
- $this->manager->setupSettings([
- $type => 'OCA\Files\Settings\Admin',
- ]);
- }
- public function testGetAdminSections() {
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->will($this->returnArgument(0));
- $this->mapper->expects($this->once())
- ->method('getAdminSectionsFromDB')
- ->will($this->returnValue([
- ['class' => \OCA\WorkflowEngine\Settings\Section::class, 'priority' => 90]
- ]));
- $this->url->expects($this->exactly(6))
- ->method('imagePath')
- ->willReturnMap([
- ['settings', 'admin.svg', '1'],
- ['core', 'actions/share.svg', '2'],
- ['core', 'actions/password.svg', '3'],
- ['core', 'actions/settings-dark.svg', '4'],
- ['settings', 'help.svg', '5'],
- ]);
- $this->assertEquals([
- 0 => [new Section('server', 'Basic settings', 0, '1')],
- 5 => [new Section('sharing', 'Sharing', 0, '2')],
- 10 => [new Section('security', 'Security', 0, '3')],
- 45 => [new Section('encryption', 'Encryption', 0, '3')],
- 90 => [\OC::$server->query(\OCA\WorkflowEngine\Settings\Section::class)],
- 98 => [new Section('additional', 'Additional settings', 0, '4')],
- 99 => [new Section('tips-tricks', 'Tips & tricks', 0, '5')],
- ], $this->manager->getAdminSections());
- }
- public function testGetPersonalSections() {
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->will($this->returnArgument(0));
- $this->mapper->expects($this->once())
- ->method('getPersonalSectionsFromDB')
- ->will($this->returnValue([
- ['class' => \OCA\WorkflowEngine\Settings\Section::class, 'priority' => 90]
- ]));
- $this->url->expects($this->exactly(3))
- ->method('imagePath')
- ->willReturnMap([
- ['core', 'actions/info.svg', '1'],
- ['settings', 'password.svg', '2'],
- ['settings', 'change.svg', '3'],
- ]);
- $this->assertArraySubset([
- 0 => [new Section('personal-info', 'Personal info', 0, '1')],
- 5 => [new Section('security', 'Security', 0, '2')],
- 15 => [new Section('sync-clients', 'Sync clients', 0, '3')],
- 90 => [\OC::$server->query(\OCA\WorkflowEngine\Settings\Section::class)],
- ], $this->manager->getPersonalSections());
- }
- public function testGetAdminSectionsEmptySection() {
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->will($this->returnArgument(0));
- $this->mapper->expects($this->once())
- ->method('getAdminSectionsFromDB')
- ->will($this->returnValue([
- ]));
- $this->url->expects($this->exactly(6))
- ->method('imagePath')
- ->willReturnMap([
- ['settings', 'admin.svg', '1'],
- ['core', 'actions/share.svg', '2'],
- ['core', 'actions/password.svg', '3'],
- ['core', 'actions/settings-dark.svg', '4'],
- ['settings', 'help.svg', '5'],
- ]);
- $this->assertEquals([
- 0 => [new Section('server', 'Basic settings', 0, '1')],
- 5 => [new Section('sharing', 'Sharing', 0, '2')],
- 10 => [new Section('security', 'Security', 0, '3')],
- 45 => [new Section('encryption', 'Encryption', 0, '3')],
- 98 => [new Section('additional', 'Additional settings', 0, '4')],
- 99 => [new Section('tips-tricks', 'Tips & tricks', 0, '5')],
- ], $this->manager->getAdminSections());
- }
- public function testGetPersonalSectionsEmptySection() {
- $this->l10n
- ->expects($this->any())
- ->method('t')
- ->will($this->returnArgument(0));
- $this->mapper->expects($this->once())
- ->method('getPersonalSectionsFromDB')
- ->will($this->returnValue([]));
- $this->url->expects($this->exactly(3))
- ->method('imagePath')
- ->willReturnMap([
- ['core', 'actions/info.svg', '1'],
- ['settings', 'password.svg', '2'],
- ['settings', 'change.svg', '3'],
- ]);
- $this->assertArraySubset([
- 0 => [new Section('personal-info', 'Personal info', 0, '1')],
- 5 => [new Section('security', 'Security', 0, '2')],
- 15 => [new Section('sync-clients', 'Sync clients', 0, '3')],
- ], $this->manager->getPersonalSections());
- }
- public function testGetAdminSettings() {
- $this->mapper->expects($this->any())
- ->method('getAdminSettingsFromDB')
- ->will($this->returnValue([]));
- $this->assertEquals([
- 0 => [new Sharing($this->config)],
- ], $this->manager->getAdminSettings('sharing'));
- }
- public function testGetPersonalSettings() {
- $this->mapper->expects($this->any())
- ->method('getPersonalSettingsFromDB')
- ->will($this->returnValue([]));
- $this->assertEquals([
- 10 => [new Security()],
- ], $this->manager->getPersonalSettings('security'));
- }
- }
|