5c2a08de6d
* Update browserslist * Add browserslistrc * ember-cli-update --to 3.26, fix conflicts * Run codemodes that start with ember-* * More codemods - before cp* * More codemods (curly data-test-*) * WIP ember-basic-dropdown template errors * updates ember-basic-dropdown and related deps to fix build issues * updates basic dropdown instances to new version API * updates more deps -- ember-template-lint is working again * runs no-implicit-this codemod * creates and runs no-quoteless-attributes codemod * runs angle brackets codemod * updates lint:hbs globs to only touch hbs files * removes yield only templates * creates and runs deprecated args transform * supresses lint error for invokeAction on LinkTo component * resolves remaining ambiguous path lint errors * resolves simple-unless lint errors * adds warnings for deprecated tagName arg on LinkTo components * adds warnings for remaining curly component invocation * updates global template lint rules * resolves remaining template lint errors * disables some ember specfic lint rules that target pre octane patterns * js lint fix run * resolves remaining js lint errors * fixes test run * adds npm-run-all dep * fixes test attribute issues * fixes console acceptance tests * fixes tests * adds yield only wizard/tutorial-active template * fixes more tests * attempts to fix more flaky tests * removes commented out settled in transit test * updates deprecations workflow and adds initializer to filter by version * updates flaky policies acl old test * updates to flaky transit test * bumps ember deps down to LTS version * runs linters after main merge * fixes client count tests after bad merge conflict fixes * fixes client count history test * more updates to lint config * another round of hbs lint fixes after extending stylistic rule * updates lint-staged commands * removes indent eslint rule since it seems to break things * fixes bad attribute in transform-edit-form template * test fixes * fixes enterprise tests * adds changelog * removes deprecated ember-concurrency-test-waiters dep and adds @ember/test-waiters * flaky test fix Co-authored-by: hashishaw <cshaw@hashicorp.com>
101 lines
3.6 KiB
JavaScript
101 lines
3.6 KiB
JavaScript
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render, focus, triggerKeyEvent } from '@ember/test-helpers';
|
|
import { create } from 'ember-cli-page-object';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import maskedInput from 'vault/tests/pages/components/masked-input';
|
|
|
|
const component = create(maskedInput);
|
|
|
|
module('Integration | Component | masked input', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test('it renders', async function (assert) {
|
|
await render(hbs`{{masked-input}}`);
|
|
assert.dom('[data-test-masked-input]').exists('shows expiration beacon');
|
|
});
|
|
|
|
test('it renders a textarea', async function (assert) {
|
|
await render(hbs`{{masked-input}}`);
|
|
|
|
assert.ok(component.textareaIsPresent);
|
|
});
|
|
|
|
test('it renders an input with obscure font', async function (assert) {
|
|
await render(hbs`{{masked-input}}`);
|
|
|
|
assert.dom('[data-test-textarea]').hasClass('masked-font', 'loading class with correct font');
|
|
});
|
|
|
|
test('it renders obscure font when displayOnly', async function (assert) {
|
|
this.set('value', 'value');
|
|
await render(hbs`{{masked-input displayOnly=true value=value}}`);
|
|
|
|
assert.dom('.masked-value').hasClass('masked-font', 'loading class with correct font');
|
|
});
|
|
|
|
test('it does not render a textarea when displayOnly is true', async function (assert) {
|
|
await render(hbs`{{masked-input displayOnly=true}}`);
|
|
|
|
assert.notOk(component.textareaIsPresent);
|
|
});
|
|
|
|
test('it renders a copy button when allowCopy is true', async function (assert) {
|
|
await render(hbs`{{masked-input allowCopy=true}}`);
|
|
|
|
assert.ok(component.copyButtonIsPresent);
|
|
});
|
|
|
|
test('it does not render a copy button when allowCopy is false', async function (assert) {
|
|
await render(hbs`{{masked-input allowCopy=false}}`);
|
|
|
|
assert.notOk(component.copyButtonIsPresent);
|
|
});
|
|
|
|
test('it unmasks text when button is clicked', async function (assert) {
|
|
this.set('value', 'value');
|
|
await render(hbs`{{masked-input value=value}}`);
|
|
await component.toggleMasked();
|
|
|
|
assert.dom('.masked-value').doesNotHaveClass('masked-font');
|
|
});
|
|
|
|
test('it remasks text when button is clicked', async function (assert) {
|
|
this.set('value', 'value');
|
|
await render(hbs`{{masked-input value=value}}`);
|
|
|
|
await component.toggleMasked();
|
|
await component.toggleMasked();
|
|
|
|
assert.dom('.masked-value').hasClass('masked-font');
|
|
});
|
|
|
|
test('it shortens long outputs when displayOnly and masked', async function (assert) {
|
|
this.set('value', '123456789-123456789-123456789');
|
|
await render(hbs`{{masked-input value=value displayOnly=true}}`);
|
|
let maskedValue = document.querySelector('.masked-value').innerText;
|
|
assert.equal(maskedValue.length, 20);
|
|
|
|
await component.toggleMasked();
|
|
let unMaskedValue = document.querySelector('.masked-value').innerText;
|
|
assert.equal(unMaskedValue.length, this.value.length);
|
|
});
|
|
|
|
test('it does not unmask text on focus', async function (assert) {
|
|
this.set('value', '123456789-123456789-123456789');
|
|
await render(hbs`{{masked-input value=value}}`);
|
|
assert.dom('.masked-value').hasClass('masked-font');
|
|
await focus('.masked-value');
|
|
assert.dom('.masked-value').hasClass('masked-font');
|
|
});
|
|
|
|
test('it does not remove value on tab', async function (assert) {
|
|
this.set('value', 'hello');
|
|
await render(hbs`{{masked-input value=value}}`);
|
|
await triggerKeyEvent('[data-test-textarea]', 'keydown', 9);
|
|
await component.toggleMasked();
|
|
let unMaskedValue = document.querySelector('.masked-value').value;
|
|
assert.equal(unMaskedValue, this.value);
|
|
});
|
|
});
|