2018-10-19 15:17:02 +00:00
|
|
|
import { moduleFor, test, skip } from 'ember-qunit';
|
|
|
|
import repo from 'consul-ui/tests/helpers/repo';
|
2019-05-01 18:09:29 +00:00
|
|
|
import { createPolicies } from 'consul-ui/tests/helpers/normalizers';
|
|
|
|
|
2018-10-26 17:40:51 +00:00
|
|
|
const NAME = 'token';
|
|
|
|
moduleFor(`service:repository/${NAME}`, `Integration | Service | ${NAME}`, {
|
2018-10-19 15:17:02 +00:00
|
|
|
// Specify the other units that are required for this test.
|
2018-10-26 17:40:51 +00:00
|
|
|
integration: true,
|
2018-10-19 15:17:02 +00:00
|
|
|
});
|
|
|
|
const dc = 'dc-1';
|
|
|
|
const id = 'token-id';
|
|
|
|
test('findByDatacenter returns the correct data for list endpoint', function(assert) {
|
|
|
|
return repo(
|
|
|
|
'Token',
|
|
|
|
'findAllByDatacenter',
|
|
|
|
this.subject(),
|
|
|
|
function retrieveStub(stub) {
|
|
|
|
return stub(`/v1/acl/tokens?dc=${dc}`, {
|
|
|
|
CONSUL_TOKEN_COUNT: '100',
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function performTest(service) {
|
|
|
|
return service.findAllByDatacenter(dc);
|
|
|
|
},
|
|
|
|
function performAssertion(actual, expected) {
|
|
|
|
assert.deepEqual(
|
|
|
|
actual,
|
|
|
|
expected(function(payload) {
|
2019-05-01 18:09:29 +00:00
|
|
|
return payload.map(function(item) {
|
|
|
|
return Object.assign({}, item, {
|
2018-10-19 15:17:02 +00:00
|
|
|
Datacenter: dc,
|
|
|
|
CreateTime: new Date(item.CreateTime),
|
|
|
|
uid: `["${dc}","${item.AccessorID}"]`,
|
2019-05-01 18:09:29 +00:00
|
|
|
Policies: createPolicies(item),
|
|
|
|
});
|
|
|
|
});
|
2018-10-19 15:17:02 +00:00
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
test('findBySlug returns the correct data for item endpoint', function(assert) {
|
|
|
|
return repo(
|
|
|
|
'Token',
|
|
|
|
'findBySlug',
|
|
|
|
this.subject(),
|
|
|
|
function retrieveStub(stub) {
|
|
|
|
return stub(`/v1/acl/token/${id}?dc=${dc}`);
|
|
|
|
},
|
|
|
|
function performTest(service) {
|
|
|
|
return service.findBySlug(id, dc);
|
|
|
|
},
|
|
|
|
function performAssertion(actual, expected) {
|
|
|
|
assert.deepEqual(
|
|
|
|
actual,
|
|
|
|
expected(function(payload) {
|
|
|
|
const item = payload;
|
|
|
|
return Object.assign({}, item, {
|
|
|
|
Datacenter: dc,
|
|
|
|
CreateTime: new Date(item.CreateTime),
|
|
|
|
uid: `["${dc}","${item.AccessorID}"]`,
|
2019-05-01 18:09:29 +00:00
|
|
|
Policies: createPolicies(item),
|
2018-10-19 15:17:02 +00:00
|
|
|
});
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
skip('clone returns the correct data for the clone endpoint');
|