* * @author Julius Härtl * * @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 . * */ namespace OCA\Deck\Controller; use OCA\Deck\Db\Acl; use OCP\IUser; class BoardControllerTest extends \Test\TestCase { private $controller; private $request; private $userManager; private $groupManager; private $boardService; private $permissionService; private $userId = 'user'; public function setUp(): void { $this->l10n = $this->request = $this->getMockBuilder( '\OCP\IL10n') ->disableOriginalConstructor() ->getMock(); $this->request = $this->getMockBuilder( '\OCP\IRequest') ->disableOriginalConstructor() ->getMock(); $this->userManager = $this->getMockBuilder( '\OCP\IUserManager') ->disableOriginalConstructor() ->getMock(); $this->groupManager = $this->getMockBuilder( '\OCP\IGroupManager') ->disableOriginalConstructor() ->getMock(); $this->boardService = $this->getMockBuilder( '\OCA\Deck\Service\BoardService') ->disableOriginalConstructor() ->getMock(); $this->permissionService = $this->getMockBuilder( '\OCA\Deck\Service\PermissionService') ->disableOriginalConstructor() ->getMock(); $user = $this->createMock(IUser::class); $this->groupManager->method('getUserGroupIds') ->willReturn(['admin', 'group1', 'group2']); $this->userManager->method('get') ->with($this->userId) ->willReturn($user); $this->controller = new BoardController( 'deck', $this->request, $this->boardService, $this->permissionService, $this->userId ); } public function testIndex() { $this->boardService->expects($this->once()) ->method('findAll') ->willReturn([1, 2, 3]); $actual = $this->controller->index(); $this->assertEquals([1, 2, 3], $actual); } public function testRead() { $this->boardService->expects($this->once()) ->method('find') ->with(123) ->willReturn(1); $this->assertEquals(1, $this->controller->read(123)); } public function testCreate() { $this->boardService->expects($this->once()) ->method('create') ->with(1, 'user', 3) ->willReturn(1); $this->assertEquals(1, $this->controller->create(1, 3)); } public function testUpdate() { $this->boardService->expects($this->once()) ->method('update') ->with(1, 2, 3, false) ->willReturn(1); $this->assertEquals(1, $this->controller->update(1, 2, 3, false)); } public function testDelete() { $this->boardService->expects($this->once()) ->method('delete') ->with(123) ->willReturn(1); $this->assertEquals(1, $this->controller->delete(123)); } public function testDeleteUndo() { $this->boardService->expects($this->once()) ->method('deleteUndo') ->with(123) ->willReturn(1); $this->assertEquals(1, $this->controller->deleteUndo(123)); } public function testGetUserPermissions() { $acl = [ Acl::PERMISSION_READ => true, Acl::PERMISSION_EDIT => true, Acl::PERMISSION_MANAGE => true, Acl::PERMISSION_SHARE => true, ]; $expected = [ 'PERMISSION_READ' => true, 'PERMISSION_EDIT' => true, 'PERMISSION_MANAGE' => true, 'PERMISSION_SHARE' => true, ]; $this->permissionService->expects($this->once()) ->method('getPermissions') ->with(123) ->willReturn($acl); $this->assertEquals($expected, $this->controller->getUserPermissions(123)); } public function testAddAcl() { $this->boardService->expects($this->once()) ->method('addAcl') ->with(1, 2, 3, 4, 5, 6) ->willReturn(1); $this->assertEquals(1, $this->controller->addAcl(1, 2, 3, 4, 5, 6)); } public function testUpdateAcl() { $this->boardService->expects($this->once()) ->method('updateAcl') ->with(1, 2, 3, 4) ->willReturn(1); $this->assertEquals(1, $this->controller->updateAcl(1, 2, 3, 4)); } public function testDeleteAcl() { $this->boardService->expects($this->once()) ->method('deleteAcl') ->with(1) ->willReturn(true); $this->assertEquals(true, $this->controller->deleteAcl(1)); } }