2018-06-20 09:22:38 +00:00
|
|
|
@setupApplicationTest
|
2020-01-24 12:26:28 +00:00
|
|
|
@notNamespaceable
|
|
|
|
Feature: token-header
|
2018-06-20 09:22:38 +00:00
|
|
|
In order to authenticate with tokens
|
|
|
|
As a user
|
|
|
|
I need to be able to specify a ACL token AND/OR leave it blank to authenticate with the API
|
|
|
|
Scenario: Arriving at the index page having not set a token previously
|
|
|
|
Given 1 datacenter model with the value "datacenter"
|
|
|
|
When I visit the index page
|
|
|
|
Then the url should be /datacenter/services
|
2020-02-07 11:02:53 +00:00
|
|
|
And a GET request was made to "/v1/internal/ui/services?dc=datacenter&ns=@namespace" from yaml
|
2018-06-20 09:22:38 +00:00
|
|
|
---
|
|
|
|
headers:
|
|
|
|
X-Consul-Token: ''
|
|
|
|
---
|
2018-06-20 13:38:54 +00:00
|
|
|
Scenario: Set the token to [Token] and then navigate to the index page
|
2018-06-20 09:22:38 +00:00
|
|
|
Given 1 datacenter model with the value "datacenter"
|
2018-11-02 14:44:36 +00:00
|
|
|
And the url "/v1/acl/tokens" responds with a 403 status
|
|
|
|
When I visit the tokens page for yaml
|
|
|
|
---
|
|
|
|
dc: datacenter
|
|
|
|
---
|
|
|
|
Then the url should be /datacenter/acls/tokens
|
2020-05-11 15:37:11 +00:00
|
|
|
And I click login on the navigation
|
|
|
|
And I fill in the auth form with yaml
|
2018-06-20 09:22:38 +00:00
|
|
|
---
|
2020-05-11 15:37:11 +00:00
|
|
|
SecretID: [Token]
|
2018-06-20 09:22:38 +00:00
|
|
|
---
|
2020-05-11 15:37:11 +00:00
|
|
|
And I click submit on the authdialog.form
|
2018-06-20 09:22:38 +00:00
|
|
|
When I visit the index page
|
|
|
|
Then the url should be /datacenter/services
|
2020-02-07 11:02:53 +00:00
|
|
|
And a GET request was made to "/v1/internal/ui/services?dc=datacenter&ns=@namespace" from yaml
|
2018-06-20 09:22:38 +00:00
|
|
|
---
|
|
|
|
headers:
|
|
|
|
X-Consul-Token: [Token]
|
|
|
|
---
|
|
|
|
Where:
|
|
|
|
---------
|
|
|
|
| Token |
|
|
|
|
| token |
|
|
|
|
| '' |
|
|
|
|
---------
|