vault/ui/tests/integration/helpers/date-format-test.js
hashicorp-copywrite[bot] 0b12cdcfd1
[COMPLIANCE] License changes (#22290)
* 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>
2023-08-10 18:14:03 -07:00

80 lines
2.8 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 { find, render, settled } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
import timestamp from 'core/utils/timestamp';
module('Integration | Helper | date-format', 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 is able to format a date object', async function (assert) {
const today = timestamp.now();
this.set('today', today);
await render(hbs`{{date-format this.today "yyyy"}}`);
assert.dom(this.element).includesText('2018', 'it renders the date in the year format');
});
test('it supports date timestamps', async function (assert) {
const today = timestamp.now().getTime();
this.set('today', today);
await render(hbs`{{date-format this.today 'hh:mm:ss'}}`);
const formattedDate = this.element.innerText;
assert.strictEqual(formattedDate, '02:15:30');
});
test('it supports date strings', async function (assert) {
const todayString = timestamp.now().getFullYear().toString();
this.set('todayString', todayString);
await render(hbs`{{date-format this.todayString "yyyy"}}`);
assert.dom(this.element).includesText(todayString, 'it renders the a date if passed in as a string');
});
test('it supports ten digit dates', async function (assert) {
const tenDigitDate = 1621785298;
this.set('tenDigitDate', tenDigitDate);
await render(hbs`{{date-format this.tenDigitDate "MM/dd/yyyy"}}`);
assert.dom(this.element).includesText('05/23/2021');
});
test('it supports already formatted dates', async function (assert) {
const formattedDate = timestamp.now();
this.set('formattedDate', formattedDate);
await render(hbs`{{date-format this.formattedDate 'MMMM dd, yyyy hh:mm:ss a' isFormatted=true}}`);
assert.dom(this.element).hasText('April 03, 2018 02:15:30 PM');
});
test('displays time zone if withTimeZone=true', async function (assert) {
const timestampDate = '2022-12-06T11:29:15-08:00';
this.set('withTimezone', false);
this.set('timestampDate', timestampDate);
await render(
hbs`<span data-test-formatted>{{date-format this.timestampDate 'MMM d yyyy, h:mm:ss aaa' withTimeZone=this.withTimezone}}</span>`
);
const result = find('[data-test-formatted]');
assert.strictEqual(result.innerText.length, 22);
// Compare to with timezone, which should add 4 characters
this.set('withTimezone', true);
await settled();
assert.strictEqual(result.innerText.length, 26);
});
});