2018-08-29 18:14:31 +00:00
|
|
|
@setupApplicationTest
|
|
|
|
Feature: dc / intentions / update: Intention Update
|
|
|
|
Background:
|
|
|
|
Given 1 datacenter model with the value "datacenter"
|
|
|
|
And 1 intention model from yaml
|
|
|
|
---
|
|
|
|
ID: intention-id
|
|
|
|
---
|
|
|
|
When I visit the intention page for yaml
|
|
|
|
---
|
|
|
|
dc: datacenter
|
|
|
|
intention: intention-id
|
|
|
|
---
|
|
|
|
Then the url should be /datacenter/intentions/intention-id
|
2020-01-28 14:25:52 +00:00
|
|
|
And the title should be "Edit Intention - Consul"
|
2018-10-19 15:17:02 +00:00
|
|
|
Scenario: Update to [Description], [Action]
|
2018-08-29 18:14:31 +00:00
|
|
|
Then I fill in with yaml
|
|
|
|
---
|
2018-10-19 15:17:02 +00:00
|
|
|
Description: [Description]
|
2018-08-29 18:14:31 +00:00
|
|
|
---
|
|
|
|
And I click "[value=[Action]]"
|
|
|
|
And I submit
|
2020-01-24 12:26:28 +00:00
|
|
|
Then a PUT request was made to "/v1/connect/intentions/intention-id?dc=datacenter" with the body from yaml
|
2018-08-29 18:14:31 +00:00
|
|
|
---
|
2018-10-19 15:17:02 +00:00
|
|
|
Description: [Description]
|
2018-08-29 18:14:31 +00:00
|
|
|
Action: [Action]
|
|
|
|
---
|
|
|
|
Then the url should be /datacenter/intentions
|
2020-01-28 14:25:52 +00:00
|
|
|
And the title should be "Intentions - Consul"
|
2018-08-29 18:14:31 +00:00
|
|
|
And "[data-notification]" has the "notification-update" class
|
|
|
|
And "[data-notification]" has the "success" class
|
|
|
|
Where:
|
|
|
|
------------------------------
|
|
|
|
| Description | Action |
|
|
|
|
| Desc | allow |
|
|
|
|
------------------------------
|
|
|
|
Scenario: There was an error saving the intention
|
|
|
|
Given the url "/v1/connect/intentions/intention-id" responds with a 500 status
|
|
|
|
And I submit
|
|
|
|
Then the url should be /datacenter/intentions/intention-id
|
|
|
|
Then "[data-notification]" has the "notification-update" class
|
|
|
|
And "[data-notification]" has the "error" class
|
|
|
|
|