mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 02:57:04 +02:00
* enable input component * add more stars * update css comments * Update ui/app/styles/helper-classes/flexbox-and-grid.scss * make attrOptions optional * add subtext to textfile * add docLink arg to form field textfile * update form field test * add test * add comment * update jsdoc * remove unused class * Update ui/tests/integration/components/enable-input-test.js Co-authored-by: Jordan Reimer <zofskeez@gmail.com> --------- Co-authored-by: Jordan Reimer <zofskeez@gmail.com>
58 lines
2.0 KiB
JavaScript
58 lines
2.0 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'vault/tests/helpers';
|
|
import { click, render } from '@ember/test-helpers';
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
module('Integration | Component | EnableInput', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test('it renders and enables yielded input', async function (assert) {
|
|
assert.expect(4);
|
|
await render(hbs`
|
|
<EnableInput>
|
|
<Input data-test-yielded-input @type='text' />
|
|
</EnableInput>
|
|
`);
|
|
|
|
assert.dom('input').isDisabled('input is disabled');
|
|
assert.dom('input').hasValue('**********', 'disabled input renders asterisks');
|
|
await click('button');
|
|
assert.dom('[data-test-yielded-input]').isNotDisabled('toggles to enabled, yielded input');
|
|
assert.dom('button').doesNotExist('button disappears when input is enabled');
|
|
});
|
|
|
|
test('it renders passed attribute', async function (assert) {
|
|
assert.expect(6);
|
|
this.attr = {
|
|
name: 'specialClientCredentials',
|
|
type: 'string',
|
|
options: {
|
|
subText: 'This value is protected and not returned from the API. Enable input to update value.',
|
|
},
|
|
};
|
|
this.model = { specialClientCredentials: '' };
|
|
await render(hbs`
|
|
<EnableInput @attr={{this.attr}} >
|
|
<FormField @attr={{this.attr}} @model={{this.model}} />
|
|
</EnableInput>
|
|
`);
|
|
|
|
assert.dom(`[data-test-input="${this.attr.name}"]`).isDisabled('renders disabled ReadonlyFormField');
|
|
assert
|
|
.dom(`[data-test-input="${this.attr.name}"]`)
|
|
.hasValue('**********', 'disabled input renders asterisks');
|
|
assert.dom('[data-test-readonly-label]').hasText('Special client credentials');
|
|
assert.dom('p.sub-text').hasText(this.attr.options.subText);
|
|
await click('button');
|
|
assert
|
|
.dom(`[data-test-field="${this.attr.name}"] input`)
|
|
.isNotDisabled('toggles to enabled, yielded form field component');
|
|
assert.dom('button').doesNotExist('button disappears when input is enabled');
|
|
});
|
|
});
|