summaryrefslogtreecommitdiff
path: root/features/unauthenticated.feature
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-05-18 20:21:04 +0200
committerAzul <azul@riseup.net>2016-05-18 20:21:04 +0200
commit83f59164fc069f2593cf6babbc18638d9a68c9a3 (patch)
treeb357b100bfd40eb098040c4214776a5fb9bbff9b /features/unauthenticated.feature
parente05a1b0f5ae40a2aa17976b3009cd563b8e4660a (diff)
features for API version 2 - keep old ones
Now we test both api versions. We want this for backwards compatibility.
Diffstat (limited to 'features/unauthenticated.feature')
-rw-r--r--features/unauthenticated.feature10
1 files changed, 5 insertions, 5 deletions
diff --git a/features/unauthenticated.feature b/features/unauthenticated.feature
index aea7117..b4b0f55 100644
--- a/features/unauthenticated.feature
+++ b/features/unauthenticated.feature
@@ -16,7 +16,7 @@ Feature: Unauthenticated API endpoints
And the response should be that config
Scenario: Authentication required response
- When I send a GET request to "/1/configs"
+ When I send a GET request to "/2/configs"
Then the response status should be "401"
And the response should have "error" with "not_authorized_login"
And the response should have "message"
@@ -24,8 +24,8 @@ Feature: Unauthenticated API endpoints
Scenario: Authentication required for all other API endpoints (incomplete)
Given I am not logged in
When I send requests to these endpoints:
- | GET | /1/configs |
- | GET | /1/configs/config_id.json |
- | GET | /1/service |
- | DELETE | /1/logout |
+ | GET | /2/configs |
+ | GET | /2/configs/config_id.json |
+ | GET | /2/service |
+ | DELETE | /2/logout |
Then they should require authentication