mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
* move date-from-now helper to addon * make overview cards consistent across engines * make kv-paths-card component * remove overview margin all together * small styling changes for paths card * small selector additions * add overview card test * add overview page and test * add default timestamp format * cleanup paths test * fix dateFromNow import * fix selectors, cleanup pki selectors * and more selector cleanup * make deactivated state single arg * fix template and remove @isDeleted and @isDestroyed * add test and hide badge unless deactivated * address failings from changing selectors * oops, not ready to show overview tab just yet! * add deletionTime to currentSecret metadata getter
93 lines
3.7 KiB
JavaScript
93 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 { find, render, settled } from '@ember/test-helpers';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import { formatTimeZone } from 'core/helpers/date-format';
|
|
import { isMatch } from 'date-fns';
|
|
|
|
const TEST_DATE = new Date('2018-04-03T14:15:30');
|
|
|
|
module('Integration | Helper | date-format', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.before(function () {
|
|
this.today = TEST_DATE;
|
|
});
|
|
|
|
[
|
|
{ type: 'date object', value: TEST_DATE },
|
|
{ type: 'date strings', value: TEST_DATE.toDateString() },
|
|
{ type: 'ISO strings', value: TEST_DATE.toISOString() },
|
|
{ type: 'UTC strings', value: TEST_DATE.toUTCString() },
|
|
{ type: 'millis from epoch as string', value: TEST_DATE.getTime().toString() },
|
|
{ type: 'seconds from epoch as string', value: '1522782930' },
|
|
{ type: 'millis from epoch', value: TEST_DATE.getTime() },
|
|
{ type: 'seconds from epoch', value: 1522782930 },
|
|
].forEach((testCase) => {
|
|
test(`it supports formatting ${testCase.type}`, async function (assert) {
|
|
this.set('value', testCase.value);
|
|
|
|
await render(hbs`{{date-format this.value "MM/dd/yyyy"}}`);
|
|
assert
|
|
.dom(this.element)
|
|
.hasText(
|
|
'04/03/2018',
|
|
`it renders the date if passed in as a ${testCase.type} (eg. ${testCase.value})`
|
|
);
|
|
});
|
|
});
|
|
|
|
test('displays time zone if withTimeZone=true', async function (assert) {
|
|
// this test may fail locally if you're in a non-US timezone
|
|
this.set('withTimezone', true);
|
|
this.set('timestampDate', TEST_DATE);
|
|
|
|
await render(
|
|
hbs`<span data-test-formatted>{{date-format this.timestampDate 'yyyy' withTimeZone=this.withTimezone}}</span>`
|
|
);
|
|
const result = find('[data-test-formatted]');
|
|
// Compare to with timezone, which should add 4 characters
|
|
// Testing the difference because depending on the time of year the value may change
|
|
const resultLengthWithTimezone = result.innerText.length;
|
|
assert.strictEqual(resultLengthWithTimezone - 4, 4, 'Adds 4 characters for timezone');
|
|
});
|
|
|
|
test('it renders default format', async function (assert) {
|
|
this.set('timestampDate', TEST_DATE);
|
|
await render(hbs`<span data-test-formatted>{{date-format this.timestampDate}}</span>`);
|
|
const value = find('[data-test-formatted]').innerText;
|
|
const format = 'MMM d yyyy, h:mm:ss aa';
|
|
assert.true(isMatch(value, format), `${value} is formatted as ${format}`);
|
|
});
|
|
|
|
test('fails gracefully if given a non-date value', async function (assert) {
|
|
this.set('value', 'not a date');
|
|
|
|
await render(hbs`{{date-format this.value 'yyyy'}}`);
|
|
assert.dom(this.element).hasText('not a date', 'renders the value passed when non-date string');
|
|
|
|
this.set('value', { date: 7 });
|
|
await settled();
|
|
assert.dom(this.element).hasText('[object Object]', 'renders object when non-date object');
|
|
|
|
this.set('value', undefined);
|
|
await settled();
|
|
assert.dom(this.element).hasText('', 'renders empty string when falsey');
|
|
});
|
|
|
|
test('it formats timezone', async function (assert) {
|
|
// compute expected because otherwise this fails locally because of differing timezones
|
|
const expected = ` ${TEST_DATE.toLocaleTimeString(undefined, { timeZoneName: 'short' }).split(' ')[2]}`;
|
|
const actual = formatTimeZone(TEST_DATE);
|
|
|
|
assert.notStrictEqual(actual, undefined, 'formatted timezone is not undefined');
|
|
assert.strictEqual(formatTimeZone('not a date'), '', 'returns an empty string for a non-date value');
|
|
assert.strictEqual(actual, expected, `formatted timezone: "${actual}" equals expected: "${expected}"`);
|
|
});
|
|
});
|