9974f32561
* ui: Test Coverage Reporting (#7027) * Serve up the /coverage folder whilst developing * Upgrade ember-cli-api-double now it supports passthrough per url * ui: make env into a service and use it where we need to be injectable * Give http/client a body method so we can use it on its own for testing * Add test helper for testing with and without nspaces enabled * Add two tests, one thay needs nspaces and one that doesn't * Keep cleaning up client/http, whilst figuring out a immutable bug * Convert tests to new return format ([actual, leftovers])
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import getNspaceRunner from 'consul-ui/tests/helpers/get-nspace-runner';
|
|
|
|
const nspaceRunner = getNspaceRunner('discovery-chain');
|
|
module('Integration | Adapter | discovery-chain', function(hooks) {
|
|
setupTest(hooks);
|
|
const dc = 'dc-1';
|
|
const id = 'slug';
|
|
test('requestForQueryRecord returns the correct url/method', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:discovery-chain');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `GET /v1/discovery-chain/${id}?dc=${dc}`;
|
|
const actual = adapter.requestForQueryRecord(client.url, {
|
|
dc: dc,
|
|
id: id,
|
|
});
|
|
assert.equal(actual, expected);
|
|
});
|
|
test("requestForQueryRecord throws if you don't specify an id", function(assert) {
|
|
const adapter = this.owner.lookup('adapter:discovery-chain');
|
|
const client = this.owner.lookup('service:client/http');
|
|
assert.throws(function() {
|
|
adapter.requestForQueryRecord(client.url, {
|
|
dc: dc,
|
|
});
|
|
});
|
|
});
|
|
test('requestForQueryRecord returns the correct body', function(assert) {
|
|
return nspaceRunner(
|
|
(adapter, serializer, client) => {
|
|
return adapter.requestForQueryRecord(client.body, {
|
|
id: id,
|
|
dc: dc,
|
|
ns: 'team-1',
|
|
index: 1,
|
|
});
|
|
},
|
|
{
|
|
index: 1,
|
|
ns: 'team-1',
|
|
},
|
|
{
|
|
index: 1,
|
|
},
|
|
this,
|
|
assert
|
|
);
|
|
});
|
|
});
|