mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-03 21:11:10 +02:00
* chane form field to angle bracket syntax * computes tuneAttrs depending on auth method type * make all attrs linkable * delete token_type for token auth methods before save * adds changelog * adds copy to unsupported auth methods * adds doc link to copy * adds test for linkable auth method list
114 lines
4.2 KiB
JavaScript
114 lines
4.2 KiB
JavaScript
import { click, findAll, fillIn, settled, visit, triggerKeyEvent } from '@ember/test-helpers';
|
|
import { module, test } from 'qunit';
|
|
import { setupApplicationTest } from 'ember-qunit';
|
|
import authPage from 'vault/tests/pages/auth';
|
|
import logout from 'vault/tests/pages/logout';
|
|
import enablePage from 'vault/tests/pages/settings/auth/enable';
|
|
import { supportedAuthBackends } from 'vault/helpers/supported-auth-backends';
|
|
import { supportedManagedAuthBackends } from 'vault/helpers/supported-managed-auth-backends';
|
|
|
|
module('Acceptance | auth backend list', function(hooks) {
|
|
setupApplicationTest(hooks);
|
|
|
|
hooks.beforeEach(function() {
|
|
return authPage.login();
|
|
});
|
|
|
|
hooks.afterEach(function() {
|
|
return logout.visit();
|
|
});
|
|
|
|
test('userpass secret backend', async function(assert) {
|
|
let n = Math.random();
|
|
const path1 = `userpass-${++n}`;
|
|
const path2 = `userpass-${++n}`;
|
|
const user1 = 'user1';
|
|
const user2 = 'user2';
|
|
|
|
// enable the first userpass method with one username
|
|
await enablePage.enable('userpass', path1);
|
|
await settled();
|
|
await click('[data-test-save-config="true"]');
|
|
await settled();
|
|
await visit(`/vault/access/${path1}/item/user/create`);
|
|
await settled();
|
|
await fillIn('[data-test-input="username"]', user1);
|
|
await triggerKeyEvent('[data-test-input="username"]', 'keyup', 65);
|
|
await fillIn('[data-test-textarea]', user1);
|
|
await triggerKeyEvent('[data-test-textarea]', 'keyup', 65);
|
|
await click('[data-test-save-config="true"]');
|
|
await settled();
|
|
|
|
// enable the first userpass method with one username
|
|
await visit(`/vault/settings/auth/enable`);
|
|
await settled();
|
|
await click('[data-test-mount-type="userpass"]');
|
|
await settled();
|
|
await click('[data-test-mount-next]');
|
|
await settled();
|
|
await fillIn('[data-test-input="path"]', path2);
|
|
await settled();
|
|
await click('[data-test-mount-submit="true"]');
|
|
await settled();
|
|
await click('[data-test-save-config="true"]');
|
|
await settled();
|
|
await click(`[data-test-auth-backend-link="${path2}"]`);
|
|
await settled();
|
|
await click('[data-test-create="user"]');
|
|
await settled();
|
|
await fillIn('[data-test-input="username"]', user2);
|
|
await triggerKeyEvent('[data-test-input="username"]', 'keyup', 65);
|
|
await fillIn('[data-test-textarea]', user2);
|
|
await triggerKeyEvent('[data-test-textarea]', 'keyup', 65);
|
|
await click('[data-test-save-config="true"]');
|
|
await settled();
|
|
|
|
//confirming that the user was created. There was a bug where the apiPath was not being updated when toggling between auth routes
|
|
assert
|
|
.dom('[data-test-list-item-content]')
|
|
.hasText(user2, 'user just created shows in current auth list');
|
|
|
|
//confirm that the auth method 1 shows the user1. There was a bug where it was not updated the list when toggling between auth routes
|
|
await visit(`/vault/access/${path1}/item/user`);
|
|
await settled();
|
|
assert
|
|
.dom('[data-test-list-item-content]')
|
|
.hasText(user1, 'first user created shows in current auth list');
|
|
});
|
|
|
|
test('auth methods are linkable and link to correct view', async function(assert) {
|
|
await visit('/vault/access');
|
|
await settled();
|
|
let supportManaged = supportedManagedAuthBackends();
|
|
let backends = supportedAuthBackends();
|
|
|
|
for (let backend of backends) {
|
|
let { type } = backend;
|
|
|
|
if (type !== 'token') {
|
|
await enablePage.enable(type, type);
|
|
}
|
|
await settled();
|
|
await visit('/vault/access');
|
|
|
|
// all auth methods should be linkable
|
|
await click(`[data-test-auth-backend-link="${type}"]`);
|
|
|
|
if (!supportManaged.includes(type)) {
|
|
assert.equal(findAll('[data-test-auth-section-tab]').length, 1);
|
|
assert
|
|
.dom('[data-test-auth-section-tab]')
|
|
.hasText('Configuration', `only shows configuration tab for ${type} auth method`);
|
|
assert.dom('[data-test-doc-link] .doc-link').exists(`includes doc link for ${type} auth method`);
|
|
} else {
|
|
// managed auth methods should have more than 1 tab
|
|
assert.notEqual(
|
|
findAll('[data-test-auth-section-tab]').length,
|
|
1,
|
|
`has management tabs for ${type} auth method`
|
|
);
|
|
}
|
|
}
|
|
});
|
|
});
|