diff options
author | Azul <azul@leap.se> | 2014-07-08 19:08:39 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-07-14 10:49:39 +0200 |
commit | 091793265e23452890c6ca27fc64feb54df2ad0b (patch) | |
tree | 6c94f62e881fea9073f666260102082804439318 /features/unauthenticated.feature | |
parent | f1a8cefb810bef263d3a96edffbec511dbe15291 (diff) |
move unauthenticated api endpoints into separate feature
Diffstat (limited to 'features/unauthenticated.feature')
-rw-r--r-- | features/unauthenticated.feature | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/features/unauthenticated.feature b/features/unauthenticated.feature new file mode 100644 index 0000000..b810bea --- /dev/null +++ b/features/unauthenticated.feature @@ -0,0 +1,31 @@ +Feature: Unauthenticated API endpoints + + Most of the LEAP Provider API requires authentication. + However there are a few exceptions - mostly prerequisits of authenticating. This feature and the authentication feature document these. + + Background: + Given I set headers: + | Accept | application/json | + | Content-Type | application/json | + + @tempfile + Scenario: Fetch provider config + Given the provider config is: + """ + {"config": "me"} + """ + When I send a GET request to "/provider.json" + Then the response status should be "200" + And the response should be: + """ + {"config": "me"} + """ + + Scenario: Authentication required for all other API endpoints + When I send a GET request to "/1/configs" + Then the response status should be "401" + And the response should be: + """ + {"error": "Please log in to perform that action."} + """ + |