2019-05-01 18:09:29 +00:00
|
|
|
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
import repo from 'consul-ui/tests/helpers/repo';
|
|
|
|
import { createPolicies } from 'consul-ui/tests/helpers/normalizers';
|
|
|
|
|
|
|
|
const NAME = 'role';
|
|
|
|
moduleFor(`service:repository/${NAME}`, `Integration | Service | ${NAME}`, {
|
|
|
|
// Specify the other units that are required for this test.
|
|
|
|
integration: true,
|
|
|
|
});
|
|
|
|
const dc = 'dc-1';
|
|
|
|
const id = 'role-name';
|
2019-12-17 18:47:37 +00:00
|
|
|
const undefinedNspace = 'default';
|
|
|
|
[undefinedNspace, 'team-1', undefined].forEach(nspace => {
|
|
|
|
test(`findByDatacenter returns the correct data for list endpoint when nspace is ${nspace}`, function(assert) {
|
|
|
|
return repo(
|
|
|
|
'Role',
|
|
|
|
'findAllByDatacenter',
|
|
|
|
this.subject(),
|
|
|
|
function retrieveStub(stub) {
|
|
|
|
return stub(
|
|
|
|
`/v1/acl/roles?dc=${dc}${typeof nspace !== 'undefined' ? `&ns=${nspace}` : ``}`,
|
|
|
|
{
|
|
|
|
CONSUL_ROLE_COUNT: '100',
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
function performTest(service) {
|
|
|
|
return service.findAllByDatacenter(dc, nspace || undefinedNspace);
|
|
|
|
},
|
|
|
|
function performAssertion(actual, expected) {
|
|
|
|
assert.deepEqual(
|
|
|
|
actual,
|
|
|
|
expected(function(payload) {
|
|
|
|
return payload.map(item =>
|
|
|
|
Object.assign({}, item, {
|
|
|
|
Datacenter: dc,
|
|
|
|
Namespace: item.Namespace || undefinedNspace,
|
|
|
|
uid: `["${item.Namespace || undefinedNspace}","${dc}","${item.ID}"]`,
|
|
|
|
Policies: createPolicies(item),
|
|
|
|
})
|
|
|
|
);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
test(`findBySlug returns the correct data for item endpoint when the nspace is ${nspace}`, function(assert) {
|
|
|
|
return repo(
|
|
|
|
'Role',
|
|
|
|
'findBySlug',
|
|
|
|
this.subject(),
|
|
|
|
function retrieveStub(stub) {
|
|
|
|
return stub(
|
|
|
|
`/v1/acl/role/${id}?dc=${dc}${typeof nspace !== 'undefined' ? `&ns=${nspace}` : ``}`
|
|
|
|
);
|
|
|
|
},
|
|
|
|
function performTest(service) {
|
|
|
|
return service.findBySlug(id, dc, nspace || undefinedNspace);
|
|
|
|
},
|
|
|
|
function performAssertion(actual, expected) {
|
|
|
|
assert.deepEqual(
|
|
|
|
actual,
|
|
|
|
expected(function(payload) {
|
|
|
|
const item = payload;
|
|
|
|
return Object.assign({}, item, {
|
2019-05-01 18:09:29 +00:00
|
|
|
Datacenter: dc,
|
2019-12-17 18:47:37 +00:00
|
|
|
Namespace: item.Namespace || undefinedNspace,
|
|
|
|
uid: `["${item.Namespace || undefinedNspace}","${dc}","${item.ID}"]`,
|
2019-05-01 18:09:29 +00:00
|
|
|
Policies: createPolicies(item),
|
2019-12-17 18:47:37 +00:00
|
|
|
});
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2019-05-01 18:09:29 +00:00
|
|
|
});
|