adcea9b605
* Make datacenter queries use query vs findAll like the rest of the app * Make sure we have an element to pass to isInViewport * Make sure href-mut doesn't error even if the currentRoute === null * More post test cleanup and Safari fix (safari requires http:// URLs) * Reverse order of datasource nspace/dc's and add a namespace source * Rearrange routes/templates/controllers to only use HashicorpConsul once * Add datasources and correct token namespace detection/redirection * Remove old dc findAll adapter method * Add more comments around the 'child route/parent controller' vars
22 lines
732 B
JavaScript
22 lines
732 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import { get } from 'consul-ui/tests/helpers/api';
|
|
module('Integration | Serializer | dc', function(hooks) {
|
|
setupTest(hooks);
|
|
test('respondForQuery returns the correct data for list endpoint', function(assert) {
|
|
const serializer = this.owner.lookup('serializer:dc');
|
|
const request = {
|
|
url: `/v1/catalog/datacenters`,
|
|
};
|
|
return get(request.url).then(function(payload) {
|
|
const expected = payload;
|
|
const actual = serializer.respondForQuery(function(cb) {
|
|
const headers = {};
|
|
const body = payload;
|
|
return cb(headers, body);
|
|
});
|
|
assert.deepEqual(actual, expected);
|
|
});
|
|
});
|
|
});
|