2018-04-24 21:30:44 +00:00
|
|
|
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
import apiStub from 'vault/tests/helpers/noop-all-api-requests';
|
2018-08-16 17:48:24 +00:00
|
|
|
import needs from 'vault/tests/unit/adapters/_adapter-needs';
|
2018-04-24 21:30:44 +00:00
|
|
|
|
|
|
|
moduleFor('adapter:secret-engine', 'Unit | Adapter | secret engine', {
|
2018-08-16 17:48:24 +00:00
|
|
|
needs,
|
2018-04-24 21:30:44 +00:00
|
|
|
beforeEach() {
|
|
|
|
this.server = apiStub();
|
|
|
|
},
|
|
|
|
afterEach() {
|
|
|
|
this.server.shutdown();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const storeStub = {
|
|
|
|
serializerFor() {
|
|
|
|
return {
|
|
|
|
serializeIntoHash() {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const type = {
|
|
|
|
modelName: 'secret-engine',
|
|
|
|
};
|
|
|
|
|
|
|
|
const cases = [
|
|
|
|
{
|
|
|
|
description: 'Empty query',
|
|
|
|
adapterMethod: 'query',
|
|
|
|
args: [storeStub, type, {}],
|
|
|
|
url: '/v1/sys/internal/ui/mounts',
|
|
|
|
method: 'GET',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: 'Query with a path',
|
|
|
|
adapterMethod: 'query',
|
|
|
|
args: [storeStub, type, { path: 'foo' }],
|
|
|
|
url: '/v1/sys/internal/ui/mounts/foo',
|
|
|
|
method: 'GET',
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
description: 'Query with nested path',
|
|
|
|
adapterMethod: 'query',
|
|
|
|
args: [storeStub, type, { path: 'foo/bar/baz' }],
|
|
|
|
url: '/v1/sys/internal/ui/mounts/foo/bar/baz',
|
|
|
|
method: 'GET',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
cases.forEach(testCase => {
|
|
|
|
test(`secret-engine: ${testCase.description}`, function(assert) {
|
|
|
|
assert.expect(2);
|
|
|
|
let adapter = this.subject();
|
|
|
|
adapter[testCase.adapterMethod](...testCase.args);
|
|
|
|
let { url, method } = this.server.handledRequests[0];
|
|
|
|
assert.equal(url, testCase.url, `${testCase.adapterMethod} calls the correct url: ${testCase.url}`);
|
|
|
|
assert.equal(
|
|
|
|
method,
|
|
|
|
testCase.method,
|
|
|
|
`${testCase.adapterMethod} uses the correct http verb: ${testCase.method}`
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|