111 lines
4.0 KiB
JavaScript
111 lines
4.0 KiB
JavaScript
import { module, test, skip } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import { env } from '../../../env';
|
|
const shouldHaveNspace = function(nspace) {
|
|
return typeof nspace !== 'undefined' && env('CONSUL_NSPACES_ENABLED');
|
|
};
|
|
module('Integration | Adapter | policy', function(hooks) {
|
|
setupTest(hooks);
|
|
skip('urlForTranslateRecord returns the correct url', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:policy');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `GET /v1/acl/policy/translate`;
|
|
const actual = adapter.requestForTranslateRecord(client.id, {});
|
|
assert.equal(actual, expected);
|
|
});
|
|
const dc = 'dc-1';
|
|
const id = 'policy-name';
|
|
const undefinedNspace = 'default';
|
|
[undefinedNspace, 'team-1', undefined].forEach(nspace => {
|
|
test(`requestForQuery returns the correct url/method when nspace is ${nspace}`, function(assert) {
|
|
const adapter = this.owner.lookup('adapter:policy');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `GET /v1/acl/policies?dc=${dc}${
|
|
shouldHaveNspace(nspace) ? `&ns=${nspace}` : ``
|
|
}`;
|
|
let actual = adapter.requestForQuery(client.requestParams.bind(client), {
|
|
dc: dc,
|
|
ns: nspace,
|
|
});
|
|
assert.equal(`${actual.method} ${actual.url}`, expected);
|
|
});
|
|
test(`requestForQueryRecord returns the correct url/method when nspace is ${nspace}`, function(assert) {
|
|
const adapter = this.owner.lookup('adapter:policy');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `GET /v1/acl/policy/${id}?dc=${dc}${
|
|
shouldHaveNspace(nspace) ? `&ns=${nspace}` : ``
|
|
}`;
|
|
let actual = adapter.requestForQueryRecord(client.requestParams.bind(client), {
|
|
dc: dc,
|
|
id: id,
|
|
ns: nspace,
|
|
});
|
|
assert.equal(`${actual.method} ${actual.url}`, expected);
|
|
});
|
|
test(`requestForCreateRecord returns the correct url/method when nspace is ${nspace}`, function(assert) {
|
|
const adapter = this.owner.lookup('adapter:policy');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `PUT /v1/acl/policy?dc=${dc}`;
|
|
const actual = adapter
|
|
.requestForCreateRecord(
|
|
client.url,
|
|
{},
|
|
{
|
|
Datacenter: dc,
|
|
Namespace: nspace,
|
|
}
|
|
)
|
|
.split('\n')
|
|
.shift();
|
|
assert.equal(actual, expected);
|
|
});
|
|
test(`requestForUpdateRecord returns the correct url/method when nspace is ${nspace}`, function(assert) {
|
|
const adapter = this.owner.lookup('adapter:policy');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `PUT /v1/acl/policy/${id}?dc=${dc}`;
|
|
const actual = adapter
|
|
.requestForUpdateRecord(
|
|
client.url,
|
|
{},
|
|
{
|
|
Datacenter: dc,
|
|
ID: id,
|
|
Namespace: nspace,
|
|
}
|
|
)
|
|
.split('\n')
|
|
.shift();
|
|
assert.equal(actual, expected);
|
|
});
|
|
test(`requestForDeleteRecord returns the correct url/method when the nspace is ${nspace}`, function(assert) {
|
|
const adapter = this.owner.lookup('adapter:policy');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `DELETE /v1/acl/policy/${id}?dc=${dc}${
|
|
shouldHaveNspace(nspace) ? `&ns=${nspace}` : ``
|
|
}`;
|
|
const actual = adapter
|
|
.requestForDeleteRecord(
|
|
client.url,
|
|
{},
|
|
{
|
|
Datacenter: dc,
|
|
ID: id,
|
|
Namespace: nspace,
|
|
}
|
|
)
|
|
.split('\n')
|
|
.shift();
|
|
assert.equal(actual, expected);
|
|
});
|
|
});
|
|
test("requestForQueryRecord throws if you don't specify an id", function(assert) {
|
|
const adapter = this.owner.lookup('adapter:policy');
|
|
const client = this.owner.lookup('service:client/http');
|
|
assert.throws(function() {
|
|
adapter.requestForQueryRecord(client.url, {
|
|
dc: dc,
|
|
});
|
|
});
|
|
});
|
|
});
|