@setupApplicationTest Feature: dc / intentions / create: Intention Create In order to define intentions As a user I want to visit the intention create page, fill in the form and hit the create button and see a success notification @onlyNamespaceable Scenario: with namespaces enabled Given 1 datacenter model with the value "datacenter" And 3 service models from yaml --- - Name: web Kind: ~ - Name: db Kind: ~ - Name: cache Kind: ~ --- When I visit the intention page for yaml --- dc: datacenter --- Then the url should be /datacenter/intentions/create And the title should be "New Intention - Consul" # Set source And I click "[data-test-source-element] .ember-power-select-trigger" And I type "web" into ".ember-power-select-search-input" And I click ".ember-power-select-option:first-child" Then I see the text "web" in "[data-test-source-element] .ember-power-select-selected-item" # Set destination And I click "[data-test-destination-element] .ember-power-select-trigger" And I type "db" into ".ember-power-select-search-input" And I click ".ember-power-select-option:first-child" Then I see the text "db" in "[data-test-destination-element] .ember-power-select-selected-item" # Specifically set deny And I click "[value=deny]" And I submit # TODO: When namespace is empty we expect * # Then a PUT request was made to "/v1/connect/intentions/exact?source=@namespace%2Fweb&destination=@namespace%2Fdb&dc=datacenter" from yaml # --- # body: # SourceName: web # DestinationName: db # Action: deny # --- Then the url should be /datacenter/intentions And the title should be "Intentions - Consul" And "[data-notification]" has the "notification-update" class And "[data-notification]" has the "success" class @notNamespaceable Scenario: with namespaces disabled Given 1 datacenter model with the value "datacenter" And 3 service models from yaml --- - Name: web Kind: ~ - Name: db Kind: ~ - Name: cache Kind: ~ --- When I visit the intention page for yaml --- dc: datacenter --- Then the url should be /datacenter/intentions/create And the title should be "New Intention - Consul" # Set source And I click "[data-test-source-element] .ember-power-select-trigger" And I type "web" into ".ember-power-select-search-input" And I click ".ember-power-select-option:first-child" Then I see the text "web" in "[data-test-source-element] .ember-power-select-selected-item" # Set destination And I click "[data-test-destination-element] .ember-power-select-trigger" And I type "db" into ".ember-power-select-search-input" And I click ".ember-power-select-option:first-child" Then I see the text "db" in "[data-test-destination-element] .ember-power-select-selected-item" # Specifically set deny And I click "[value=deny]" And I submit Then a PUT request was made to "/v1/connect/intentions/exact?source=default%2Fweb&destination=default%2Fdb&dc=datacenter" from yaml --- body: SourceName: web DestinationName: db Action: deny --- Then the url should be /datacenter/intentions And the title should be "Intentions - Consul" And "[data-notification]" has the "notification-update" class And "[data-notification]" has the "success" class