65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
|
import { module, test, skip } 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';
|
||
|
|
||
|
module('Integration | Serializer | partition', function(hooks) {
|
||
|
setupTest(hooks);
|
||
|
test('respondForQuery returns the correct data for list endpoint', function(assert) {
|
||
|
const serializer = this.owner.lookup('serializer:partition');
|
||
|
const dc = 'dc-1';
|
||
|
const request = {
|
||
|
url: `/v1/partitions?dc=${dc}`,
|
||
|
};
|
||
|
return get(request.url).then(function(payload) {
|
||
|
const expected = payload.Partitions.map(item =>
|
||
|
Object.assign({}, item, {
|
||
|
Datacenter: dc,
|
||
|
Namespace: '',
|
||
|
Partition: item.Name,
|
||
|
uid: `["${item.Name}","","${dc}","${item.Name}"]`,
|
||
|
})
|
||
|
);
|
||
|
const actual = serializer.respondForQuery(
|
||
|
function(cb) {
|
||
|
const headers = {};
|
||
|
const body = payload;
|
||
|
return cb(headers, body);
|
||
|
},
|
||
|
{
|
||
|
dc: dc,
|
||
|
}
|
||
|
);
|
||
|
assert.deepEqual(actual, expected);
|
||
|
});
|
||
|
});
|
||
|
skip('respondForQueryRecord returns the correct data for item endpoint', function(assert) {
|
||
|
const serializer = this.owner.lookup('serializer:partition');
|
||
|
const dc = 'dc-1';
|
||
|
const id = 'slug';
|
||
|
const request = {
|
||
|
url: `/v1/partition/${id}?dc=${dc}`,
|
||
|
};
|
||
|
return get(request.url).then(function(payload) {
|
||
|
const expected = {
|
||
|
Datacenter: dc,
|
||
|
[META]: {},
|
||
|
uid: `["${dc}","${id}"]`,
|
||
|
};
|
||
|
const actual = serializer.respondForQueryRecord(
|
||
|
function(cb) {
|
||
|
const headers = {};
|
||
|
const body = payload;
|
||
|
return cb(headers, body);
|
||
|
},
|
||
|
{
|
||
|
dc: dc,
|
||
|
id: id,
|
||
|
}
|
||
|
);
|
||
|
assert.deepEqual(actual, expected);
|
||
|
});
|
||
|
});
|
||
|
});
|