* * @author Ryan Fletcher * * @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 OCP\AppFramework\Http; use OCP\AppFramework\Http\DataResponse; use OCP\IRequest; use OCA\Deck\Service\BoardService; use OCA\Deck\Db\Board; class BoardApiControllerTest extends \Test\TestCase { private $appName = 'deck'; private $userId = 'admin'; private $controller; private $boardService; public function setUp() { parent::setUp(); $this->request = $this->createMock(IRequest::class); $this->boardService = $this->createMock(BoardService::class); $this->controller = new BoardApiController( $this->appName, $this->request, $this->boardService, $this->userId ); } public function testIndex() { $board = new Board(); $board->setId('1'); $board->setTitle('test'); $board->setOwner($this->userId); $board->setColor('000000'); $boards = [$board]; $this->boardService->expects($this->once()) ->method('findAll') ->willReturn($boards); $expected = new DataResponse($boards, HTTP::STATUS_OK); $actual = $this->controller->index(); $this->assertEquals($expected, $actual); } public function testGet() { $boardId = 25; $board = new Board(); $board->setId($boardId); $this->boardService->expects($this->once()) ->method('find') ->willReturn($board); $this->request->expects($this->any()) ->method('getParam') ->with('boardId') ->will($this->returnValue($boardId)); $expected = new DataResponse($board, HTTP::STATUS_OK); $actual = $this->controller->get(); $this->assertEquals($expected, $actual); } public function testGetBadRequest() { $this->request->expects($this->any()) ->method('getParam') ->with('boardId') ->will($this->returnValue('hello')); $expected = new DataResponse('board id must be a number', HTTP::STATUS_BAD_REQUEST); $actual = $this->controller->get(); $this->assertEquals($expected, $actual); } public function testGetNotFound() { $this->request->expects($this->any()) ->method('getParam') ->with('boardId') ->will($this->returnValue('999')); $expected = new DataResponse('board not found', HTTP::STATUS_NOT_FOUND); $actual = $this->controller->get(); $this->assertEquals($expected, $actual); } // TODO: Write testCreate() public function testCreate() { $this->assertEquals(false, true); } // TODO: Write testUpdate() public function testUpdate() { $this->assertEquals(false, true); } // TODO: Write testDelete() public function testDelete() { $this->assertEquals(false, true); } // TODO: Write testUndoDelete() public function testUndoDelete() { $this->assertEquals(false, true); } }