2022-09-01 15:37:37 +00:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupTest } from 'ember-qunit';
|
2020-10-05 17:07:35 +00:00
|
|
|
import repo from 'consul-ui/tests/helpers/repo';
|
|
|
|
|
2022-09-01 15:37:37 +00:00
|
|
|
module('Integration | Service | topology', function(hooks) {
|
|
|
|
setupTest(hooks);
|
|
|
|
const dc = 'dc-1';
|
|
|
|
const id = 'slug';
|
|
|
|
const kind = '';
|
|
|
|
test('findBySlug returns the correct data for item endpoint', function(assert) {
|
|
|
|
return repo(
|
|
|
|
'Service',
|
|
|
|
'findBySlug',
|
|
|
|
this.owner.lookup('service:repository/topology'),
|
|
|
|
function retrieveStub(stub) {
|
|
|
|
return stub(`/v1/internal/ui/service-topology/${id}?dc=${dc}&${kind}`, {
|
|
|
|
CONSUL_DISCOVERY_CHAIN_COUNT: 1,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function performTest(service) {
|
|
|
|
return service.findBySlug({ id, kind, dc });
|
|
|
|
},
|
|
|
|
function performAssertion(actual, expected) {
|
|
|
|
const result = expected(function(payload) {
|
|
|
|
return Object.assign(
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
Datacenter: dc,
|
|
|
|
uid: `["default","default","${dc}","${id}"]`,
|
|
|
|
meta: {
|
|
|
|
cacheControl: undefined,
|
|
|
|
cursor: undefined,
|
|
|
|
},
|
2020-10-05 17:07:35 +00:00
|
|
|
},
|
2022-09-01 15:37:37 +00:00
|
|
|
payload
|
|
|
|
);
|
|
|
|
});
|
|
|
|
assert.equal(actual.Datacenter, result.Datacenter);
|
|
|
|
assert.equal(actual.uid, result.uid);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2020-10-05 17:07:35 +00:00
|
|
|
});
|