mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
1507dd8ab3
* Create mock-api endpoints for auth-methods * Implement auth-method endpoints and model with tests * Create route and tab for auth-methods * Create auth-method list and type components with styles * Add JWT and OIDC svg logos to codebase * Add brand translations * Add SearchBar to Auth Methods * Add acceptance test for Auth Methods UI * Skip auth method repo test * Changes from review notes * Fixup auth-method modela and mock-data * Update SearhBar with rebased changes * Add filterBy source and sortBy max token ttl * Update to SortBy MethodName * Update UI acceptance tests * Update mock data DisplayNames * Skip repo test * Fix to breaking serializer test * Implement auth-method endpoints and model with tests * Add acceptance test for Auth Methods UI * Update SearhBar with rebased changes * Add filterBy source and sortBy max token ttl * Update to SortBy MethodName * Update UI acceptance tests * Update mock data DisplayNames * Fix to breaking serializer test * Update class for search * Add auth-methods link to sidebar * Fixup PR review notes * Fixup review notes * Only show OIDC filter with enterprise * Update conditionals for MaxTokenTTL & TokenLocality * Refactor
51 lines
1.5 KiB
JavaScript
51 lines
1.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('auth-method');
|
|
module('Integration | Adapter | auth-method', function(hooks) {
|
|
setupTest(hooks);
|
|
const dc = 'dc-1';
|
|
const id = 'slug';
|
|
test('requestForQueryRecord returns the correct url/method', function(assert) {
|
|
const adapter = this.owner.lookup('adapter:auth-method');
|
|
const client = this.owner.lookup('service:client/http');
|
|
const expected = `GET /v1/acl/auth-method/${id}?dc=${dc}`;
|
|
const actual = adapter.requestForQueryRecord(client.requestParams.bind(client), {
|
|
dc: dc,
|
|
id: id,
|
|
});
|
|
assert.equal(`${actual.method} ${actual.url}`, expected);
|
|
});
|
|
test("requestForQueryRecord throws if you don't specify an id", function(assert) {
|
|
const adapter = this.owner.lookup('adapter:auth-method');
|
|
const client = this.owner.lookup('service:client/http');
|
|
assert.throws(function() {
|
|
adapter.requestForQueryRecord(client.url, {
|
|
dc: dc,
|
|
});
|
|
});
|
|
});
|
|
test('requestForQueryRecord returns the correct body', function(assert) {
|
|
return nspaceRunner(
|
|
(adapter, serializer, client) => {
|
|
return adapter.requestForQueryRecord(client.body, {
|
|
id: id,
|
|
dc: dc,
|
|
ns: 'team-1',
|
|
index: 1,
|
|
});
|
|
},
|
|
{
|
|
index: 1,
|
|
ns: 'team-1',
|
|
},
|
|
{
|
|
index: 1,
|
|
},
|
|
this,
|
|
assert
|
|
);
|
|
});
|
|
});
|