diff options
author | Maxence Lange <maxence@nextcloud.com> | 2017-03-17 18:48:33 -0100 |
---|---|---|
committer | Maxence Lange <maxence@nextcloud.com> | 2017-03-17 18:48:33 -0100 |
commit | 69694012ab0eca1ec1f3dc0d2b10a3b1728b0927 (patch) | |
tree | f79ec80ba1eefb73884c723718d8fa5c76cbf203 /apps/files_sharing/tests/Controller | |
parent | 3c66ad64e626cb602685a640c235d472f0777a53 (diff) | |
download | nextcloud-server-69694012ab0eca1ec1f3dc0d2b10a3b1728b0927.tar.gz nextcloud-server-69694012ab0eca1ec1f3dc0d2b10a3b1728b0927.zip |
shares-circles
Signed-off-by: Maxence Lange <maxence@nextcloud.com>
Diffstat (limited to 'apps/files_sharing/tests/Controller')
-rw-r--r-- | apps/files_sharing/tests/Controller/ShareesAPIControllerTest.php | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/apps/files_sharing/tests/Controller/ShareesAPIControllerTest.php b/apps/files_sharing/tests/Controller/ShareesAPIControllerTest.php index 035085d811a..e3d869db3d6 100644 --- a/apps/files_sharing/tests/Controller/ShareesAPIControllerTest.php +++ b/apps/files_sharing/tests/Controller/ShareesAPIControllerTest.php @@ -1576,20 +1576,22 @@ class ShareesAPIControllerTest extends TestCase { return [ ['test', 'folder', [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_REMOTE], 1, 2, false, [], [], ['results' => [], 'exact' => [], 'exactIdMatch' => false], [ - 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'emails' => []], + 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'circles' => [], 'emails' => []], 'users' => [], 'groups' => [], 'remotes' => [], 'emails' => [], + 'circles' => [], 'lookup' => [], ], false], ['test', 'folder', [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_REMOTE], 1, 2, false, [], [], ['results' => [], 'exact' => [], 'exactIdMatch' => false], [ - 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'emails' => []], + 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'circles' => [], 'emails' => []], 'users' => [], 'groups' => [], 'remotes' => [], 'emails' => [], + 'circles' => [], 'lookup' => [], ], false], [ @@ -1601,7 +1603,7 @@ class ShareesAPIControllerTest extends TestCase { 'results' => [['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']]], 'exact' => [], 'exactIdMatch' => false, ], [ - 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'emails' => []], + 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'circles' => [], 'emails' => []], 'users' => [ ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']], ], @@ -1612,6 +1614,7 @@ class ShareesAPIControllerTest extends TestCase { ['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']], ], 'emails' => [], + 'circles' => [], 'lookup' => [], ], true, ], @@ -1623,7 +1626,7 @@ class ShareesAPIControllerTest extends TestCase { 'results' => [['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']]], 'exact' => [], 'exactIdMatch' => false ], [ - 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'emails' => []], + 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'circles' => [], 'emails' => []], 'users' => [ ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']], ], @@ -1632,6 +1635,7 @@ class ShareesAPIControllerTest extends TestCase { ['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']], ], 'emails' => [], + 'circles' => [], 'lookup' => [], ], false, ], @@ -1641,13 +1645,14 @@ class ShareesAPIControllerTest extends TestCase { ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']], ], null, null, [ - 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'emails' => []], + 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'circles' => [], 'emails' => []], 'users' => [ ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']], ], 'groups' => [], 'remotes' => [], 'emails' => [], + 'circles' => [], 'lookup' => [], ], false, ], @@ -1658,7 +1663,7 @@ class ShareesAPIControllerTest extends TestCase { ['label' => 'test 2', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']], ], null, null, [ - 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'emails' => []], + 'exact' => ['users' => [], 'groups' => [], 'remotes' => [], 'circles' => [], 'emails' => []], 'users' => [ ['label' => 'test 1', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']], ['label' => 'test 2', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']], @@ -1666,6 +1671,7 @@ class ShareesAPIControllerTest extends TestCase { 'groups' => [], 'remotes' => [], 'emails' => [], + 'circles' => [], 'lookup' => [], ], true, ], |