Add tests for entities
This commit is contained in:
88
tests/unit/Db/AclTest.php
Normal file
88
tests/unit/Db/AclTest.php
Normal file
@@ -0,0 +1,88 @@
|
||||
<?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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace OCA\Deck\Db;
|
||||
|
||||
class AclTest extends \PHPUnit_Framework_TestCase {
|
||||
private function createAclUser() {
|
||||
$acl = new Acl();
|
||||
$acl->setId(1);
|
||||
$acl->setParticipant("admin");
|
||||
$acl->setType("user");
|
||||
$acl->setBoardId(1);
|
||||
$acl->setPermissionWrite(1);
|
||||
$acl->setPermissionInvite(1);
|
||||
$acl->setPermissionManage(1);
|
||||
return $acl;
|
||||
}
|
||||
private function createAclGroup() {
|
||||
$acl = new Acl();
|
||||
$acl->setId(1);
|
||||
$acl->setParticipant("administrators");
|
||||
$acl->setType("group");
|
||||
$acl->setBoardId(1);
|
||||
$acl->setPermissionWrite(1);
|
||||
$acl->setPermissionInvite(1);
|
||||
$acl->setPermissionManage(1);
|
||||
return $acl;
|
||||
}
|
||||
public function testJsonSerialize() {
|
||||
$acl = $this->createAclUser();
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'participant' => 'admin',
|
||||
'type' => 'user',
|
||||
'boardId' => 1,
|
||||
'permissionWrite' => 1,
|
||||
'permissionInvite' => 1,
|
||||
'permissionManage' => 1,
|
||||
'owner' => 0
|
||||
], $acl->jsonSerialize());
|
||||
$acl = $this->createAclGroup();
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'participant' => 'administrators',
|
||||
'type' => 'group',
|
||||
'boardId' => 1,
|
||||
'permissionWrite' => 1,
|
||||
'permissionInvite' => 1,
|
||||
'permissionManage' => 1,
|
||||
'owner' => 0
|
||||
], $acl->jsonSerialize());
|
||||
}
|
||||
public function testSetOwner() {
|
||||
$acl = $this->createAclUser();
|
||||
$acl->setOwner(1);
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'participant' => 'admin',
|
||||
'type' => 'user',
|
||||
'boardId' => 1,
|
||||
'permissionWrite' => 1,
|
||||
'permissionInvite' => 1,
|
||||
'permissionManage' => 1,
|
||||
'owner' => 1
|
||||
], $acl->jsonSerialize());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user