Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 1.2.1 to 1.2.3. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/coding-standard/compare/v1.2.1...v1.2.3) --- updated-dependencies: - dependency-name: nextcloud/coding-standard dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
92 lines
3.2 KiB
PHP
92 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2016 Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* @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/>.
|
|
*
|
|
*/
|
|
|
|
use OCA\Deck\Db\Board;
|
|
use OCA\Deck\Service\BoardService;
|
|
use OCP\IGroupManager;
|
|
use OCP\IUserSession;
|
|
use OCP\Server;
|
|
|
|
/**
|
|
* @group DB
|
|
*/
|
|
class BoardDatabaseTest extends \Test\TestCase {
|
|
public const TEST_USER1 = 'test-share-user1';
|
|
public const TEST_USER2 = 'test-share-user2';
|
|
public const TEST_USER3 = 'test-share-user3';
|
|
public const TEST_USER4 = 'test-share-user4';
|
|
public const TEST_GROUP1 = 'test-share-group1';
|
|
|
|
/** @var BoardService */
|
|
private $boardService;
|
|
|
|
public static function setUpBeforeClass(): void {
|
|
parent::setUpBeforeClass();
|
|
|
|
$backend = new \Test\Util\User\Dummy();
|
|
\OC_User::useBackend($backend);
|
|
$backend->createUser(self::TEST_USER1, self::TEST_USER1);
|
|
$backend->createUser(self::TEST_USER2, self::TEST_USER2);
|
|
$backend->createUser(self::TEST_USER3, self::TEST_USER3);
|
|
$backend->createUser(self::TEST_USER4, self::TEST_USER4);
|
|
// create group
|
|
$groupBackend = new \Test\Util\Group\Dummy();
|
|
$groupBackend->createGroup(self::TEST_GROUP1);
|
|
$groupBackend->createGroup('group');
|
|
$groupBackend->createGroup('group1');
|
|
$groupBackend->createGroup('group2');
|
|
$groupBackend->createGroup('group3');
|
|
$groupBackend->addToGroup(self::TEST_USER1, 'group');
|
|
$groupBackend->addToGroup(self::TEST_USER2, 'group');
|
|
$groupBackend->addToGroup(self::TEST_USER3, 'group');
|
|
$groupBackend->addToGroup(self::TEST_USER2, 'group1');
|
|
$groupBackend->addToGroup(self::TEST_USER3, 'group2');
|
|
$groupBackend->addToGroup(self::TEST_USER4, 'group3');
|
|
$groupBackend->addToGroup(self::TEST_USER2, self::TEST_GROUP1);
|
|
Server::get(IGroupManager::class)->addBackend($groupBackend);
|
|
}
|
|
public function setUp(): void {
|
|
parent::setUp();
|
|
Server::get(IUserSession::class)->login(self::TEST_USER1, self::TEST_USER1);
|
|
$this->boardService = Server::get(BoardService::class);
|
|
}
|
|
public function testCreate() {
|
|
$board = new Board();
|
|
$board->setTitle('Test');
|
|
$board->setOwner(self::TEST_USER1);
|
|
$board->setColor('000000');
|
|
$board->setLabels([]);
|
|
$created = $this->boardService->create('Test', self::TEST_USER1, '000000');
|
|
$id = $created->getId();
|
|
$actual = $this->boardService->find($id);
|
|
$this->assertEquals($actual->getTitle(), $board->getTitle());
|
|
$this->assertEquals($actual->getColor(), $board->getColor());
|
|
$this->assertEquals($actual->getOwner(), $board->getOwner());
|
|
$this->boardService->deleteForce($id);
|
|
}
|
|
|
|
public function tearDown(): void {
|
|
parent::tearDown();
|
|
}
|
|
}
|