27bb03bbc0
* adding copyright header * fix fmt and a test
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import testCases from './_test-cases';
|
|
import apiStub from 'vault/tests/helpers/noop-all-api-requests';
|
|
|
|
module('Unit | Adapter | identity/entity-alias', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
this.server = apiStub();
|
|
});
|
|
|
|
hooks.afterEach(function () {
|
|
this.server.shutdown();
|
|
});
|
|
|
|
const cases = testCases('identity/entity-alias');
|
|
|
|
cases.forEach((testCase) => {
|
|
test(`entity-alias#${testCase.adapterMethod}`, function (assert) {
|
|
assert.expect(2);
|
|
const adapter = this.owner.lookup('adapter:identity/entity-alias');
|
|
adapter[testCase.adapterMethod](...testCase.args);
|
|
const { url, method } = this.server.handledRequests[0];
|
|
assert.strictEqual(
|
|
url,
|
|
testCase.url,
|
|
`${testCase.adapterMethod} calls the correct url: ${testCase.url}`
|
|
);
|
|
assert.strictEqual(
|
|
method,
|
|
testCase.method,
|
|
`${testCase.adapterMethod} uses the correct http verb: ${testCase.method}`
|
|
);
|
|
});
|
|
});
|
|
});
|