mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* 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>
211 lines
6.8 KiB
JavaScript
211 lines
6.8 KiB
JavaScript
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render, click, fillIn } from '@ember/test-helpers';
|
|
import sinon from 'sinon';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
module('Integration | Component | ttl-picker2', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test('it renders time and unit inputs when TTL enabled', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@onChange={{onChange}}
|
|
@enableTTL={{true}}
|
|
/>
|
|
`);
|
|
assert.dom('[data-test-ttl-value]').exists('TTL Picker time input exists');
|
|
assert.dom('[data-test-ttl-unit]').exists('TTL Picker unit select exists');
|
|
});
|
|
|
|
test('it does not show time and unit inputs when TTL disabled', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@onChange={{onChange}}
|
|
@enableTTL={{false}}
|
|
/>
|
|
`);
|
|
assert.dom('[data-test-ttl-value]').doesNotExist('TTL Picker time input exists');
|
|
assert.dom('[data-test-ttl-unit]').doesNotExist('TTL Picker unit select exists');
|
|
});
|
|
|
|
test('it passes the appropriate data to onChange when toggled on', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@label="clicktest"
|
|
@unit="m"
|
|
@time="10"
|
|
@onChange={{onChange}}
|
|
@enableTTL={{false}}
|
|
/>
|
|
`);
|
|
await click('[data-test-toggle-input="clicktest"]');
|
|
assert.ok(changeSpy.calledOnce, 'it calls the passed onChange');
|
|
assert.ok(
|
|
changeSpy.calledWith({
|
|
enabled: true,
|
|
seconds: 600,
|
|
timeString: '10m',
|
|
}),
|
|
'Passes the default values back to onChange'
|
|
);
|
|
});
|
|
|
|
test('it keeps seconds value when unit is changed', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@label="clicktest"
|
|
@unit="s"
|
|
@time="360"
|
|
@onChange={{onChange}}
|
|
@enableTTL={{false}}
|
|
/>
|
|
`);
|
|
await click('[data-test-toggle-input="clicktest"]');
|
|
assert.ok(changeSpy.calledOnce, 'it calls the passed onChange');
|
|
assert.ok(
|
|
changeSpy.calledWith({
|
|
enabled: true,
|
|
seconds: 360,
|
|
timeString: '360s',
|
|
}),
|
|
'Changes enabled to true on click'
|
|
);
|
|
await fillIn('[data-test-select="ttl-unit"]', 'm');
|
|
assert.ok(
|
|
changeSpy.calledWith({
|
|
enabled: true,
|
|
seconds: 360,
|
|
timeString: '6m',
|
|
}),
|
|
'Units and time update without changing seconds value'
|
|
);
|
|
assert.dom('[data-test-ttl-value]').hasValue('6', 'time value shows as 6');
|
|
assert.dom('[data-test-select="ttl-unit"]').hasValue('m', 'unit value shows as m (minutes)');
|
|
});
|
|
|
|
test('it recalculates seconds when unit is changed and recalculateSeconds is on', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@label="clicktest"
|
|
@unit="s"
|
|
@time="120"
|
|
@onChange={{onChange}}
|
|
@enableTTL={{true}}
|
|
@recalculateSeconds={{true}}
|
|
/>
|
|
`);
|
|
await fillIn('[data-test-select="ttl-unit"]', 'm');
|
|
assert.ok(
|
|
changeSpy.calledWith({
|
|
enabled: true,
|
|
seconds: 7200,
|
|
timeString: '120m',
|
|
}),
|
|
'Seconds value is recalculated based on time and unit'
|
|
);
|
|
});
|
|
|
|
test('it sets default value to time and unit passed', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@onChange={{onChange}}
|
|
@initialValue="2h"
|
|
@enableTTL={{true}}
|
|
@time=4
|
|
@unit="d"
|
|
/>
|
|
`);
|
|
assert.dom('[data-test-ttl-value]').hasValue('2', 'time value is 2');
|
|
assert.dom('[data-test-select="ttl-unit"]').hasValue('h', 'unit is hours');
|
|
assert.ok(changeSpy.notCalled, 'it does not call onChange after render when changeOnInit is not set');
|
|
});
|
|
|
|
test('it is disabled on init if initialEnabled is false', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@label="inittest"
|
|
@onChange={{onChange}}
|
|
@initialValue="100m"
|
|
@initialEnabled={{false}}
|
|
/>
|
|
`);
|
|
assert.dom('[data-test-ttl-value]').doesNotExist('Value is not shown on mount');
|
|
assert.dom('[data-test-ttl-unit]').doesNotExist('Unit is not shown on mount');
|
|
await click('[data-test-toggle-input="inittest"]');
|
|
assert.dom('[data-test-ttl-value]').hasValue('100', 'time after toggle is 100');
|
|
assert.dom('[data-test-select="ttl-unit"]').hasValue('m', 'Unit is minutes after toggle');
|
|
});
|
|
|
|
test('it is enabled on init if initialEnabled is true', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@label="inittest"
|
|
@onChange={{onChange}}
|
|
@initialValue="100m"
|
|
@initialEnabled={{true}}
|
|
/>
|
|
`);
|
|
assert.dom('[data-test-ttl-value]').hasValue('100', 'time is shown on mount');
|
|
assert.dom('[data-test-select="ttl-unit"]').hasValue('m', 'Unit is shown on mount');
|
|
await click('[data-test-toggle-input="inittest"]');
|
|
assert.dom('[data-test-ttl-value]').doesNotExist('Value no longer shows after toggle');
|
|
assert.dom('[data-test-ttl-unit]').doesNotExist('Unit no longer shows after toggle');
|
|
});
|
|
|
|
test('it is enabled on init if initialEnabled evals to truthy', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@label="inittest"
|
|
@onChange={{onChange}}
|
|
@initialValue="100m"
|
|
@initialEnabled="true"
|
|
/>
|
|
`);
|
|
assert.dom('[data-test-ttl-value]').hasValue('100', 'time value is shown on mount');
|
|
assert.dom('[data-test-ttl-unit]').exists('Unit is shown on mount');
|
|
assert.dom('[data-test-select="ttl-unit"]').hasValue('m', 'Unit matches what is passed in');
|
|
});
|
|
|
|
test('it calls onChange on init when rendered if changeOnInit is true', async function (assert) {
|
|
let changeSpy = sinon.spy();
|
|
this.set('onChange', changeSpy);
|
|
await render(hbs`
|
|
<TtlPicker2
|
|
@label="changeOnInitTest"
|
|
@onChange={{onChange}}
|
|
@initialValue="100m"
|
|
@initialEnabled="true"
|
|
@changeOnInit={{true}}
|
|
/>
|
|
`);
|
|
assert.ok(
|
|
changeSpy.calledWith({
|
|
enabled: true,
|
|
seconds: 6000,
|
|
timeString: '100m',
|
|
}),
|
|
'Seconds value is recalculated based on time and unit'
|
|
);
|
|
assert.ok(changeSpy.calledOnce, 'it calls the passed onChange after render');
|
|
});
|
|
});
|