diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-07-13 22:10:22 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-07-13 22:20:48 +0200 |
commit | 315e520d1ddee8da6390d6bd6f6cb5f5e7df389d (patch) | |
tree | d0ecc9655272f6e03b8025fb1efd773e3acfd5eb /application/test/tests/test_api_v2.php | |
parent | a9dd92393081df6d46115cae19e1b9771f90352f (diff) |
Improve insufficient permisions error message
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/test/tests/test_api_v2.php')
-rw-r--r-- | application/test/tests/test_api_v2.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/application/test/tests/test_api_v2.php b/application/test/tests/test_api_v2.php index f5200ddcc..912624993 100644 --- a/application/test/tests/test_api_v2.php +++ b/application/test/tests/test_api_v2.php @@ -89,6 +89,8 @@ class test_api_v2 extends \test\Test { { $testconfig = array( array( + "have_level" => "basic", + "wanted_level" => "apikey", "apikey" => $this->createUserAndApikey('basic'), "endpoints" => array( "file/delete", @@ -96,6 +98,8 @@ class test_api_v2 extends \test\Test { ), ), array( + "have_level" => "apikey", + "wanted_level" => "full", "apikey" => $this->createUserAndApikey(), "endpoints" => array( "user/apikeys", @@ -113,7 +117,7 @@ class test_api_v2 extends \test\Test { $this->t->is_deeply(array( 'status' => "error", 'error_id' => "api/insufficient-permissions", - 'message' => "Access denied: Access level too low", + 'message' => "Access denied: Access level too low. Required: ${test['wanted_level']}; Have: ${test['have_level']}", ), $ret, "expected permission error"); } } |