diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-10 09:51:09 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-10 13:34:07 +0100 |
commit | e18548ce7505555767c9760302e23cf29cd86118 (patch) | |
tree | 6e1705b4106ba99ea4543c7be7fb95ebf2f3c591 /apps/dav/tests/unit | |
parent | cc96b93f95b844393b845b36be52c8399caed917 (diff) | |
download | nextcloud-server-e18548ce7505555767c9760302e23cf29cd86118.tar.gz nextcloud-server-e18548ce7505555767c9760302e23cf29cd86118.zip |
Fix displayName return of dav groups request
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/dav/tests/unit')
-rw-r--r-- | apps/dav/tests/unit/DAV/GroupPrincipalTest.php | 49 |
1 files changed, 11 insertions, 38 deletions
diff --git a/apps/dav/tests/unit/DAV/GroupPrincipalTest.php b/apps/dav/tests/unit/DAV/GroupPrincipalTest.php index af94df05254..c9a72e0b948 100644 --- a/apps/dav/tests/unit/DAV/GroupPrincipalTest.php +++ b/apps/dav/tests/unit/DAV/GroupPrincipalTest.php @@ -30,7 +30,6 @@ use OC\Group\Group; use OCA\DAV\DAV\GroupPrincipalBackend; use OCP\IGroup; use OCP\IGroupManager; -use OCP\IL10N; use OCP\IUser; use OCP\IUserSession; use OCP\Share\IManager; @@ -47,9 +46,6 @@ class GroupPrincipalTest extends \Test\TestCase { /** @var IManager | \PHPUnit_Framework_MockObject_MockObject */ private $shareManager; - /** @var IL10N | \PHPUnit_Framework_MockObject_MockObject */ - private $l10n; - /** @var GroupPrincipalBackend */ private $connector; @@ -57,13 +53,11 @@ class GroupPrincipalTest extends \Test\TestCase { $this->groupManager = $this->createMock(IGroupManager::class); $this->userSession = $this->createMock(IUserSession::class); $this->shareManager = $this->createMock(IManager::class); - $this->l10n = $this->createMock(IL10N::class); $this->connector = new GroupPrincipalBackend( $this->groupManager, $this->userSession, - $this->shareManager, - $this->l10n); + $this->shareManager); parent::setUp(); } @@ -81,25 +75,15 @@ class GroupPrincipalTest extends \Test\TestCase { ->with('') ->will($this->returnValue([$group1, $group2])); - $this->l10n->expects($this->at(0)) - ->method('t') - ->with('%s (group)', ['foo']) - ->will($this->returnValue('foo (Gruppe)')); - - $this->l10n->expects($this->at(1)) - ->method('t') - ->with('%s (group)', ['bar']) - ->will($this->returnValue('bar (Gruppe)')); - $expectedResponse = [ 0 => [ 'uri' => 'principals/groups/foo', - '{DAV:}displayname' => 'foo (Gruppe)', + '{DAV:}displayname' => 'Group foo', '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'GROUP', ], 1 => [ 'uri' => 'principals/groups/bar', - '{DAV:}displayname' => 'bar (Gruppe)', + '{DAV:}displayname' => 'Group bar', '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'GROUP', ] ]; @@ -126,14 +110,9 @@ class GroupPrincipalTest extends \Test\TestCase { ->with('foo') ->will($this->returnValue($group1)); - $this->l10n->expects($this->at(0)) - ->method('t') - ->with('%s (group)', ['foo']) - ->will($this->returnValue('foo (Gruppe)')); - $expectedResponse = [ 'uri' => 'principals/groups/foo', - '{DAV:}displayname' => 'foo (Gruppe)', + '{DAV:}displayname' => 'Group foo', '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'GROUP', ]; $response = $this->connector->getPrincipalByPath('principals/groups/foo'); @@ -148,14 +127,9 @@ class GroupPrincipalTest extends \Test\TestCase { ->with('foo') ->will($this->returnValue($fooUser)); - $this->l10n->expects($this->at(0)) - ->method('t') - ->with('%s (group)', ['foo']) - ->will($this->returnValue('foo (Gruppe)')); - $expectedResponse = [ 'uri' => 'principals/groups/foo', - '{DAV:}displayname' => 'foo (Gruppe)', + '{DAV:}displayname' => 'Group foo', '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'GROUP', ]; $response = $this->connector->getPrincipalByPath('principals/groups/foo'); @@ -181,14 +155,9 @@ class GroupPrincipalTest extends \Test\TestCase { ->with('foo/bar') ->will($this->returnValue($group1)); - $this->l10n->expects($this->at(0)) - ->method('t') - ->with('%s (group)', ['foo/bar']) - ->will($this->returnValue('foo/bar (Gruppe)')); - $expectedResponse = [ 'uri' => 'principals/groups/foo%2Fbar', - '{DAV:}displayname' => 'foo/bar (Gruppe)', + '{DAV:}displayname' => 'Group foo/bar', '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'GROUP', ]; $response = $this->connector->getPrincipalByPath('principals/groups/foo/bar'); @@ -348,7 +317,11 @@ class GroupPrincipalTest extends \Test\TestCase { $fooGroup ->expects($this->exactly(1)) ->method('getGID') - ->will($this->returnValue($gid)); + ->willReturn($gid); + $fooGroup + ->expects($this->exactly(1)) + ->method('getDisplayName') + ->willReturn('Group '.$gid); return $fooGroup; } } |