diff options
author | Azul <azul@leap.se> | 2014-07-28 11:05:46 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-07-31 10:03:38 +0200 |
commit | 1092bbc337edc5973fad63bea559ecc2a3a5b896 (patch) | |
tree | 7571646015a24623e439c4af3f067fe469f9c406 /features/service.feature | |
parent | 297b42cd7557a7508cdbf091163da48bbd52a79a (diff) |
features for anonymous use and service endpoint
Also moved the location of the config files into a configuration setting.
Diffstat (limited to 'features/service.feature')
-rw-r--r-- | features/service.feature | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/features/service.feature b/features/service.feature new file mode 100644 index 0000000..ea49c74 --- /dev/null +++ b/features/service.feature @@ -0,0 +1,33 @@ +Feature: Get service description for current user + + The LEAP provider can offer different services and their availability may + depend upon a users service level - so wether they are paying or not. + + The /1/service endpoint allows the client to find out about the services + available to the authenticated user. + + Background: + Given I authenticated + Given I set headers: + | Accept | application/json | + | Content-Type | application/json | + | Authorization | Token token="MY_AUTH_TOKEN" | + + Scenario: Get service settings + When I send a GET request to "/1/service" + Then the response status should be "200" + And the response should be: + """ + { + "name": "free", + "description": "free account, with rate limited VPN", + "eip_rate_limit": true, + "storage": 100, + "services": [ + "eip" + ] + } + """ + + + |