mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +02:00
* UI: HDS adoption replace AlertBanner part 1 (#21163) * rename test selector * replace db banner * add class * replace db role edit * db creds * generate creds * simpler class * license banner component * oidc callback plash * raft * aws * secret create or update * change to compact alert for form field * change back to inline * combine alert banners * wrap in conditional * remove references to message class * UI: HDS adoption replace AlertBanner part 2 (#21243) * token expire warning * delete css * edit form * item details distribute mfa step 2 transit verify * back to secondary * distribute * oidc lease error * sign * kv obj and repl dash * more repl * update test selector * show, creds * shamir * pki csr * pki banners * add hds library to ember engines * woops comma * fix k8 test * update message error component for last! * hold off MessageError changes until next pr * revert test selectors * update pki tests * UI: part 3 remove alert banner (#21334) * final component swap * and actual final of MessageError * update MessageError selectors * delete alert-banner and remove references * update next step alerts to highlight color * finishing touches, auth form test and client dashboard inline link * fix more selectors * fix shamir flow test * ui: part 4 final cleanup (#21365) * replace AlertPopup * add test tag * move tag * one more message error tag * delete alert popup * final css cleanup * move preformatted flash into <p> tag * ui: address comments for sidebranch (#21388) * add periods, move link to trailing * more periods and typo fix
158 lines
5.9 KiB
JavaScript
158 lines
5.9 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'vault/tests/helpers';
|
|
import { click, fillIn, render } from '@ember/test-helpers';
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
import { setupEngine } from 'ember-engines/test-support';
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
|
|
|
module('Integration | Component | pki-generate-csr', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
setupEngine(hooks, 'pki');
|
|
setupMirage(hooks);
|
|
|
|
hooks.beforeEach(async function () {
|
|
this.owner.lookup('service:secretMountPath').update('pki-test');
|
|
this.store = this.owner.lookup('service:store');
|
|
this.onComplete = () => {};
|
|
this.model = this.owner
|
|
.lookup('service:store')
|
|
.createRecord('pki/action', { actionType: 'generate-csr' });
|
|
|
|
this.server.post('/sys/capabilities-self', () => ({
|
|
data: {
|
|
capabilities: ['root'],
|
|
'pki-test/issuers/generate/intermediate/exported': ['root'],
|
|
},
|
|
}));
|
|
});
|
|
|
|
test('it should render fields and save', async function (assert) {
|
|
assert.expect(9);
|
|
|
|
this.server.post('/pki-test/issuers/generate/intermediate/exported', (schema, req) => {
|
|
const payload = JSON.parse(req.requestBody);
|
|
assert.strictEqual(payload.common_name, 'foo', 'Request made to correct endpoint on save');
|
|
return {
|
|
request_id: '123',
|
|
data: {},
|
|
};
|
|
});
|
|
|
|
await render(hbs`<PkiGenerateCsr @model={{this.model}} @onComplete={{this.onComplete}} />`, {
|
|
owner: this.engine,
|
|
});
|
|
|
|
const fields = [
|
|
'type',
|
|
'commonName',
|
|
'excludeCnFromSans',
|
|
'format',
|
|
'subjectSerialNumber',
|
|
'addBasicConstraints',
|
|
];
|
|
fields.forEach((key) => {
|
|
assert.dom(`[data-test-input="${key}"]`).exists(`${key} form field renders`);
|
|
});
|
|
|
|
assert.dom('[data-test-toggle-group]').exists({ count: 3 }, 'Toggle groups render');
|
|
|
|
await fillIn('[data-test-input="type"]', 'exported');
|
|
await fillIn('[data-test-input="commonName"]', 'foo');
|
|
await click('[data-test-save]');
|
|
|
|
const savedRecord = this.store.peekAll('pki/action').firstObject;
|
|
assert.false(savedRecord.isNew, 'record is saved');
|
|
});
|
|
|
|
test('it should display validation errors', async function (assert) {
|
|
assert.expect(4);
|
|
|
|
this.onCancel = () => assert.ok(true, 'onCancel action fires');
|
|
|
|
await render(
|
|
hbs`<PkiGenerateCsr @model={{this.model}} @onCancel={{this.onCancel}} @onComplete={{this.onComplete}} />`,
|
|
{
|
|
owner: this.engine,
|
|
}
|
|
);
|
|
|
|
await click('[data-test-save]');
|
|
|
|
assert
|
|
.dom('[data-test-field-validation="type"]')
|
|
.hasText('Type is required.', 'Type validation error renders');
|
|
assert
|
|
.dom('[data-test-field="commonName"] [data-test-inline-alert]')
|
|
.hasText('Common name is required.', 'Common name validation error renders');
|
|
assert.dom('[data-test-alert]').hasText('There are 2 errors with this form.', 'Alert renders');
|
|
|
|
await click('[data-test-cancel]');
|
|
});
|
|
|
|
test('it should show generated CSR for type=exported', async function (assert) {
|
|
assert.expect(6);
|
|
this.model.id = '1235-someId';
|
|
this.model.csr = '-----BEGIN CERTIFICATE REQUEST-----...-----END CERTIFICATE REQUEST-----';
|
|
this.model.keyId = '9179de78-1275-a1cf-ebb0-a4eb2e376636';
|
|
this.model.privateKey = '-----BEGIN RSA PRIVATE KEY-----...-----END RSA PRIVATE KEY-----';
|
|
this.model.privateKeyType = 'rsa';
|
|
this.onComplete = () => assert.ok(true, 'onComplete action fires');
|
|
|
|
await render(hbs`<PkiGenerateCsr @model={{this.model}} @onComplete={{this.onComplete}} />`, {
|
|
owner: this.engine,
|
|
});
|
|
assert
|
|
.dom('[data-test-next-steps-csr]')
|
|
.hasText(
|
|
'Next steps Copy the CSR below for a parent issuer to sign and then import the signed certificate back into this mount. The private_key is only available once. Make sure you copy and save it now.',
|
|
'renders Next steps alert banner'
|
|
);
|
|
assert
|
|
.dom('[data-test-value-div="CSR"] [data-test-masked-input] button')
|
|
.hasAttribute('data-clipboard-text', this.model.csr, 'it renders copyable csr');
|
|
assert
|
|
.dom('[data-test-value-div="Key ID"] button')
|
|
.hasAttribute('data-clipboard-text', this.model.keyId, 'it renders copyable key_id');
|
|
assert
|
|
.dom('[data-test-value-div="Private key"] [data-test-masked-input] button')
|
|
.hasAttribute('data-clipboard-text', this.model.privateKey, 'it renders copyable private_key');
|
|
assert
|
|
.dom('[data-test-value-div="Private key type"]')
|
|
.hasText(this.model.privateKeyType, 'renders private_key_type');
|
|
await click('[data-test-done]');
|
|
});
|
|
|
|
test('it should show generated CSR for type=internal', async function (assert) {
|
|
assert.expect(5);
|
|
this.model.id = '1235-someId';
|
|
this.model.csr = '-----BEGIN CERTIFICATE REQUEST-----...-----END CERTIFICATE REQUEST-----';
|
|
this.model.keyId = '9179de78-1275-a1cf-ebb0-a4eb2e376636';
|
|
this.onComplete = () => {};
|
|
|
|
await render(hbs`<PkiGenerateCsr @model={{this.model}} @onComplete={{this.onComplete}} />`, {
|
|
owner: this.engine,
|
|
});
|
|
assert
|
|
.dom('[data-test-next-steps-csr]')
|
|
.hasText(
|
|
'Next steps Copy the CSR below for a parent issuer to sign and then import the signed certificate back into this mount.',
|
|
'renders Next steps alert banner'
|
|
);
|
|
assert
|
|
.dom('[data-test-value-div="CSR"] [data-test-masked-input] button')
|
|
.hasAttribute('data-clipboard-text', this.model.csr, 'it renders copyable csr');
|
|
assert
|
|
.dom('[data-test-value-div="Key ID"] button')
|
|
.hasAttribute('data-clipboard-text', this.model.keyId, 'it renders copyable key_id');
|
|
assert.dom('[data-test-value-div="Private key"]').hasText('internal', 'does not render private key');
|
|
assert
|
|
.dom('[data-test-value-div="Private key type"]')
|
|
.hasText('internal', 'does not render private key type');
|
|
});
|
|
});
|