mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 02:57:04 +02:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
187 lines
6.3 KiB
JavaScript
187 lines
6.3 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import sinon from 'sinon';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { click, render } from '@ember/test-helpers';
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
import { ARRAY_OF_MONTHS } from 'core/utils/date-formatters';
|
|
import timestamp from 'core/utils/timestamp';
|
|
|
|
const SELECTORS = {
|
|
monthDropdown: '[data-test-popup-menu-trigger="month"]',
|
|
specificMonth: (m) => `[data-test-dropdown-month="${m}"]`,
|
|
yearDropdown: '[data-test-popup-menu-trigger="year"]',
|
|
specificYear: (y) => `[data-test-dropdown-year="${y}"]`,
|
|
|
|
submitButton: '[data-test-date-dropdown-submit]',
|
|
cancelButton: '[data-test-date-dropdown-cancel]',
|
|
monthOptions: '[data-test-month-list] button',
|
|
};
|
|
|
|
module('Integration | Component | date-dropdown', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.before(function () {
|
|
sinon.stub(timestamp, 'now').callsFake(() => new Date('2018-04-03T14:15:30'));
|
|
});
|
|
hooks.after(function () {
|
|
timestamp.now.restore();
|
|
});
|
|
|
|
test('it renders dropdown', async function (assert) {
|
|
await render(hbs`
|
|
<div class="is-flex-align-baseline">
|
|
<DateDropdown/>
|
|
</div>
|
|
`);
|
|
assert.dom(SELECTORS.submitButton).hasText('Submit', 'button renders default text');
|
|
assert.dom(SELECTORS.cancelButton).doesNotExist('it does not render cancel button by default');
|
|
});
|
|
|
|
test('it fires off cancel callback', async function (assert) {
|
|
assert.expect(2);
|
|
const onCancel = () => {
|
|
assert.ok('fires onCancel callback');
|
|
};
|
|
this.set('onCancel', onCancel);
|
|
await render(hbs`
|
|
<div class="is-flex-align-baseline">
|
|
<DateDropdown @handleCancel={{this.onCancel}} @submitText="Save"/>
|
|
</div>
|
|
`);
|
|
assert.dom(SELECTORS.submitButton).hasText('Save', 'button renders passed in text');
|
|
await click(SELECTORS.cancelButton);
|
|
});
|
|
|
|
test('it renders dropdown and selects month and year', async function (assert) {
|
|
assert.expect(26);
|
|
const parentAction = (args) => {
|
|
assert.propEqual(
|
|
args,
|
|
{
|
|
dateType: 'start',
|
|
monthIdx: 1,
|
|
monthName: 'February',
|
|
year: 2016,
|
|
},
|
|
'sends correct args to parent'
|
|
);
|
|
};
|
|
this.set('parentAction', parentAction);
|
|
|
|
await render(hbs`
|
|
<div class="is-flex-align-baseline">
|
|
<DateDropdown
|
|
@handleSubmit={{this.parentAction}}
|
|
@dateType="start"
|
|
/>
|
|
</div>
|
|
`);
|
|
assert.dom(SELECTORS.submitButton).isDisabled('button is disabled when no month or year selected');
|
|
|
|
await click(SELECTORS.monthDropdown);
|
|
|
|
assert.dom(SELECTORS.monthOptions).exists({ count: 12 }, 'dropdown has 12 months');
|
|
ARRAY_OF_MONTHS.forEach((month) => {
|
|
assert.dom(SELECTORS.specificMonth(month)).hasText(`${month}`, `dropdown includes ${month}`);
|
|
});
|
|
|
|
await click(SELECTORS.specificMonth('February'));
|
|
assert.dom(SELECTORS.monthDropdown).hasText('February', 'dropdown shows selected month');
|
|
assert.dom('.ember-basic-dropdown-content').doesNotExist('dropdown closes after selecting month');
|
|
|
|
await click(SELECTORS.yearDropdown);
|
|
|
|
assert.dom('[data-test-dropdown-year]').exists({ count: 5 }, 'dropdown has 5 years');
|
|
for (const year of [2018, 2017, 2016, 2015, 2014]) {
|
|
assert.dom(SELECTORS.specificYear(year)).exists();
|
|
}
|
|
|
|
await click('[data-test-dropdown-year="2016"]');
|
|
assert.dom(SELECTORS.yearDropdown).hasText(`2016`, `dropdown shows selected year`);
|
|
assert.dom('.ember-basic-dropdown-content').doesNotExist('dropdown closes after selecting year');
|
|
assert.dom(SELECTORS.submitButton).isNotDisabled('button enabled when month and year selected');
|
|
|
|
await click(SELECTORS.submitButton);
|
|
});
|
|
|
|
test('selecting month first: current year enabled when current month selected', async function (assert) {
|
|
assert.expect(5);
|
|
await render(hbs`
|
|
<div class="is-flex-align-baseline">
|
|
<DateDropdown/>
|
|
</div>
|
|
`);
|
|
// select current month
|
|
await click(SELECTORS.monthDropdown);
|
|
await click(SELECTORS.specificMonth('January'));
|
|
await click(SELECTORS.yearDropdown);
|
|
// all years should be selectable
|
|
for (const year of [2018, 2017, 2016, 2015, 2014]) {
|
|
assert.dom(SELECTORS.specificYear(year)).isNotDisabled(`year ${year} is selectable`);
|
|
}
|
|
});
|
|
|
|
test('selecting month first: it disables current year when future months selected', async function (assert) {
|
|
assert.expect(5);
|
|
await render(hbs`
|
|
<div class="is-flex-align-baseline">
|
|
<DateDropdown/>
|
|
</div>
|
|
`);
|
|
|
|
// select future month
|
|
await click(SELECTORS.monthDropdown);
|
|
await click(SELECTORS.specificMonth('June'));
|
|
await click(SELECTORS.yearDropdown);
|
|
|
|
assert.dom(SELECTORS.specificYear(2018)).isDisabled(`current year is disabled`);
|
|
// previous years should be selectable
|
|
for (const year of [2017, 2016, 2015, 2014]) {
|
|
assert.dom(SELECTORS.specificYear(year)).isNotDisabled(`year ${year} is selectable`);
|
|
}
|
|
});
|
|
|
|
test('selecting year first: it disables future months when current year selected', async function (assert) {
|
|
assert.expect(12);
|
|
await render(hbs`
|
|
<div class="is-flex-align-baseline">
|
|
<DateDropdown/>
|
|
</div>
|
|
`);
|
|
await click(SELECTORS.yearDropdown);
|
|
await click(SELECTORS.specificYear(2018));
|
|
await click(SELECTORS.monthDropdown);
|
|
|
|
const expectedSelectable = ['January', 'February', 'March', 'April'];
|
|
ARRAY_OF_MONTHS.forEach((month) => {
|
|
if (expectedSelectable.includes(month)) {
|
|
assert.dom(SELECTORS.specificMonth(month)).isNotDisabled(`${month} is selectable for current year`);
|
|
} else {
|
|
assert.dom(SELECTORS.specificMonth(month)).isDisabled(`${month} is disabled for current year`);
|
|
}
|
|
});
|
|
});
|
|
|
|
test('selecting year first: it enables all months when past year is selected', async function (assert) {
|
|
assert.expect(12);
|
|
await render(hbs`
|
|
<div class="is-flex-align-baseline">
|
|
<DateDropdown/>
|
|
</div>
|
|
`);
|
|
|
|
await click(SELECTORS.yearDropdown);
|
|
await click(SELECTORS.specificYear(2017));
|
|
await click(SELECTORS.monthDropdown);
|
|
|
|
ARRAY_OF_MONTHS.forEach((month) => {
|
|
assert.dom(SELECTORS.specificMonth(month)).isNotDisabled(`${month} is selectable for previous year`);
|
|
});
|
|
});
|
|
});
|