nextcloud/apps/settings/tests/Controller/AdminSettingsControllerTest.php

145 lines
4.2 KiB
PHP
Raw Normal View History

2016-08-15 10:24:56 -04:00
<?php
2016-08-15 10:24:56 -04:00
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
2016-08-15 10:24:56 -04:00
*/
namespace OCA\Settings\Tests\Controller;
2016-08-15 10:24:56 -04:00
use OCA\Settings\Controller\AdminSettingsController;
use OCA\Settings\Settings\Personal\ServerDevNotice;
2016-08-15 10:24:56 -04:00
use OCP\AppFramework\Http\TemplateResponse;
use OCP\AppFramework\Services\IInitialState;
use OCP\Group\ISubAdmin;
use OCP\IGroupManager;
2016-08-15 10:24:56 -04:00
use OCP\INavigationManager;
use OCP\IRequest;
use OCP\IUser;
use OCP\IUserManager;
use OCP\IUserSession;
use OCP\Server;
use OCP\Settings\IDeclarativeManager;
2016-08-15 10:24:56 -04:00
use OCP\Settings\IManager;
use PHPUnit\Framework\MockObject\MockObject;
2016-08-15 10:24:56 -04:00
use Test\TestCase;
/**
* Class AdminSettingsControllerTest
*
*
* @package Tests\Settings\Controller
*/
#[\PHPUnit\Framework\Attributes\Group(name: 'DB')]
2016-08-15 10:24:56 -04:00
class AdminSettingsControllerTest extends TestCase {
private IRequest&MockObject $request;
private INavigationManager&MockObject $navigationManager;
private IManager&MockObject $settingsManager;
private IUserSession&MockObject $userSession;
private IGroupManager&MockObject $groupManager;
private ISubAdmin&MockObject $subAdmin;
private IDeclarativeManager&MockObject $declarativeSettingsManager;
private IInitialState&MockObject $initialState;
private string $adminUid = 'lololo';
private AdminSettingsController $adminSettingsController;
2016-08-15 10:24:56 -04:00
protected function setUp(): void {
2016-08-15 10:24:56 -04:00
parent::setUp();
$this->request = $this->createMock(IRequest::class);
$this->navigationManager = $this->createMock(INavigationManager::class);
$this->settingsManager = $this->createMock(IManager::class);
$this->userSession = $this->createMock(IUserSession::class);
$this->groupManager = $this->createMock(IGroupManager::class);
$this->subAdmin = $this->createMock(ISubAdmin::class);
$this->declarativeSettingsManager = $this->createMock(IDeclarativeManager::class);
$this->initialState = $this->createMock(IInitialState::class);
2016-08-15 10:24:56 -04:00
$this->adminSettingsController = new AdminSettingsController(
'settings',
$this->request,
$this->navigationManager,
$this->settingsManager,
$this->userSession,
$this->groupManager,
$this->subAdmin,
$this->declarativeSettingsManager,
$this->initialState,
2016-08-15 10:24:56 -04:00
);
$user = Server::get(IUserManager::class)->createUser($this->adminUid, 'mylongrandompassword');
\OC_User::setUserId($user->getUID());
Server::get(IGroupManager::class)->createGroup('admin')->addUser($user);
}
protected function tearDown(): void {
Server::get(IUserManager::class)
->get($this->adminUid)
->delete();
\OC_User::setUserId(null);
Server::get(IUserSession::class)->setUser(null);
parent::tearDown();
2016-08-15 10:24:56 -04:00
}
public function testIndex(): void {
$user = $this->createMock(IUser::class);
$this->userSession
->method('getUser')
->willReturn($user);
$user->method('getUID')->willReturn('user123');
$this->groupManager
->method('isAdmin')
->with('user123')
->willReturn(true);
$this->subAdmin
->method('isSubAdmin')
->with($user)
->willReturn(false);
$form = new TemplateResponse('settings', 'settings/empty');
$setting = $this->createMock(ServerDevNotice::class);
$setting->expects(self::any())
->method('getForm')
->willReturn($form);
2016-08-15 10:24:56 -04:00
$this->settingsManager
->expects($this->once())
->method('getAdminSections')
->willReturn([]);
$this->settingsManager
->expects($this->once())
->method('getPersonalSections')
->willReturn([]);
2016-08-15 10:24:56 -04:00
$this->settingsManager
->expects($this->once())
->method('getAllowedAdminSettings')
2016-08-15 10:24:56 -04:00
->with('test')
->willReturn([5 => [$setting]]);
$this->declarativeSettingsManager
->expects($this->any())
->method('getFormIDs')
->with($user, 'admin', 'test')
->willReturn([]);
$initialState = [];
$this->initialState->expects(self::atLeastOnce())
->method('provideInitialState')
->willReturnCallback(function () use (&$initialState) {
$initialState[] = func_get_args();
});
$expected = new TemplateResponse(
'settings',
'settings/frame',
[
'content' => ''
],
);
$this->assertEquals($expected, $this->adminSettingsController->index('test'));
$this->assertEquals([
['sections', ['admin' => [], 'personal' => []]],
], $initialState);
2016-08-15 10:24:56 -04:00
}
}