diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-09-11 13:31:50 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-09-14 13:20:51 +0200 |
commit | fc097a80f50d9959c5bccaf9e8ed55adce4be8bd (patch) | |
tree | 9707032b8a23107ad9b25f4fb7f39e1aff9bb0b7 /apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php | |
parent | 34f95901698664cc0fc529c7abbac1e3db770c32 (diff) | |
download | nextcloud-server-fc097a80f50d9959c5bccaf9e8ed55adce4be8bd.tar.gz nextcloud-server-fc097a80f50d9959c5bccaf9e8ed55adce4be8bd.zip |
improve and extend paging integration test
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php')
-rw-r--r-- | apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php | 37 |
1 files changed, 27 insertions, 10 deletions
diff --git a/apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php b/apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php index f9be6d6f675..f6d6175c93b 100644 --- a/apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php +++ b/apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php @@ -36,6 +36,9 @@ class IntegrationTestPaging extends AbstractIntegrationTest { /** @var User_LDAP */ protected $backend; + /** @var int */ + protected $pagingSize = 2; + /** * prepares the LDAP environment and sets up a test configuration for * the LDAP backend. @@ -50,7 +53,7 @@ class IntegrationTestPaging extends AbstractIntegrationTest { public function initConnection() { parent::initConnection(); $this->connection->setConfiguration([ - 'ldapPagingSize' => 1 + 'ldapPagingSize' => $this->pagingSize ]); } @@ -61,19 +64,33 @@ class IntegrationTestPaging extends AbstractIntegrationTest { * @return bool */ protected function case1() { - $offset = 0; + $filter = 'objectclass=inetorgperson'; + $attributes = ['cn', 'dn']; + $users = []; + $result = $this->access->searchUsers($filter, $attributes); + foreach($result as $user) { + $users[] = $user['cn']; + } + + if(count($users) === 4) { + return true; + } + + return false; + } + + protected function case2() { $filter = 'objectclass=inetorgperson'; $attributes = ['cn', 'dn']; $users = []; - do { - $result = $this->access->searchUsers($filter, $attributes, null, $offset); - foreach($result as $user) { - $users[] = $user['cn']; - } - $offset += count($users); - } while ($this->access->hasMoreResults()); - if(count($users) === 2) { + + $result = $this->access->searchUsers($filter, $attributes, null, $this->pagingSize); + foreach($result as $user) { + $users[] = $user['cn']; + } + + if(count($users) === 4 - $this->pagingSize) { return true; } |