diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-01-08 10:44:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 10:44:32 +0100 |
commit | dc89447f13e3c4d00f24607c785e4056d2459642 (patch) | |
tree | 4b21b93ec1807cc748a675aebec1009eca6bcfb3 /apps/user_ldap/tests | |
parent | d6d8fc4226e6bb4094f8865d611352c5a38d5abc (diff) | |
download | nextcloud-server-dc89447f13e3c4d00f24607c785e4056d2459642.tar.gz nextcloud-server-dc89447f13e3c4d00f24607c785e4056d2459642.zip |
Revert "(LDAP) respect DB limits of arguments in an IN statement"
Diffstat (limited to 'apps/user_ldap/tests')
-rw-r--r-- | apps/user_ldap/tests/Mapping/AbstractMappingTest.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/apps/user_ldap/tests/Mapping/AbstractMappingTest.php b/apps/user_ldap/tests/Mapping/AbstractMappingTest.php index dd322d58a8e..079c2e21b10 100644 --- a/apps/user_ldap/tests/Mapping/AbstractMappingTest.php +++ b/apps/user_ldap/tests/Mapping/AbstractMappingTest.php @@ -281,23 +281,4 @@ abstract class AbstractMappingTest extends \Test\TestCase { $results = $mapper->getList(1, 1); $this->assertSame(1, count($results)); } - - public function testGetListOfIdsByDn() { - /** @var AbstractMapping $mapper */ - list($mapper,) = $this->initTest(); - - $listOfDNs = []; - for ($i = 0; $i < 65640; $i++) { - // Postgres has a limit of 65535 values in a single IN list - $name = 'as_' . $i; - $dn = 'uid=' . $name . ',dc=example,dc=org'; - $listOfDNs[] = $dn; - if ($i % 20 === 0) { - $mapper->map($dn, $name, 'fake-uuid-' . $i); - } - } - - $result = $mapper->getListOfIdsByDn($listOfDNs); - $this->assertSame(65640 / 20, count($result)); - } } |