70 lines
1.8 KiB
JavaScript
70 lines
1.8 KiB
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
import repo from 'consul-ui/tests/helpers/repo';
|
|
import { get } from '@ember/object';
|
|
const NAME = 'session';
|
|
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 = 'node-name';
|
|
const now = new Date().getTime();
|
|
test('findByNode returns the correct data for list endpoint', function(assert) {
|
|
get(this.subject(), 'store').serializerFor(NAME).timestamp = function() {
|
|
return now;
|
|
};
|
|
return repo(
|
|
'Session',
|
|
'findByNode',
|
|
this.subject(),
|
|
function retrieveStub(stub) {
|
|
return stub(`/v1/session/node/${id}?dc=${dc}`, {
|
|
CONSUL_SESSION_COUNT: '100',
|
|
});
|
|
},
|
|
function performTest(service) {
|
|
return service.findByNode(id, dc);
|
|
},
|
|
function performAssertion(actual, expected) {
|
|
assert.deepEqual(
|
|
actual,
|
|
expected(function(payload) {
|
|
return payload.map(item =>
|
|
Object.assign({}, item, {
|
|
SyncTime: now,
|
|
Datacenter: dc,
|
|
uid: `["${dc}","${item.ID}"]`,
|
|
})
|
|
);
|
|
})
|
|
);
|
|
}
|
|
);
|
|
});
|
|
test('findByKey returns the correct data for item endpoint', function(assert) {
|
|
return repo(
|
|
'Session',
|
|
'findByKey',
|
|
this.subject(),
|
|
function(stub) {
|
|
return stub(`/v1/session/info/${id}?dc=${dc}`);
|
|
},
|
|
function(service) {
|
|
return service.findByKey(id, dc);
|
|
},
|
|
function(actual, expected) {
|
|
assert.deepEqual(
|
|
actual,
|
|
expected(function(payload) {
|
|
const item = payload[0];
|
|
return Object.assign({}, item, {
|
|
Datacenter: dc,
|
|
uid: `["${dc}","${item.ID}"]`,
|
|
});
|
|
})
|
|
);
|
|
}
|
|
);
|
|
});
|