summaryrefslogtreecommitdiffstats
path: root/apps/provisioning_api/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-02-27 22:03:40 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2018-02-27 22:03:40 +0100
commitfbeaacdf1b3a24043fb0616c14e18b26f4308dd9 (patch)
treec118988c11091ab5ef6f66e32636a08ed66eb983 /apps/provisioning_api/tests
parent24b58a76831b5183c6daafef32a1a6e333afa877 (diff)
downloadnextcloud-server-fbeaacdf1b3a24043fb0616c14e18b26f4308dd9.tar.gz
nextcloud-server-fbeaacdf1b3a24043fb0616c14e18b26f4308dd9.zip
Fix tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/provisioning_api/tests')
-rw-r--r--apps/provisioning_api/tests/Controller/AppConfigControllerTest.php8
-rw-r--r--apps/provisioning_api/tests/Controller/UsersControllerTest.php8
2 files changed, 8 insertions, 8 deletions
diff --git a/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php b/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php
index 223f2c371d6..2f299b58586 100644
--- a/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php
+++ b/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php
@@ -138,7 +138,7 @@ class AppConfigControllerTest extends TestCase {
public function dataGetValue() {
return [
- ['app1 ', null, null, null, new \InvalidArgumentException('error'), Http::STATUS_FORBIDDEN],
+ ['app1', 'key', 'default', null, new \InvalidArgumentException('error'), Http::STATUS_FORBIDDEN],
['app2', 'key', 'default', 'return', null, Http::STATUS_OK],
];
}
@@ -186,8 +186,8 @@ class AppConfigControllerTest extends TestCase {
public function dataSetValue() {
return [
- ['app1 ', null, null, new \InvalidArgumentException('error1'), null, Http::STATUS_FORBIDDEN],
- ['app2', 'key', null, null, new \InvalidArgumentException('error2'), Http::STATUS_FORBIDDEN],
+ ['app1', 'key', 'default', new \InvalidArgumentException('error1'), null, Http::STATUS_FORBIDDEN],
+ ['app2', 'key', 'default', null, new \InvalidArgumentException('error2'), Http::STATUS_FORBIDDEN],
['app2', 'key', 'default', null, null, Http::STATUS_OK],
];
}
@@ -252,7 +252,7 @@ class AppConfigControllerTest extends TestCase {
public function dataDeleteValue() {
return [
- ['app1 ', null, new \InvalidArgumentException('error1'), null, Http::STATUS_FORBIDDEN],
+ ['app1', 'key', new \InvalidArgumentException('error1'), null, Http::STATUS_FORBIDDEN],
['app2', 'key', null, new \InvalidArgumentException('error2'), Http::STATUS_FORBIDDEN],
['app2', 'key', null, null, Http::STATUS_OK],
];
diff --git a/apps/provisioning_api/tests/Controller/UsersControllerTest.php b/apps/provisioning_api/tests/Controller/UsersControllerTest.php
index a8a5e4a0591..216ca76a0f8 100644
--- a/apps/provisioning_api/tests/Controller/UsersControllerTest.php
+++ b/apps/provisioning_api/tests/Controller/UsersControllerTest.php
@@ -242,7 +242,7 @@ class UsersControllerTest extends TestCase {
->with('adminUser')
->willReturn(true);
- $this->api->addUser('AlreadyExistingUser', null, null);
+ $this->api->addUser('AlreadyExistingUser', 'password', []);
}
/**
@@ -490,7 +490,7 @@ class UsersControllerTest extends TestCase {
->with()
->willReturn($subAdminManager);
- $this->api->addUser('NewUser', 'PasswordOfTheNewUser', null);
+ $this->api->addUser('NewUser', 'PasswordOfTheNewUser', []);
}
/**
@@ -2128,7 +2128,7 @@ class UsersControllerTest extends TestCase {
->method('getUser')
->will($this->returnValue($loggedInUser));
- $this->api->removeFromGroup('TargetUser', null);
+ $this->api->removeFromGroup('TargetUser', '');
}
/**
@@ -2450,7 +2450,7 @@ class UsersControllerTest extends TestCase {
->with('NotExistingUser')
->will($this->returnValue(null));
- $this->api->addSubAdmin('NotExistingUser', null);
+ $this->api->addSubAdmin('NotExistingUser', '');
}
/**