mirror of
https://github.com/status-im/consul.git
synced 2025-02-11 05:07:02 +00:00
* Create Topology Tab with foundational layout and styling * Create Toplogy Metrics component with dynamic SVG * Add ember-render-modifiers addon * Implement Topology Metrics comp and fix up styling * Create topology endpoint with tests * Move arrow drawing to index.js file * Add topology to show controller * Fix up conditional wrapper, tabs positioning, links, and styling * Group upstreams by dc and fix up styling * Create service/health-percentage helper * Add health check percentages to upstreams and downstreams * Basic Layout * Upgrade @hashicorp/consul-api-double to v5.2.3 * Renamed endpoint to be service-topology * Refactor styling * Update to only show Topology tab when Connect is enabled * Fix bug and changes from review notes * Remove unused functions that are replaced with SVG markers * Refactor to resuse svg-curve helper * Use the render-template helper for the metrics link * Add topology default null to services show route * Removed unused ID * Fix up tests broken by redirect to /topology
22 lines
757 B
Gherkin
22 lines
757 B
Gherkin
@setupApplicationTest
|
|
Feature: dc / services / show-with-slashes: Show Service that has slashes in its name
|
|
In order to view services that have slashes in their name
|
|
As a user
|
|
I want to view the service in the service listing and click on it to see the service detail
|
|
Scenario: Given a service with slashes in its name
|
|
Given 1 datacenter model with the value "dc1"
|
|
And 1 node model
|
|
And 1 service model from yaml
|
|
---
|
|
- Name: hashicorp/service/service-0
|
|
---
|
|
When I visit the services page for yaml
|
|
---
|
|
dc: dc1
|
|
---
|
|
Then the url should be /dc1/services
|
|
Then I see 1 service model
|
|
And I click service on the services
|
|
Then the url should be /dc1/services/hashicorp%2Fservice%2Fservice-0/topology
|
|
|