mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 05:31:10 +02:00
112 lines
3.7 KiB
JavaScript
112 lines
3.7 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render, fillIn } from '@ember/test-helpers';
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
import { setupEngine } from 'ember-engines/test-support';
|
|
import { setRunOptions } from 'ember-a11y-testing/test-support';
|
|
import { GENERAL } from 'vault/tests/helpers/general-selectors';
|
|
|
|
module('Integration | Component | pki key parameters', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
setupEngine(hooks, 'pki');
|
|
|
|
hooks.beforeEach(function () {
|
|
this.store = this.owner.lookup('service:store');
|
|
this.model = this.store.createRecord('pki/role', { backend: 'pki' });
|
|
[this.fields] = Object.values(this.model.formFieldGroups.find((g) => g['Key parameters']));
|
|
// TODO: remove Tooltip/ember-basic-dropdown
|
|
setRunOptions({
|
|
rules: {
|
|
'nested-interactive': { enabled: false },
|
|
},
|
|
});
|
|
});
|
|
|
|
test('it should render the component and display the correct defaults', async function (assert) {
|
|
assert.expect(3);
|
|
await render(
|
|
hbs`
|
|
<div class="has-top-margin-xxl">
|
|
<PkiKeyParameters
|
|
@model={{this.model}}
|
|
@fields={{this.fields}}
|
|
/>
|
|
</div>
|
|
`,
|
|
{ owner: this.engine }
|
|
);
|
|
assert.dom(GENERAL.inputByAttr('keyType')).hasValue('rsa');
|
|
assert.dom(GENERAL.inputByAttr('keyBits')).hasValue('2048');
|
|
assert.dom(GENERAL.inputByAttr('signatureBits')).hasValue('0');
|
|
});
|
|
|
|
test('it should set the model properties of key_type and key_bits when key_type changes', async function (assert) {
|
|
assert.expect(11);
|
|
await render(
|
|
hbs`
|
|
<div class="has-top-margin-xxl">
|
|
<PkiKeyParameters
|
|
@model={{this.model}}
|
|
@fields={{this.fields}}
|
|
/>
|
|
</div>
|
|
`,
|
|
{ owner: this.engine }
|
|
);
|
|
assert.strictEqual(this.model.keyType, 'rsa', 'sets the default value for key_type on the model.');
|
|
assert.strictEqual(this.model.keyBits, '2048', 'sets the default value for key_bits on the model.');
|
|
assert.strictEqual(
|
|
this.model.signatureBits,
|
|
'0',
|
|
'sets the default value for signature_bits on the model.'
|
|
);
|
|
await fillIn(GENERAL.inputByAttr('keyType'), 'ec');
|
|
assert.strictEqual(this.model.keyType, 'ec', 'sets the new selected value for key_type on the model.');
|
|
assert.strictEqual(
|
|
this.model.keyBits,
|
|
'256',
|
|
'sets the new selected value for key_bits on the model based on the selection of key_type.'
|
|
);
|
|
|
|
await fillIn(GENERAL.inputByAttr('keyType'), 'ed25519');
|
|
assert.strictEqual(
|
|
this.model.keyType,
|
|
'ed25519',
|
|
'sets the new selected value for key_type on the model.'
|
|
);
|
|
assert.strictEqual(
|
|
this.model.keyBits,
|
|
'0',
|
|
'sets the new selected value for key_bits on the model based on the selection of key_type.'
|
|
);
|
|
|
|
await fillIn(GENERAL.inputByAttr('keyType'), 'ec');
|
|
await fillIn(GENERAL.inputByAttr('keyBits'), '384');
|
|
assert.strictEqual(this.model.keyType, 'ec', 'sets the new selected value for key_type on the model.');
|
|
assert.strictEqual(
|
|
this.model.keyBits,
|
|
'384',
|
|
'sets the new selected value for key_bits on the model based on the selection of key_type.'
|
|
);
|
|
|
|
await fillIn(GENERAL.inputByAttr('signatureBits'), '384');
|
|
assert.strictEqual(
|
|
this.model.signatureBits,
|
|
'384',
|
|
'sets the new selected value for signature_bits on the model.'
|
|
);
|
|
|
|
await fillIn(GENERAL.inputByAttr('signatureBits'), '0');
|
|
assert.strictEqual(
|
|
this.model.signatureBits,
|
|
'0',
|
|
'sets the default value for signature_bits on the model.'
|
|
);
|
|
});
|
|
});
|