128 lines
4.5 KiB
JavaScript
128 lines
4.5 KiB
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import getNspaceRunner from 'consul-ui/tests/helpers/get-nspace-runner';
|
|
|
|
const nspaceRunner = getNspaceRunner('intention');
|
|
|
|
module('Integration | Adapter | intention', function(hooks) {
|
|
setupTest(hooks);
|
|
const dc = 'dc-1';
|
|
const id =
|
|
'SourcePartition:SourceNS:SourceName:DestinationPartition:DestinationNS:DestinationName';
|
|
test('requestForQuery returns the correct url', function(assert) {
|
|
return nspaceRunner(
|
|
(adapter, serializer, client) => {
|
|
const request = client.body.bind(client);
|
|
return adapter.requestForQuery(request, {
|
|
dc: dc,
|
|
ns: 'team-1',
|
|
partition: 'partition-1',
|
|
filter: '*',
|
|
index: 1,
|
|
});
|
|
},
|
|
{
|
|
filter: '*',
|
|
index: 1,
|
|
ns: '*',
|
|
partition: 'partition-1',
|
|
},
|
|
{
|
|
filter: '*',
|
|
index: 1,
|
|
},
|
|
this,
|
|
assert
|
|
);
|
|
});
|
|
test('requestForQueryRecord returns the correct url', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:intention');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const request = client.url.bind(client);
|
|
const expected = `GET /v1/connect/intentions/exact?source=SourcePartition%2FSourceNS%2FSourceName&destination=DestinationPartition%2FDestinationNS%2FDestinationName&dc=${dc}`;
|
|
const actual = adapter
|
|
.requestForQueryRecord(request, {
|
|
dc: dc,
|
|
id: id,
|
|
})
|
|
.split('\n')[0];
|
|
assert.equal(actual, expected);
|
|
});
|
|
test("requestForQueryRecord throws if you don't specify an id", function(assert) {
|
|
const adapter = this.owner.lookup('adapter:intention');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const request = client.url.bind(client);
|
|
assert.throws(function() {
|
|
adapter.requestForQueryRecord(request, {
|
|
dc: dc,
|
|
});
|
|
});
|
|
});
|
|
test('requestForCreateRecord returns the correct url', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:intention');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const request = client.url.bind(client);
|
|
const expected = `PUT /v1/connect/intentions/exact?source=SourcePartition%2FSourceNS%2FSourceName&destination=DestinationPartition%2FDestinationNS%2FDestinationName&dc=${dc}`;
|
|
const actual = adapter
|
|
.requestForCreateRecord(
|
|
request,
|
|
{},
|
|
{
|
|
Datacenter: dc,
|
|
SourceName: 'SourceName',
|
|
DestinationName: 'DestinationName',
|
|
SourceNS: 'SourceNS',
|
|
DestinationNS: 'DestinationNS',
|
|
SourcePartition: 'SourcePartition',
|
|
DestinationPartition: 'DestinationPartition',
|
|
}
|
|
)
|
|
.split('\n')[0];
|
|
assert.equal(actual, expected);
|
|
});
|
|
test('requestForUpdateRecord returns the correct url', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:intention');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const request = client.url.bind(client);
|
|
const expected = `PUT /v1/connect/intentions/exact?source=SourcePartition%2FSourceNS%2FSourceName&destination=DestinationPartition%2FDestinationNS%2FDestinationName&dc=${dc}`;
|
|
const actual = adapter
|
|
.requestForUpdateRecord(
|
|
request,
|
|
{},
|
|
{
|
|
Datacenter: dc,
|
|
SourceName: 'SourceName',
|
|
DestinationName: 'DestinationName',
|
|
SourceNS: 'SourceNS',
|
|
DestinationNS: 'DestinationNS',
|
|
SourcePartition: 'SourcePartition',
|
|
DestinationPartition: 'DestinationPartition',
|
|
}
|
|
)
|
|
.split('\n')[0];
|
|
assert.equal(actual, expected);
|
|
});
|
|
test('requestForDeleteRecord returns the correct url', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:intention');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const request = client.url.bind(client);
|
|
const expected = `DELETE /v1/connect/intentions/exact?source=SourcePartition%2FSourceNS%2FSourceName&destination=DestinationPartition%2FDestinationNS%2FDestinationName&dc=${dc}`;
|
|
const actual = adapter
|
|
.requestForDeleteRecord(
|
|
request,
|
|
{},
|
|
{
|
|
Datacenter: dc,
|
|
SourceName: 'SourceName',
|
|
DestinationName: 'DestinationName',
|
|
SourceNS: 'SourceNS',
|
|
DestinationNS: 'DestinationNS',
|
|
SourcePartition: 'SourcePartition',
|
|
DestinationPartition: 'DestinationPartition',
|
|
}
|
|
)
|
|
.split('\n')[0];
|
|
assert.equal(actual, expected);
|
|
});
|
|
});
|