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); $this->adminSettingsController = new AdminSettingsController( 'settings', $this->request, $this->navigationManager, $this->settingsManager, $this->userSession, $this->groupManager, $this->subAdmin, $this->declarativeSettingsManager, $this->initialState, ); $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(); } 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); $this->settingsManager ->expects($this->once()) ->method('getAdminSections') ->willReturn([]); $this->settingsManager ->expects($this->once()) ->method('getPersonalSections') ->willReturn([]); $this->settingsManager ->expects($this->once()) ->method('getAllowedAdminSettings') ->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); } }