open-vault/ui/tests/unit/adapters/identity/group-alias-test.js

34 lines
1 KiB
JavaScript
Raw Normal View History

import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
2018-04-03 14:16:57 +00:00
import testCases from './_test-cases';
import apiStub from 'vault/tests/helpers/noop-all-api-requests';
2018-04-03 14:16:57 +00:00
module('Unit | Adapter | identity/group-alias', function(hooks) {
setupTest(hooks);
hooks.beforeEach(function() {
this.server = apiStub();
});
hooks.afterEach(function() {
2018-04-03 14:16:57 +00:00
this.server.shutdown();
});
2018-04-03 14:16:57 +00:00
const cases = testCases('identity/group-alias');
2018-04-03 14:16:57 +00:00
cases.forEach(testCase => {
test(`group-alias#${testCase.adapterMethod}`, function(assert) {
assert.expect(2);
let adapter = this.owner.lookup('adapter:identity/group-alias');
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}`
);
});
2018-04-03 14:16:57 +00:00
});
});