Browse Source
remove dead code
remove dead code
do not filter groups. but update the user count according to the filter improve phpdoc improve metadata runtime cache add metadata testsremotes/origin/fix-10825
committed by
Thomas Müller
5 changed files with 137 additions and 43 deletions
-
54lib/private/group/metadata.php
-
14settings/ajax/grouplist.php
-
6settings/js/users/filter.js
-
5settings/js/users/groups.js
-
101tests/lib/group/metadata.php
@ -0,0 +1,101 @@ |
|||
<?php |
|||
|
|||
/** |
|||
* Copyright (c) 2014 Arthur Schiwon <blizzz@owncloud.com> |
|||
* This file is licensed under the Affero General Public License version 3 or |
|||
* later. |
|||
* See the COPYING-README file. |
|||
*/ |
|||
|
|||
namespace Test\Group; |
|||
|
|||
class Test_MetaData extends \PHPUnit_Framework_TestCase { |
|||
private function getGroupManagerMock() { |
|||
return $this->getMockBuilder('\OC\Group\Manager') |
|||
->disableOriginalConstructor() |
|||
->getMock(); |
|||
} |
|||
|
|||
private function getGroupMock() { |
|||
$group = $this->getMockBuilder('\OC\Group\Group') |
|||
->disableOriginalConstructor() |
|||
->getMock(); |
|||
|
|||
$group->expects($this->exactly(9)) |
|||
->method('getGID') |
|||
->will($this->onConsecutiveCalls( |
|||
'admin', 'admin', 'admin', |
|||
'g2', 'g2', 'g2', |
|||
'g3', 'g3', 'g3')); |
|||
|
|||
$group->expects($this->exactly(3)) |
|||
->method('count') |
|||
->with('') |
|||
->will($this->onConsecutiveCalls(2, 3, 5)); |
|||
|
|||
return $group; |
|||
} |
|||
|
|||
|
|||
public function testGet() { |
|||
$groupManager = $this->getGroupManagerMock(); |
|||
$groupMetaData = new \OC\Group\MetaData('foo', true, $groupManager); |
|||
$group = $this->getGroupMock(); |
|||
$groups = array_fill(0, 3, $group); |
|||
|
|||
$groupManager->expects($this->once()) |
|||
->method('search') |
|||
->with('') |
|||
->will($this->returnValue($groups)); |
|||
|
|||
list($adminGroups, $ordinaryGroups) = $groupMetaData->get(); |
|||
|
|||
$this->assertSame(1, count($adminGroups)); |
|||
$this->assertSame(2, count($ordinaryGroups)); |
|||
|
|||
$this->assertSame('g2', $ordinaryGroups[0]['name']); |
|||
$this->assertSame(3, $ordinaryGroups[0]['usercount']); |
|||
} |
|||
|
|||
public function testGetWithSorting() { |
|||
$groupManager = $this->getGroupManagerMock(); |
|||
$groupMetaData = new \OC\Group\MetaData('foo', true, $groupManager); |
|||
$groupMetaData->setSorting($groupMetaData::SORT_USERCOUNT); |
|||
$group = $this->getGroupMock(); |
|||
$groups = array_fill(0, 3, $group); |
|||
|
|||
$groupManager->expects($this->once()) |
|||
->method('search') |
|||
->with('') |
|||
->will($this->returnValue($groups)); |
|||
|
|||
list($adminGroups, $ordinaryGroups) = $groupMetaData->get(); |
|||
|
|||
$this->assertSame(1, count($adminGroups)); |
|||
$this->assertSame(2, count($ordinaryGroups)); |
|||
|
|||
$this->assertSame('g3', $ordinaryGroups[0]['name']); |
|||
$this->assertSame(5, $ordinaryGroups[0]['usercount']); |
|||
} |
|||
|
|||
public function testGetWithCache() { |
|||
$groupManager = $this->getGroupManagerMock(); |
|||
$groupMetaData = new \OC\Group\MetaData('foo', true, $groupManager); |
|||
$group = $this->getGroupMock(); |
|||
$groups = array_fill(0, 3, $group); |
|||
|
|||
$groupManager->expects($this->once()) |
|||
->method('search') |
|||
->with('') |
|||
->will($this->returnValue($groups)); |
|||
|
|||
//two calls, if caching fails call counts for group and groupmanager
|
|||
//are exceeded
|
|||
$groupMetaData->get(); |
|||
$groupMetaData->get(); |
|||
} |
|||
|
|||
//get() does not need to be tested with search parameters, because they are
|
|||
//solely and only passed to GroupManager and Group.
|
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue