958991db94
* Create ConsulServiceInstanceList with styling and test * Implement ConsulServiceInstanceList to Service Detail page * Implement ConsulExternalSource to Services Show page header * Update services/show page object * Update the styling of CompositeRow * Refactor ConsulServiceList component and styling * Update ConsulExternalSource to say 'Registered via...' * Upgrade consul-api-double to patch 2.14.1 * Fix up tests to not use Kind in service models * Update ListCollection with clickFirstAnchor action * Add $typo-size-450 to typography base variables
56 lines
1.6 KiB
Gherkin
56 lines
1.6 KiB
Gherkin
@setupApplicationTest
|
|
@onlyNamespaceable
|
|
Feature: dc / nspaces / manage : Managing Namespaces
|
|
Scenario:
|
|
Given settings from yaml
|
|
---
|
|
consul:token:
|
|
SecretID: secret
|
|
AccessorID: accessor
|
|
Namespace: default
|
|
---
|
|
And 1 datacenter models from yaml
|
|
---
|
|
- dc-1
|
|
---
|
|
And 12 service models from yaml
|
|
---
|
|
- Name: Service-0
|
|
- Name: Service-0-proxy
|
|
Kind: 'connect-proxy'
|
|
- Name: Service-1
|
|
- Name: Service-1-proxy
|
|
Kind: 'connect-proxy'
|
|
- Name: Service-2
|
|
- Name: Service-2-proxy
|
|
Kind: 'connect-proxy'
|
|
- Name: Service-3
|
|
- Name: Service-3-proxy
|
|
Kind: 'connect-proxy'
|
|
- Name: Service-4
|
|
- Name: Service-4-proxy
|
|
Kind: 'connect-proxy'
|
|
- Name: Service-5
|
|
- Name: Service-5-proxy
|
|
Kind: 'connect-proxy'
|
|
---
|
|
|
|
When I visit the services page for yaml
|
|
---
|
|
dc: dc-1
|
|
---
|
|
Then the url should be /dc-1/services
|
|
Then I see 6 service models
|
|
# In order to test this properly you have to click around a few times
|
|
# between services and nspace management
|
|
When I click nspace on the navigation
|
|
And I click manageNspaces on the navigation
|
|
Then the url should be /dc-1/namespaces
|
|
And I don't see manageNspacesIsVisible on the navigation
|
|
When I click services on the navigation
|
|
Then the url should be /dc-1/services
|
|
When I click nspace on the navigation
|
|
And I click manageNspaces on the navigation
|
|
Then the url should be /dc-1/namespaces
|
|
And I don't see manageNspacesIsVisible on the navigation
|