From 4d4226ee3808281734ccb5bb1e52607363f3dd53 Mon Sep 17 00:00:00 2001
From: Kenia <19161242+kaxcode@users.noreply.github.com>
Date: Tue, 10 Nov 2020 11:31:47 -0500
Subject: [PATCH] ui: Delete Proxy Info tab (#9141)
* Remove Proxy Info and create Upstreams and Exposed Paths tabs
* Update routes formatting
* Update typo for Expose.Checks
* Remove, update, and add tests
* Make consul-upstream-instance-list into a glimmer component
* Create styling for upstream-instance-list component
---
.../consul/upstream-instance/list/index.hbs | 24 +-
.../consul/upstream-instance/list/index.js | 5 -
.../consul/upstream-instance/list/index.scss | 6 +
ui/packages/consul-ui/app/router.js | 3 -
.../dc/services/instance/exposedpaths.js | 14 --
.../app/routes/dc/services/instance/proxy.js | 16 --
.../routes/dc/services/instance/upstreams.js | 11 -
.../app/styles/components/composite-row.scss | 4 +-
ui/packages/consul-ui/app/styles/layout.scss | 3 +-
.../app/templates/dc/services/instance.hbs | 6 +-
.../dc/services/instance/exposedpaths.hbs | 10 +
.../dc/services/instance/healthchecks.hbs | 5 +-
.../templates/dc/services/instance/proxy.hbs | 25 --
.../dc/services/instance/upstreams.hbs | 7 +
.../services/instances/exposed-paths.feature | 42 ++++
.../dc/services/instances/proxyinfo.feature | 214 ------------------
.../dc/services/instances/show.feature | 2 +-
.../dc/services/instances/upstreams.feature | 42 ++++
...xyinfo-steps.js => exposed-paths-steps.js} | 0
.../dc/services/instances/upstreams-steps.js | 10 +
.../tests/pages/dc/services/instance.js | 2 +-
21 files changed, 143 insertions(+), 308 deletions(-)
delete mode 100644 ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.js
create mode 100644 ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.scss
delete mode 100644 ui/packages/consul-ui/app/routes/dc/services/instance/proxy.js
create mode 100644 ui/packages/consul-ui/app/templates/dc/services/instance/exposedpaths.hbs
delete mode 100644 ui/packages/consul-ui/app/templates/dc/services/instance/proxy.hbs
create mode 100644 ui/packages/consul-ui/app/templates/dc/services/instance/upstreams.hbs
create mode 100644 ui/packages/consul-ui/tests/acceptance/dc/services/instances/exposed-paths.feature
delete mode 100644 ui/packages/consul-ui/tests/acceptance/dc/services/instances/proxyinfo.feature
create mode 100644 ui/packages/consul-ui/tests/acceptance/dc/services/instances/upstreams.feature
rename ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/{proxyinfo-steps.js => exposed-paths-steps.js} (100%)
create mode 100644 ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/upstreams-steps.js
diff --git a/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.hbs b/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.hbs
index a72bd79c0..0b90b4312 100644
--- a/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.hbs
+++ b/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.hbs
@@ -1,5 +1,5 @@
-
-{{#each items as |item|}}
+
+{{#each @items as |item|}}
-
diff --git a/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.js b/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.js
deleted file mode 100644
index 479865264..000000000
--- a/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import Component from '@ember/component';
-
-export default Component.extend({
- tagName: '',
-});
diff --git a/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.scss b/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.scss
new file mode 100644
index 000000000..983f72b9c
--- /dev/null
+++ b/ui/packages/consul-ui/app/components/consul/upstream-instance/list/index.scss
@@ -0,0 +1,6 @@
+.consul-upstream-instance-list > li {
+ @extend %composite-row;
+}
+.consul-upstream-instance-list > ul {
+ border-top: 1px solid $gray-200;
+}
\ No newline at end of file
diff --git a/ui/packages/consul-ui/app/router.js b/ui/packages/consul-ui/app/router.js
index c90e50fe1..25bd36bfd 100644
--- a/ui/packages/consul-ui/app/router.js
+++ b/ui/packages/consul-ui/app/router.js
@@ -46,9 +46,6 @@ export const routes = {
healthchecks: {
_options: { path: '/health-checks' },
},
- proxy: {
- _options: { path: '/proxy' },
- },
upstreams: {
_options: { path: '/upstreams' },
},
diff --git a/ui/packages/consul-ui/app/routes/dc/services/instance/exposedpaths.js b/ui/packages/consul-ui/app/routes/dc/services/instance/exposedpaths.js
index 1fcd436c4..e0ae7969e 100644
--- a/ui/packages/consul-ui/app/routes/dc/services/instance/exposedpaths.js
+++ b/ui/packages/consul-ui/app/routes/dc/services/instance/exposedpaths.js
@@ -1,5 +1,4 @@
import Route from 'consul-ui/routing/route';
-import { get } from '@ember/object';
export default class ExposedpathsRoute extends Route {
model() {
@@ -10,19 +9,6 @@ export default class ExposedpathsRoute extends Route {
return this.modelFor(parent);
}
- afterModel(model, transition) {
- if (
- get(model, 'item.Kind') !== 'connect-proxy' ||
- get(model, 'item.Proxy.Expose.Paths.length') < 1
- ) {
- const parent = this.routeName
- .split('.')
- .slice(0, -1)
- .join('.');
- this.replaceWith(parent);
- }
- }
-
setupController(controller, model) {
super.setupController(...arguments);
controller.setProperties(model);
diff --git a/ui/packages/consul-ui/app/routes/dc/services/instance/proxy.js b/ui/packages/consul-ui/app/routes/dc/services/instance/proxy.js
deleted file mode 100644
index bfe639d63..000000000
--- a/ui/packages/consul-ui/app/routes/dc/services/instance/proxy.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import Route from 'consul-ui/routing/route';
-
-export default class ProxyRoute extends Route {
- model() {
- const parent = this.routeName
- .split('.')
- .slice(0, -1)
- .join('.');
- return this.modelFor(parent);
- }
-
- setupController(controller, model) {
- super.setupController(...arguments);
- controller.setProperties(model);
- }
-}
diff --git a/ui/packages/consul-ui/app/routes/dc/services/instance/upstreams.js b/ui/packages/consul-ui/app/routes/dc/services/instance/upstreams.js
index cde1b0839..babaa3071 100644
--- a/ui/packages/consul-ui/app/routes/dc/services/instance/upstreams.js
+++ b/ui/packages/consul-ui/app/routes/dc/services/instance/upstreams.js
@@ -1,5 +1,4 @@
import Route from 'consul-ui/routing/route';
-import { get } from '@ember/object';
export default class UpstreamsRoute extends Route {
model() {
@@ -10,16 +9,6 @@ export default class UpstreamsRoute extends Route {
return this.modelFor(parent);
}
- afterModel(model, transition) {
- if (get(model, 'item.Service.Kind') !== 'connect-proxy') {
- const parent = this.routeName
- .split('.')
- .slice(0, -1)
- .join('.');
- this.replaceWith(parent);
- }
- }
-
setupController(controller, model) {
super.setupController(...arguments);
controller.setProperties(model);
diff --git a/ui/packages/consul-ui/app/styles/components/composite-row.scss b/ui/packages/consul-ui/app/styles/components/composite-row.scss
index 115571cad..ab929c61c 100644
--- a/ui/packages/consul-ui/app/styles/components/composite-row.scss
+++ b/ui/packages/consul-ui/app/styles/components/composite-row.scss
@@ -1,6 +1,6 @@
@import './composite-row/index';
-.proxy-upstreams > ul > li,
+.consul-upstream-instance-list > li,
.list-collection > ul > li:not(:first-child) {
@extend %composite-row;
}
@@ -34,7 +34,7 @@
overflow-x: visible !important;
}
.consul-intention-permission-list > ul,
-.proxy-upstreams > ul {
+.consul-upstream-instance-list > ul {
border-top: 1px solid $gray-200;
}
.consul-service-instance-list .port dt,
diff --git a/ui/packages/consul-ui/app/styles/layout.scss b/ui/packages/consul-ui/app/styles/layout.scss
index 6a38cf79f..01a8a0347 100644
--- a/ui/packages/consul-ui/app/styles/layout.scss
+++ b/ui/packages/consul-ui/app/styles/layout.scss
@@ -12,10 +12,11 @@ html[data-route$='edit'] .app-view > header + div > *:first-child {
%app-view-content [role='tabpanel'] > .filter-bar + p {
margin-top: 1.25em;
}
-/* turn off top borders for things flush up to a filter bar */
+.consul-upstream-instance-list,
.consul-lock-session-list {
margin-top: 0 !important;
}
+/* turn off top borders for things flush up to a filter bar */
html[data-route='dc.services.index'] .consul-service-list ul,
.consul-nspace-list ul,
.consul-service-instance-list ul,
diff --git a/ui/packages/consul-ui/app/templates/dc/services/instance.hbs b/ui/packages/consul-ui/app/templates/dc/services/instance.hbs
index aaa34c746..2bf7bb194 100644
--- a/ui/packages/consul-ui/app/templates/dc/services/instance.hbs
+++ b/ui/packages/consul-ui/app/templates/dc/services/instance.hbs
@@ -47,8 +47,10 @@
(hash label="Addresses" href=(href-to "dc.services.instance.addresses") selected=(is-href "dc.services.instance.addresses")) ""
)
(if proxy
- (hash label="Proxy Info" href=(href-to "dc.services.instance.proxy") selected=(is-href "dc.services.instance.proxy"))
-
+ (hash label="Upstreams" href=(href-to "dc.services.instance.upstreams") selected=(is-href "dc.services.instance.upstreams"))
+)
+(if proxy
+ (hash label="Exposed Paths" href=(href-to "dc.services.instance.exposedpaths") selected=(is-href "dc.services.instance.exposedpaths"))
)
(hash label="Tags & Meta" href=(href-to "dc.services.instance.metadata") selected=(is-href "dc.services.instance.metadata"))
)
diff --git a/ui/packages/consul-ui/app/templates/dc/services/instance/exposedpaths.hbs b/ui/packages/consul-ui/app/templates/dc/services/instance/exposedpaths.hbs
new file mode 100644
index 000000000..34901d8c7
--- /dev/null
+++ b/ui/packages/consul-ui/app/templates/dc/services/instance/exposedpaths.hbs
@@ -0,0 +1,10 @@
+
+
+ {{#if (gt proxy.Service.Proxy.Expose.Paths.length 0)}}
+
+ The following list shows individual HTTP paths exposed through Envoy for external services like Prometheus. Read more about this in our documentation.
+
+
+ {{/if}}
+
+
\ No newline at end of file
diff --git a/ui/packages/consul-ui/app/templates/dc/services/instance/healthchecks.hbs b/ui/packages/consul-ui/app/templates/dc/services/instance/healthchecks.hbs
index 6264daa55..a76da7243 100644
--- a/ui/packages/consul-ui/app/templates/dc/services/instance/healthchecks.hbs
+++ b/ui/packages/consul-ui/app/templates/dc/services/instance/healthchecks.hbs
@@ -2,7 +2,10 @@
{{#if (gt item.Checks.length 0) }}
{{else}}
diff --git a/ui/packages/consul-ui/app/templates/dc/services/instance/proxy.hbs b/ui/packages/consul-ui/app/templates/dc/services/instance/proxy.hbs
deleted file mode 100644
index aab014b37..000000000
--- a/ui/packages/consul-ui/app/templates/dc/services/instance/proxy.hbs
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
- {{#if (gt proxy.Service.Proxy.Upstreams.length 0)}}
-
- {{/if}}
- {{#if (gt proxy.Service.Proxy.Expose.Paths.length 0)}}
-
- Exposed paths
-
- The following list shows individual HTTP paths exposed through Envoy for external services like Prometheus. Read more about this in our documentation.
-
-
-
- {{/if}}
- {{#if (or (gt proxy.ServiceChecks.length 0) (gt proxy.NodeChecks.length 0))}}
-
- {{/if}}
-
-
\ No newline at end of file
diff --git a/ui/packages/consul-ui/app/templates/dc/services/instance/upstreams.hbs b/ui/packages/consul-ui/app/templates/dc/services/instance/upstreams.hbs
new file mode 100644
index 000000000..df4f8f78b
--- /dev/null
+++ b/ui/packages/consul-ui/app/templates/dc/services/instance/upstreams.hbs
@@ -0,0 +1,7 @@
+
+
+ {{#if (gt proxy.Service.Proxy.Upstreams.length 0)}}
+
+ {{/if}}
+
+
\ No newline at end of file
diff --git a/ui/packages/consul-ui/tests/acceptance/dc/services/instances/exposed-paths.feature b/ui/packages/consul-ui/tests/acceptance/dc/services/instances/exposed-paths.feature
new file mode 100644
index 000000000..e688deae0
--- /dev/null
+++ b/ui/packages/consul-ui/tests/acceptance/dc/services/instances/exposed-paths.feature
@@ -0,0 +1,42 @@
+@setupApplicationTest
+Feature: dc / services / instances / Exposed Paths
+ Background:
+ Given 1 datacenter model with the value "dc1"
+ Scenario: A Service instance without a Proxy does not display Exposed Paths tab
+ Given 1 proxy model from yaml
+ ---
+ - ServiceProxy:
+ DestinationServiceName: service-1
+ DestinationServiceID: ~
+ ---
+ When I visit the instance page for yaml
+ ---
+ dc: dc1
+ service: service-0
+ node: node-0
+ id: service-0-with-id
+ ---
+ Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
+ And I don't see exposedPaths on the tabs
+ Scenario: A Service instance with a Proxy displays Exposed Paths tab
+ Given 1 proxy model from yaml
+ ---
+ - ServiceProxy:
+ DestinationServiceName: service-0
+ DestinationServiceID: ~
+ ---
+ When I visit the instance page for yaml
+ ---
+ dc: dc1
+ service: service-0
+ node: node-0
+ id: service-0-with-id
+ ---
+ Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
+ And I see exposedPaths on the tabs
+
+ When I click exposedPaths on the tabs
+
+ Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/exposed-paths
+ And I see exposedPathsIsSelected on the tabs
+
diff --git a/ui/packages/consul-ui/tests/acceptance/dc/services/instances/proxyinfo.feature b/ui/packages/consul-ui/tests/acceptance/dc/services/instances/proxyinfo.feature
deleted file mode 100644
index 300f4c74e..000000000
--- a/ui/packages/consul-ui/tests/acceptance/dc/services/instances/proxyinfo.feature
+++ /dev/null
@@ -1,214 +0,0 @@
-@setupApplicationTest
-Feature: dc / services / instances / proxyinfo: Proxy Info tab
- Background:
- Given 1 datacenter model with the value "dc1"
- Scenario: A Service instance without a Proxy does not display Proxy Info tab
- Given 1 proxy model from yaml
- ---
- - ServiceProxy:
- DestinationServiceName: service-1
- DestinationServiceID: ~
- ---
- When I visit the instance page for yaml
- ---
- dc: dc1
- service: service-0
- node: node-0
- id: service-0-with-id
- ---
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
- And I don't see proxyInfo on the tabs
- Scenario: A Service instance with a Proxy displays Proxy Info tab
- When I visit the instance page for yaml
- ---
- dc: dc1
- service: service-0
- node: node-0
- id: service-0-with-id
- ---
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
- And I see proxyInfo on the tabs
-
- When I click proxyInfo on the tabs
-
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/proxy
- And I see proxyInfoIsSelected on the tabs
- Scenario: A Proxy with health checks, upstreams, and exposed paths displays all info
- Given 2 instance models from yaml
- ---
- - Service:
- ID: service-0-with-id
- Kind: consul
- Node:
- Node: node-0
- - Service:
- ID: service-0-with-id-proxy
- Kind: connect-proxy
- Proxy:
- DestinationServiceName: service-0
- Expose:
- Checks: false
- Paths:
- - Path: /grpc-metrics
- Protocol: grpc
- LocalPathPort: 8081
- ListenerPort: 8080
- - Path: /http-metrics
- Protocol: http
- LocalPathPort: 8082
- ListenerPort: 8083
- - Path: /http-metrics-2
- Protocol: http
- LocalPathPort: 8083
- ListenerPort: 8084
- Upstreams:
- - DestinationType: service
- DestinationName: service-2
- DestinationNamespace: default
- LocalBindAddress: 127.0.0.1
- LocalBindPort: 1111
- - DestinationType: prepared_query
- DestinationName: service-3
- LocalBindAddress: 127.0.0.1
- LocalBindPort: 1112
- Node:
- Node: node-0
- Checks:
- - Name: Service check
- ServiceID: service-0-proxy
- Output: Output of check
- Status: passing
- - Name: Service check
- ServiceID: service-0-proxy
- Output: Output of check
- Status: warning
- - Name: Service check
- Type: http
- ServiceID: service-0-proxy
- Output: Output of check
- Status: critical
- - Name: Node check
- ServiceID: ""
- Output: Output of check
- Status: passing
- - Name: Node check
- ServiceID: ""
- Output: Output of check
- Status: warning
- - Name: Node check
- ServiceID: ""
- Output: Output of check
- Status: critical
- ---
- When I visit the instance page for yaml
- ---
- dc: dc1
- service: service-0
- node: node-0
- id: service-0-with-id
- ---
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
- And I see proxyInfo on the tabs
-
- When I click proxyInfo on the tabs
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/proxy
-
- And I see 6 of the proxyChecks object
-
- And I see 2 of the upstreams object
- And I see name on the upstreams like yaml
- ---
- - service-2
- - service-3
- ---
- Scenario: A Proxy without health checks does not display Proxy Health section
- And 2 instance models from yaml
- ---
- - Service:
- ID: service-0-with-id
- Kind: consul
- Node:
- Node: node-0
- - Service:
- ID: service-0-with-id-proxy
- Kind: connect-proxy
- Node:
- Node: node-0
- Checks: []
- ---
- When I visit the instance page for yaml
- ---
- dc: dc1
- service: service-0
- node: node-0
- id: service-0-with-id
- ---
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
- And I see proxyInfo on the tabs
-
- When I click proxyInfo on the tabs
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/proxy
- And I see 0 of the proxyChecks object
- Scenario: A Proxy without upstreams does not display Upstreams section
- And 2 instance models from yaml
- ---
- - Service:
- ID: service-0-with-id
- Kind: consul
- Node:
- Node: node-0
- - Service:
- ID: service-0-with-id-proxy
- Kind: connect-proxy
- Proxy:
- Upstreams: []
- Node:
- Node: node-0
- ---
- When I visit the instance page for yaml
- ---
- dc: dc1
- service: service-0
- node: node-0
- id: service-0-with-id
- ---
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
- And I see proxyInfo on the tabs
-
- When I click proxyInfo on the tabs
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/proxy
- And I see 0 of the upstreams object
- Scenario: A Proxy without exposed path does not display Exposed Paths section
- And 2 instance models from yaml
- ---
- - Service:
- ID: service-0-with-id
- Kind: consul
- Node:
- Node: node-0
- - Service:
- ID: service-0-with-id-proxy
- Kind: connect-proxy
- Proxy:
- Expose:
- Checks: false
- Paths: []
- Node:
- Node: node-0
- ---
- When I visit the instance page for yaml
- ---
- dc: dc1
- service: service-0
- node: node-0
- id: service-0-with-id
- ---
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
- And I see proxyInfo on the tabs
-
- When I click proxyInfo on the tabs
- Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/proxy
- And I see 0 of the exposedPaths object
-
-
-
diff --git a/ui/packages/consul-ui/tests/acceptance/dc/services/instances/show.feature b/ui/packages/consul-ui/tests/acceptance/dc/services/instances/show.feature
index bb45b5a0b..fbe18e36e 100644
--- a/ui/packages/consul-ui/tests/acceptance/dc/services/instances/show.feature
+++ b/ui/packages/consul-ui/tests/acceptance/dc/services/instances/show.feature
@@ -65,7 +65,7 @@ Feature: dc / services / instances / show: Show Service Instance
And I don't see upstreams on the tabs
And I see healthChecksIsSelected on the tabs
- And I see 6 of the checks object
+ And I see 7 of the checks object
When I click tags&Meta on the tabs
And I see tags&MetaIsSelected on the tabs
diff --git a/ui/packages/consul-ui/tests/acceptance/dc/services/instances/upstreams.feature b/ui/packages/consul-ui/tests/acceptance/dc/services/instances/upstreams.feature
new file mode 100644
index 000000000..ba86f6992
--- /dev/null
+++ b/ui/packages/consul-ui/tests/acceptance/dc/services/instances/upstreams.feature
@@ -0,0 +1,42 @@
+@setupApplicationTest
+Feature: dc / services / instances / Upstreams
+ Background:
+ Given 1 datacenter model with the value "dc1"
+ Scenario: A Service instance without a Proxy does not display Upstreams tab
+ Given 1 proxy model from yaml
+ ---
+ - ServiceProxy:
+ DestinationServiceName: service-1
+ DestinationServiceID: ~
+ ---
+ When I visit the instance page for yaml
+ ---
+ dc: dc1
+ service: service-0
+ node: node-0
+ id: service-0-with-id
+ ---
+ Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
+ And I don't see upstreams on the tabs
+ Scenario: A Service instance with a Proxy displays Upstreams tab
+ Given 1 proxy model from yaml
+ ---
+ - ServiceProxy:
+ DestinationServiceName: service-0
+ DestinationServiceID: ~
+ ---
+ When I visit the instance page for yaml
+ ---
+ dc: dc1
+ service: service-0
+ node: node-0
+ id: service-0-with-id
+ ---
+ Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/health-checks
+ And I see upstreams on the tabs
+
+ When I click upstreams on the tabs
+
+ Then the url should be /dc1/services/service-0/instances/node-0/service-0-with-id/upstreams
+ And I see upstreamsIsSelected on the tabs
+
diff --git a/ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/proxyinfo-steps.js b/ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/exposed-paths-steps.js
similarity index 100%
rename from ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/proxyinfo-steps.js
rename to ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/exposed-paths-steps.js
diff --git a/ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/upstreams-steps.js b/ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/upstreams-steps.js
new file mode 100644
index 000000000..3231912b9
--- /dev/null
+++ b/ui/packages/consul-ui/tests/acceptance/steps/dc/services/instances/upstreams-steps.js
@@ -0,0 +1,10 @@
+import steps from '../../../steps';
+
+// step definitions that are shared between features should be moved to the
+// tests/acceptance/steps/steps.js file
+
+export default function(assert) {
+ return steps(assert).then('I should find a file', function() {
+ assert.ok(true, this.step);
+ });
+}
diff --git a/ui/packages/consul-ui/tests/pages/dc/services/instance.js b/ui/packages/consul-ui/tests/pages/dc/services/instance.js
index 414346437..54c5e1992 100644
--- a/ui/packages/consul-ui/tests/pages/dc/services/instance.js
+++ b/ui/packages/consul-ui/tests/pages/dc/services/instance.js
@@ -4,7 +4,7 @@ export default function(visitable, attribute, collection, text, tabs) {
externalSource: attribute('data-test-external-source', '[data-test-external-source]', {
scope: '.title',
}),
- tabs: tabs('tab', ['health-checks', 'proxy-info', 'addresses', 'tags-&-meta']),
+ tabs: tabs('tab', ['health-checks', 'upstreams', 'exposed-paths', 'addresses', 'tags-&-meta']),
checks: collection('[data-test-checks] li'),
upstreams: collection('[data-test-proxy-upstreams] > li', {
name: text('[data-test-destination-name]'),