summaryrefslogtreecommitdiffstats
path: root/application/test/tests/test_api_v1.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/test/tests/test_api_v1.php')
-rw-r--r--application/test/tests/test_api_v1.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/application/test/tests/test_api_v1.php b/application/test/tests/test_api_v1.php
index 4d50d4796..d78b189f2 100644
--- a/application/test/tests/test_api_v1.php
+++ b/application/test/tests/test_api_v1.php
@@ -137,9 +137,9 @@ class test_api_v1 extends \test\Test {
{
$userid = $this->createUser(2);
$apikey = $this->createApikey($userid);
+ $apikey_full = $this->createApikey($userid, "full");
$ret = $this->CallEndpoint("POST", "user/apikeys", array(
- "username" => "apiv1testuser2",
- "password" => "testpass2",
+ "apikey" => $apikey_full,
));
$this->expectSuccess("get apikeys", $ret);
@@ -180,7 +180,7 @@ class test_api_v1 extends \test\Test {
public function test_authentication_invalidPassword()
{
$userid = $this->createUser(3);
- $ret = $this->CallEndpoint("POST", "user/apikeys", array(
+ $ret = $this->CallEndpoint("POST", "user/create_apikey", array(
"username" => "apiv1testuser3",
"password" => "wrongpass",
));
@@ -196,7 +196,7 @@ class test_api_v1 extends \test\Test {
public function test_authentication_invalidUser()
{
$userid = $this->createUser(4);
- $ret = $this->CallEndpoint("POST", "user/apikeys", array(
+ $ret = $this->CallEndpoint("POST", "user/create_apikey", array(
"username" => "apiv1testuserinvalid",
"password" => "testpass4",
));