summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/tests
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-05-16 18:03:15 +0200
committerArthur Schiwon <blizzz@owncloud.com>2014-08-28 11:52:33 +0200
commitdbd51d15e1558fac4936a593ea3599b344d83b07 (patch)
tree402c7e1eeec56f9173063a5979da88e8f62d9d79 /apps/user_ldap/tests
parent2f76117cb804e7e18d2d3bc8b072e18a7c09f43c (diff)
downloadnextcloud-server-dbd51d15e1558fac4936a593ea3599b344d83b07.tar.gz
nextcloud-server-dbd51d15e1558fac4936a593ea3599b344d83b07.zip
Port of #8623
set result entry identifier earlier, i.e. before a continue for the same level can happen. otherwise will always get the same value and we end up in an infinite loop add unit test to make sure the infinite loop never comes back Conflicts: apps/user_ldap/tests/wizard.php
Diffstat (limited to 'apps/user_ldap/tests')
-rw-r--r--apps/user_ldap/tests/wizard.php78
1 files changed, 78 insertions, 0 deletions
diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php
index ff5ee010b71..786769a88cf 100644
--- a/apps/user_ldap/tests/wizard.php
+++ b/apps/user_ldap/tests/wizard.php
@@ -207,4 +207,82 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase {
unset($uidnumber);
}
+ public function testCumulativeSearchOnAttributeSkipReadDN() {
+ // tests that there is no infinite loop, when skipping already processed
+ // DNs (they can be returned multiple times for multiple filters )
+ list($wizard, $configuration, $ldap) = $this->getWizardAndMocks();
+
+ $configuration->expects($this->any())
+ ->method('__get')
+ ->will($this->returnCallback(function($name) {
+ if($name === 'ldapBase') {
+ return array('base');
+ }
+ return null;
+ }));
+
+ $this->prepareLdapWrapperForConnections($ldap);
+
+ $ldap->expects($this->any())
+ ->method('isResource')
+ ->will($this->returnCallback(function($res) {
+ return (bool)$res;
+ }));
+
+ $ldap->expects($this->any())
+ ->method('search')
+ //dummy value, usually invalid
+ ->will($this->returnValue(true));
+
+ $ldap->expects($this->any())
+ ->method('countEntries')
+ //an is_resource check will follow, so we need to return a dummy resource
+ ->will($this->returnValue(7));
+
+ //5 DNs per filter means 2x firstEntry and 8x nextEntry
+ $ldap->expects($this->any())
+ ->method('firstEntry')
+ //dummy value, usually invalid
+ ->will($this->returnValue(1));
+
+ global $mark;
+ $mark = false;
+ // entries return order: 1, 2, 3, 4, 4, 5, 6
+ $ldap->expects($this->any())
+ ->method('nextEntry')
+ //dummy value, usually invalid
+ ->will($this->returnCallback(function($a, $prev){
+ $current = $prev + 1;
+ if($current === 7) {
+ return false;
+ }
+ global $mark;
+ if($prev === 4 && !$mark) {
+ $mark = true;
+ return 4;
+ }
+ return $current;
+ }));
+
+ $ldap->expects($this->any())
+ ->method('getAttributes')
+ //dummy value, usually invalid
+ ->will($this->returnCallback(function($a, $entry) {
+ return array('cn' => array($entry), 'count' => 1);
+ }));
+
+ $ldap->expects($this->any())
+ ->method('getDN')
+ //dummy value, usually invalid
+ ->will($this->returnCallback(function($a, $b) {
+ return $b;
+ }));
+
+ # The following expectations are the real test #
+ $filters = array('f1', 'f2', '*');
+ $resultArray = $wizard->cumulativeSearchOnAttribute($filters, 'cn', true, 0);
+ $this->assertSame(6, count($resultArray));
+ unset($mark);
+ }
+
}