summaryrefslogtreecommitdiffstats
path: root/application/test/tests/test_api_v2.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/test/tests/test_api_v2.php')
-rw-r--r--application/test/tests/test_api_v2.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/application/test/tests/test_api_v2.php b/application/test/tests/test_api_v2.php
index 0e52de50b..05d7952c6 100644
--- a/application/test/tests/test_api_v2.php
+++ b/application/test/tests/test_api_v2.php
@@ -137,9 +137,9 @@ class test_api_v2 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" => "apiv2testuser2",
- "password" => "testpass2",
+ "apikey" => $apikey_full,
));
$this->expectSuccess("get apikeys", $ret);
@@ -180,7 +180,7 @@ class test_api_v2 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" => "apiv2testuser3",
"password" => "wrongpass",
));
@@ -196,7 +196,7 @@ class test_api_v2 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" => "apiv2testuserinvalid",
"password" => "testpass4",
));