nextcloud/tests/lib/Group/DatabaseTest.php

60 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2012-04-12 19:58:53 -04:00
<?php
2012-04-12 19:58:53 -04:00
/**
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
2012-04-12 19:58:53 -04:00
2016-05-19 02:44:41 -04:00
namespace Test\Group;
2015-11-02 19:52:41 -05:00
/**
2016-05-19 02:44:41 -04:00
* Class Database
2015-11-02 19:52:41 -05:00
*
* @group DB
*/
class DatabaseTest extends Backend {
private $groups = [];
2012-04-12 19:58:53 -04:00
/**
* get a new unique group name
* test cases can override this in order to clean up created groups
*/
public function getGroupName($name = null): string {
$name = parent::getGroupName($name);
$this->groups[] = $name;
2012-04-12 19:58:53 -04:00
return $name;
}
protected function setUp(): void {
parent::setUp();
$this->backend = new \OC\Group\Database();
2012-04-12 19:58:53 -04:00
}
protected function tearDown(): void {
foreach ($this->groups as $group) {
2012-04-12 19:58:53 -04:00
$this->backend->deleteGroup($group);
}
parent::tearDown();
2012-04-12 19:58:53 -04:00
}
public function testAddDoubleNoCache(): void {
$group = $this->getGroupName();
$this->backend->createGroup($group);
$backend = new \OC\Group\Database();
$this->assertNull($backend->createGroup($group));
}
public function testAddLongGroupName(): void {
$groupName = $this->getUniqueID('test_', 100);
$gidCreated = $this->backend->createGroup($groupName);
$this->assertEquals(64, strlen($gidCreated));
$group = $this->backend->getGroupDetails($gidCreated);
$this->assertEquals(['displayName' => $groupName], $group);
}
2012-04-12 19:58:53 -04:00
}