summaryrefslogtreecommitdiffstats
path: root/tests/lib/preferences.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/preferences.php')
-rw-r--r--tests/lib/preferences.php16
1 files changed, 15 insertions, 1 deletions
diff --git a/tests/lib/preferences.php b/tests/lib/preferences.php
index 2f15f47ea14..96228fcca15 100644
--- a/tests/lib/preferences.php
+++ b/tests/lib/preferences.php
@@ -192,8 +192,22 @@ class Test_Preferences_Object extends PHPUnit_Framework_TestCase {
$query->execute(array('AUser', 'testGetUserValues', 'somekey', 'somevalue'));
$preferences = new OC\Preferences(\OC_DB::getConnection());
- $values = $preferences->getValueForUsers('testGetUserValues', 'somekey', array('SomeUser', 'AnotherUser', 'NoValueSet'));
+ $users = array('SomeUser', 'AnotherUser', 'NoValueSet');
+ $values = $preferences->getValueForUsers('testGetUserValues', 'somekey', $users);
+ $this->assertUserValues($values);
+
+ // Add a lot of users so the array is chunked
+ for ($i = 1; $i <= 75; $i++) {
+ array_unshift($users, 'NoValueBefore#' . $i);
+ array_push($users, 'NoValueAfter#' . $i);
+ }
+
+ $values = $preferences->getValueForUsers('testGetUserValues', 'somekey', $users);
+ $this->assertUserValues($values);
+ }
+
+ protected function assertUserValues($values) {
$this->assertEquals(2, sizeof($values));
$this->assertArrayHasKey('SomeUser', $values);