7f4dbe3fd2
* remove header used for backwards compatibility in KV mounts, and use v1 paths for v1, v2 paths for v2 * make the model hook always run * simplify adapter & serializer code for secrets * update tests * fix lease tests * address review feedback
31 lines
970 B
JavaScript
31 lines
970 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
import testCases from './_test-cases';
|
|
import apiStub from 'vault/tests/helpers/noop-all-api-requests';
|
|
|
|
moduleFor('adapter:identity/entity-alias', 'Unit | Adapter | identity/entity-alias', {
|
|
needs: ['service:auth', 'service:flash-messages'],
|
|
beforeEach() {
|
|
this.server = apiStub();
|
|
},
|
|
afterEach() {
|
|
this.server.shutdown();
|
|
},
|
|
});
|
|
|
|
const cases = testCases('identit/entity-alias');
|
|
|
|
cases.forEach(testCase => {
|
|
test(`entity-alias#${testCase.adapterMethod}`, 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}`
|
|
);
|
|
});
|
|
});
|