mirror of
https://github.com/status-im/consul.git
synced 2025-01-23 20:19:29 +00:00
482426b13e
Adds support for ACL Roles and Service Identities CRUD, along with necessary changes to Tokens, and the CSS improvements required. Also includes refinements/improvements for easier testing of deeply nested components. 1. ember-data adapter/serializer/model triplet for Roles 2. repository, form/validations and searching filter for Roles 3. Moves potentially, repeated, or soon to to repeated functionality into a mixin (mainly for 'many policy' relationships) 4. A few styling tweaks for little edge cases around roles 5. Router additions, Route, Controller and templates for Roles Also see: * UI: ACL Roles cont. plus Service Identities (#5661 and #5720)
46 lines
1.6 KiB
JavaScript
46 lines
1.6 KiB
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import { get } from 'consul-ui/tests/helpers/api';
|
|
import { HEADERS_SYMBOL as META } from 'consul-ui/utils/http/consul';
|
|
|
|
import { createPolicies } from 'consul-ui/tests/helpers/normalizers';
|
|
|
|
module('Integration | Adapter | token | response', function(hooks) {
|
|
setupTest(hooks);
|
|
const dc = 'dc-1';
|
|
const id = 'token-name';
|
|
test('handleResponse returns the correct data for list endpoint', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:token');
|
|
const request = {
|
|
url: `/v1/acl/tokens?dc=${dc}`,
|
|
};
|
|
return get(request.url).then(function(payload) {
|
|
const expected = payload.map(item =>
|
|
Object.assign({}, item, {
|
|
Datacenter: dc,
|
|
uid: `["${dc}","${item.AccessorID}"]`,
|
|
Policies: createPolicies(item),
|
|
})
|
|
);
|
|
const actual = adapter.handleResponse(200, {}, payload, request);
|
|
assert.deepEqual(actual, expected);
|
|
});
|
|
});
|
|
test('handleResponse returns the correct data for item endpoint', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:token');
|
|
const request = {
|
|
url: `/v1/acl/token/${id}?dc=${dc}`,
|
|
};
|
|
return get(request.url).then(function(payload) {
|
|
const expected = Object.assign({}, payload, {
|
|
Datacenter: dc,
|
|
[META]: {},
|
|
uid: `["${dc}","${id}"]`,
|
|
Policies: createPolicies(payload),
|
|
});
|
|
const actual = adapter.handleResponse(200, {}, payload, request);
|
|
assert.deepEqual(actual, expected);
|
|
});
|
|
});
|
|
});
|