summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests
diff options
context:
space:
mode:
authorBjörn Schießle <bjoern@schiessle.org>2016-06-29 12:13:59 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-06-29 12:13:59 +0200
commit5ace6b53f317630d0e99f55276e1f50e71037392 (patch)
treeae97b5fc47d18409f4047a17b7bd8a8e8d7b3456 /apps/dav/tests
parent2b0f053126cbdce2bf18389c5bc0522ce7138824 (diff)
downloadnextcloud-server-5ace6b53f317630d0e99f55276e1f50e71037392.tar.gz
nextcloud-server-5ace6b53f317630d0e99f55276e1f50e71037392.zip
get only vcards which match both the address book id and the vcard uri (#25294)
Diffstat (limited to 'apps/dav/tests')
-rw-r--r--apps/dav/tests/unit/CardDAV/CardDavBackendTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/CardDAV/CardDavBackendTest.php b/apps/dav/tests/unit/CardDAV/CardDavBackendTest.php
index 58a93befe68..203d4512a47 100644
--- a/apps/dav/tests/unit/CardDAV/CardDavBackendTest.php
+++ b/apps/dav/tests/unit/CardDAV/CardDavBackendTest.php
@@ -606,6 +606,10 @@ class CardDavBackendTest extends TestCase {
$this->assertSame(5489543, (int)$result['lastmodified']);
$this->assertSame('etag0', $result['etag']);
$this->assertSame(120, (int)$result['size']);
+
+ // this shouldn't return any result because 'uri1' is in address book 1
+ $result = $this->backend->getContact(0, 'uri1');
+ $this->assertEmpty($result);
}
public function testGetContactFail() {