summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJuan Pablo Villafáñez <jvillafanez@solidgear.es>2017-03-15 08:55:14 +0100
committerArthur Schiwon <blizzz@arthur-schiwon.de>2017-03-29 13:32:16 +0200
commite9b96062e68d1e09055f4f2e7dac18161c062609 (patch)
tree54c52f61f9978333d03fc8ee6df64cf0315de1d7 /apps
parentf9832ff3475a1feec9d8b8d2d42bbf56d72c0118 (diff)
downloadnextcloud-server-e9b96062e68d1e09055f4f2e7dac18161c062609.tar.gz
nextcloud-server-e9b96062e68d1e09055f4f2e7dac18161c062609.zip
Adjust current tests to match the expectations
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/tests/User/UserTest.php54
1 files changed, 26 insertions, 28 deletions
diff --git a/apps/user_ldap/tests/User/UserTest.php b/apps/user_ldap/tests/User/UserTest.php
index c261a2abaa2..7a0e40b8563 100644
--- a/apps/user_ldap/tests/User/UserTest.php
+++ b/apps/user_ldap/tests/User/UserTest.php
@@ -211,15 +211,17 @@ class UserTest extends \Test\TestCase {
$connection->expects($this->at(0))
->method('__get')
- ->with($this->equalTo('ldapQuotaDefault'))
- ->will($this->returnValue('23 GB'));
+ ->with($this->equalTo('ldapQuotaAttribute'))
+ ->will($this->returnValue('myquota'));
+ /* Having a quota defined, the ldapQuotaDefault won't be used
$connection->expects($this->at(1))
->method('__get')
- ->with($this->equalTo('ldapQuotaAttribute'))
- ->will($this->returnValue('myquota'));
+ ->with($this->equalTo('ldapQuotaDefault'))
+ ->will($this->returnValue('23 GB'));
+ */
- $connection->expects($this->exactly(2))
+ $connection->expects($this->exactly(1))
->method('__get');
$access->expects($this->once())
@@ -256,13 +258,13 @@ class UserTest extends \Test\TestCase {
$connection->expects($this->at(0))
->method('__get')
- ->with($this->equalTo('ldapQuotaDefault'))
- ->will($this->returnValue('25 GB'));
+ ->with($this->equalTo('ldapQuotaAttribute'))
+ ->will($this->returnValue('myquota'));
$connection->expects($this->at(1))
->method('__get')
- ->with($this->equalTo('ldapQuotaAttribute'))
- ->will($this->returnValue('myquota'));
+ ->with($this->equalTo('ldapQuotaDefault'))
+ ->will($this->returnValue('25 GB'));
$connection->expects($this->exactly(2))
->method('__get');
@@ -301,15 +303,17 @@ class UserTest extends \Test\TestCase {
$connection->expects($this->at(0))
->method('__get')
- ->with($this->equalTo('ldapQuotaDefault'))
- ->will($this->returnValue(''));
+ ->with($this->equalTo('ldapQuotaAttribute'))
+ ->will($this->returnValue('myquota'));
+ /* Having a quota set this won't be used
$connection->expects($this->at(1))
->method('__get')
- ->with($this->equalTo('ldapQuotaAttribute'))
- ->will($this->returnValue('myquota'));
+ ->with($this->equalTo('ldapQuotaDefault'))
+ ->will($this->returnValue(''));
+ */
- $connection->expects($this->exactly(2))
+ $connection->expects($this->exactly(1))
->method('__get');
$access->expects($this->once())
@@ -346,13 +350,13 @@ class UserTest extends \Test\TestCase {
$connection->expects($this->at(0))
->method('__get')
- ->with($this->equalTo('ldapQuotaDefault'))
- ->will($this->returnValue(''));
+ ->with($this->equalTo('ldapQuotaAttribute'))
+ ->will($this->returnValue('myquota'));
$connection->expects($this->at(1))
->method('__get')
- ->with($this->equalTo('ldapQuotaAttribute'))
- ->will($this->returnValue('myquota'));
+ ->with($this->equalTo('ldapQuotaDefault'))
+ ->will($this->returnValue(''));
$connection->expects($this->exactly(2))
->method('__get');
@@ -384,12 +388,12 @@ class UserTest extends \Test\TestCase {
$connection->expects($this->at(0))
->method('__get')
- ->with($this->equalTo('ldapQuotaDefault'))
+ ->with($this->equalTo('ldapQuotaAttribute'))
->will($this->returnValue(''));
$connection->expects($this->at(1))
->method('__get')
- ->with($this->equalTo('ldapQuotaAttribute'))
+ ->with($this->equalTo('ldapQuotaDefault'))
->will($this->returnValue(''));
$connection->expects($this->exactly(2))
@@ -419,15 +423,9 @@ class UserTest extends \Test\TestCase {
$readQuota = '19 GB';
- $connection->expects($this->at(0))
+ $connection->expects($this->never())
->method('__get')
- ->with($this->equalTo('ldapQuotaDefault'))
- ->will($this->returnValue(''));
-
- $connection->expects($this->once(1))
- ->method('__get')
- ->with($this->equalTo('ldapQuotaDefault'))
- ->will($this->returnValue(null));
+ ->with($this->equalTo('ldapQuotaDefault'));
$access->expects($this->never())
->method('readAttribute');