ui: Tests Bugfix. Reflect extra json property `ExternalSources` in mocks (#4662)

The mocks where using randomly generated `ExternalSources` this change
makes sure they are fixed so we can reliably test the values. No change
to actual UI code
This commit is contained in:
John Cowen 2018-09-13 09:09:59 +01:00 committed by GitHub
parent 028875a732
commit 5bb38f6ab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 11 deletions

View File

@ -2,29 +2,31 @@
Feature: dc / services: List Services Feature: dc / services: List Services
Scenario: Scenario:
Given 1 datacenter model with the value "dc-1" Given 1 datacenter model with the value "dc-1"
And 5 service models from yaml And 6 service models from yaml
--- ---
- Name: Service 1 - Name: Service 1
Meta: ExternalSources:
external-source: consul - consul
- Name: Service 2 - Name: Service 2
Meta: ExternalSources:
external-source: nomad - nomad
- Name: Service 3 - Name: Service 3
Meta: ExternalSources:
external-source: terraform - terraform
- Name: Service 4 - Name: Service 4
Meta: ExternalSources:
external-source: kubernetes - kubernetes
- Name: Service 5 - Name: Service 5
Meta: ~ ExternalSources: []
- Name: Service 6
ExternalSources: ~
--- ---
When I visit the services page for yaml When I visit the services page for yaml
--- ---
dc: dc-1 dc: dc-1
--- ---
Then the url should be /dc-1/services Then the url should be /dc-1/services
Then I see 5 service models Then I see 6 service models
And I see externalSource on the services like yaml And I see externalSource on the services like yaml
--- ---
- consul - consul
@ -32,5 +34,6 @@ Feature: dc / services: List Services
- terraform - terraform
- kubernetes - kubernetes
- ~ - ~
- ~
--- ---