mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
* initial changes with no test coverage * test coverage and fixes * additional edit config test coverage * clean up * clean up * Address pr feedback * welp missed an await * missed * take back * Update configure-ssh-test.js
201 lines
8.6 KiB
JavaScript
201 lines
8.6 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import sinon from 'sinon';
|
|
import { setupRenderingTest } from 'vault/tests/helpers';
|
|
import { GENERAL } from 'vault/tests/helpers/general-selectors';
|
|
import { SECRET_ENGINE_SELECTORS as SES } from 'vault/tests/helpers/secret-engine/secret-engine-selectors';
|
|
import { render, click, fillIn } from '@ember/test-helpers';
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
import { overrideResponse } from 'vault/tests/helpers/stubs';
|
|
import {
|
|
expectedConfigKeys,
|
|
createConfig,
|
|
configUrl,
|
|
fillInAwsConfig,
|
|
} from 'vault/tests/helpers/secret-engine/secret-engine-helpers';
|
|
|
|
module('Integration | Component | SecretEngine/configure-aws', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
setupMirage(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
this.store = this.owner.lookup('service:store');
|
|
this.flashMessages = this.owner.lookup('service:flash-messages');
|
|
this.flashMessages.registerTypes(['success', 'danger']);
|
|
this.flashSuccessSpy = sinon.spy(this.flashMessages, 'success');
|
|
this.flashDangerSpy = sinon.spy(this.flashMessages, 'danger');
|
|
this.transitionStub = sinon.stub(this.owner.lookup('service:router'), 'transitionTo');
|
|
|
|
this.uid = uuidv4();
|
|
this.id = `aws-${this.uid}`;
|
|
this.rootConfig = this.store.createRecord('aws/root-config');
|
|
this.leaseConfig = this.store.createRecord('aws/lease-config');
|
|
// Add backend to the configs because it's not on the testing snapshot (would come from url)
|
|
this.rootConfig.backend = this.leaseConfig.backend = this.id;
|
|
|
|
this.renderComponent = () => {
|
|
return render(hbs`
|
|
<SecretEngine::ConfigureAws @rootConfig={{this.rootConfig}} @leaseConfig={{this.leaseConfig}} @backendPath={{this.id}} />
|
|
`);
|
|
};
|
|
});
|
|
module('Create view', function () {
|
|
test('it renders fields', async function (assert) {
|
|
assert.expect(11);
|
|
await this.renderComponent();
|
|
assert.dom(SES.aws.rootForm).exists('it lands on the aws root configuration form.');
|
|
assert.dom(SES.aws.accessTitle).exists('Access section is rendered');
|
|
assert.dom(SES.aws.leaseTitle).exists('Lease section is rendered');
|
|
// check all the form fields are present
|
|
await click(GENERAL.toggleGroup('Root config options'));
|
|
for (const key of expectedConfigKeys('aws-root-create')) {
|
|
if (key === 'secretKey') {
|
|
assert.dom(GENERAL.maskedInput(key)).exists(`${key} shows for root section.`);
|
|
} else {
|
|
assert.dom(GENERAL.inputByAttr(key)).exists(`${key} shows for root section.`);
|
|
}
|
|
}
|
|
for (const key of expectedConfigKeys('aws-lease')) {
|
|
assert.dom(`[data-test-ttl-form-label="${key}"]`).exists(`${key} shows for Lease section.`);
|
|
}
|
|
});
|
|
|
|
test('it shows validation error if default lease is entered but max lease is not', async function (assert) {
|
|
assert.expect(2);
|
|
await this.renderComponent();
|
|
this.server.post(configUrl('aws-lease', this.id), () => {
|
|
assert.false(
|
|
true,
|
|
'post request was made to config/lease when no data was changed. test should fail.'
|
|
);
|
|
});
|
|
this.server.post(configUrl('aws', this.id), () => {
|
|
assert.false(
|
|
true,
|
|
'post request was made to config/root when no data was changed. test should fail.'
|
|
);
|
|
});
|
|
await click(GENERAL.ttl.toggle('Default Lease TTL'));
|
|
await fillIn(GENERAL.ttl.input('Default Lease TTL'), '33');
|
|
await click(SES.aws.save);
|
|
assert
|
|
.dom(GENERAL.inlineError)
|
|
.hasText('Lease TTL and Max Lease TTL are both required if one of them is set.');
|
|
assert.dom(SES.aws.rootForm).exists('remains on the configuration form');
|
|
});
|
|
|
|
test('it surfaces the API error if one occurs on root/config, preventing user from transitioning', async function (assert) {
|
|
assert.expect(3);
|
|
await this.renderComponent();
|
|
this.server.post(configUrl('aws', this.id), () => {
|
|
return overrideResponse(400, { errors: ['bad request'] });
|
|
});
|
|
this.server.post(configUrl('aws-lease', this.id), () => {
|
|
assert.true(true, 'post request was made to config/lease when config/root failed. test should pass.');
|
|
});
|
|
// fill in both lease and root endpoints to ensure that both payloads are attempted to be sent
|
|
await fillInAwsConfig(true, false, true);
|
|
await click(SES.aws.save);
|
|
assert.dom(GENERAL.messageError).exists('API error surfaced to user');
|
|
assert.dom(GENERAL.inlineError).exists('User shown inline error message');
|
|
});
|
|
|
|
test('it allows user to submit root config even if API error occurs on config/lease config', async function (assert) {
|
|
assert.expect(3);
|
|
await this.renderComponent();
|
|
this.server.post(configUrl('aws', this.id), () => {
|
|
assert.true(true, 'post request was made to config/root when config/lease failed. test should pass.');
|
|
});
|
|
this.server.post(configUrl('aws-lease', this.id), () => {
|
|
return overrideResponse(400, { errors: ['bad request'] });
|
|
});
|
|
// fill in both lease and root endpoints to ensure that both payloads are attempted to be sent
|
|
await fillInAwsConfig(true, false, true);
|
|
await click(SES.aws.save);
|
|
|
|
assert.true(
|
|
this.flashDangerSpy.calledWith('Lease configuration was not saved: bad request'),
|
|
'Flash message shows that lease was not saved.'
|
|
);
|
|
assert.ok(
|
|
this.transitionStub.calledWith('vault.cluster.secrets.backend.configuration', this.id),
|
|
'Transitioned to the configuration index route.'
|
|
);
|
|
});
|
|
|
|
test('it transitions without sending a lease or root payload on cancel', async function (assert) {
|
|
assert.expect(3);
|
|
await this.renderComponent();
|
|
this.server.post(configUrl('aws', this.id), () => {
|
|
assert.true(
|
|
false,
|
|
'post request was made to config/root when user canceled out of flow. test should fail.'
|
|
);
|
|
});
|
|
this.server.post(configUrl('aws-lease', this.id), () => {
|
|
assert.true(
|
|
false,
|
|
'post request was made to config/lease when user canceled out of flow. test should fail.'
|
|
);
|
|
});
|
|
// fill in both lease and root endpoints to ensure that both payloads are attempted to be sent
|
|
await fillInAwsConfig(true, false, true);
|
|
await click(SES.aws.cancel);
|
|
|
|
assert.true(this.flashDangerSpy.notCalled, 'No danger flash messages called.');
|
|
assert.true(this.flashSuccessSpy.notCalled, 'No success flash messages called.');
|
|
assert.ok(
|
|
this.transitionStub.calledWith('vault.cluster.secrets.backend.configuration', this.id),
|
|
'Transitioned to the configuration index route.'
|
|
);
|
|
});
|
|
});
|
|
module('Edit view', function (hooks) {
|
|
hooks.beforeEach(function () {
|
|
this.rootConfig = createConfig(this.store, this.id, 'aws');
|
|
this.leaseConfig = createConfig(this.store, this.id, 'aws-lease');
|
|
});
|
|
|
|
test('it shows previously saved root and lease information', async function (assert) {
|
|
await this.renderComponent();
|
|
assert.dom(GENERAL.inputByAttr('accessKey')).hasValue(this.rootConfig.accessKey);
|
|
assert
|
|
.dom(GENERAL.inputByAttr('secretKey'))
|
|
.hasValue('**********', 'secretKey is masked on edit the value');
|
|
|
|
await click(GENERAL.toggleGroup('Root config options'));
|
|
assert.dom(GENERAL.inputByAttr('region')).hasValue(this.rootConfig.region);
|
|
assert.dom(GENERAL.inputByAttr('iamEndpoint')).hasValue(this.rootConfig.iamEndpoint);
|
|
assert.dom(GENERAL.inputByAttr('stsEndpoint')).hasValue(this.rootConfig.stsEndpoint);
|
|
assert.dom(GENERAL.inputByAttr('maxRetries')).hasValue('-1');
|
|
// Check lease config values
|
|
assert.dom(GENERAL.ttl.input('Default Lease TTL')).hasValue('50');
|
|
assert.dom(GENERAL.ttl.input('Max Lease TTL')).hasValue('55');
|
|
});
|
|
|
|
test('it requires a double click to change the secret key', async function (assert) {
|
|
await this.renderComponent();
|
|
|
|
this.server.post(configUrl('aws', this.id), (schema, req) => {
|
|
const payload = JSON.parse(req.requestBody);
|
|
assert.strictEqual(
|
|
payload.secret_key,
|
|
'new-secret',
|
|
'post request was made to config/root with the updated secret_key.'
|
|
);
|
|
});
|
|
|
|
await click(GENERAL.enableField('secretKey'));
|
|
await click('[data-test-button="toggle-masked"]');
|
|
await fillIn(GENERAL.maskedInput('secretKey'), 'new-secret');
|
|
await click(SES.aws.save);
|
|
});
|
|
});
|
|
});
|