c548d94450
* Fix to bottom border not applying to the correct <li> * Create Linked Services tab with styling and tests * Add internal endpoint gateway-services-nodes to the codebase with tests * Upgrade consul-api-double to version 2.15.0
28 lines
955 B
JavaScript
28 lines
955 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Integration | Adapter | gateway', 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:gateway');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `GET /v1/internal/ui/gateway-services-nodes/${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:gateway');
|
|
const client = this.owner.lookup('service:client/http');
|
|
assert.throws(function() {
|
|
adapter.requestForQueryRecord(client.url, {
|
|
dc: dc,
|
|
});
|
|
});
|
|
});
|
|
});
|