mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:16 +01:00
97 lines
2.0 KiB
TypeScript
97 lines
2.0 KiB
TypeScript
|
/**
|
||
|
* Test file for Etemplate date formatting
|
||
|
*/
|
||
|
import {assert} from '@open-wc/testing';
|
||
|
import {formatDate, formatTime} from "../Et2Date";
|
||
|
|
||
|
describe("Date formatting", () =>
|
||
|
{
|
||
|
// Function under test
|
||
|
let formatter = formatDate;
|
||
|
|
||
|
// Setup run before each test
|
||
|
beforeEach(async() =>
|
||
|
{
|
||
|
// Stub global egw for preference
|
||
|
// @ts-ignore
|
||
|
window.egw = {
|
||
|
preference: () => 'Y-m-d'
|
||
|
};
|
||
|
});
|
||
|
|
||
|
it("Handles Y-m-d", () =>
|
||
|
{
|
||
|
let test_string = '2021-09-22';
|
||
|
let test_date = new Date(2021, 8, 22, 0, 0, 0);
|
||
|
|
||
|
let formatted = formatter(test_date);
|
||
|
|
||
|
assert.equal(formatted, test_string);
|
||
|
});
|
||
|
|
||
|
it("Handles Y.d.m", () =>
|
||
|
{
|
||
|
let test_string = '2021.22.09';
|
||
|
let test_date = new Date(2021, 8, 22, 0, 0, 0);
|
||
|
|
||
|
//@ts-ignore
|
||
|
window.egw = {
|
||
|
preference: () => 'Y.d.m'
|
||
|
};
|
||
|
let formatted = formatter(test_date);
|
||
|
|
||
|
assert.equal(formatted, test_string);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe("Time formatting", () =>
|
||
|
{
|
||
|
// Function under test
|
||
|
let formatter = formatTime;
|
||
|
|
||
|
// Setup run before each test
|
||
|
beforeEach(async() =>
|
||
|
{
|
||
|
// Stub global egw for preference
|
||
|
// @ts-ignore
|
||
|
window.egw = {
|
||
|
preference: () => 'Y-m-d'
|
||
|
};
|
||
|
});
|
||
|
|
||
|
it("Handles 12h", () =>
|
||
|
{
|
||
|
const test_data = {
|
||
|
"9:15 am": new Date('2021-09-22T09:15:00Z'),
|
||
|
"12:00 am": new Date('2021-09-22T00:00:00Z'),
|
||
|
"12:00 pm": new Date('2021-09-22T12:00:00Z'),
|
||
|
"5:00 pm": new Date('2021-09-22T17:00:00Z'),
|
||
|
};
|
||
|
for(let test_string of Object.keys(test_data))
|
||
|
{
|
||
|
let test_date = test_data[test_string];
|
||
|
let formatted = formatter(test_date, {timeFormat: "12"});
|
||
|
|
||
|
assert.equal(formatted, test_string);
|
||
|
|
||
|
}
|
||
|
});
|
||
|
|
||
|
it("Handles 24h", () =>
|
||
|
{
|
||
|
const test_data = {
|
||
|
"09:15": new Date('2021-09-22T09:15:00Z'),
|
||
|
"00:00": new Date('2021-09-22T00:00:00Z'),
|
||
|
"12:00": new Date('2021-09-22T12:00:00Z'),
|
||
|
"17:00": new Date('2021-09-22T17:00:00Z'),
|
||
|
};
|
||
|
for(let test_string of Object.keys(test_data))
|
||
|
{
|
||
|
let test_date = test_data[test_string];
|
||
|
let formatted = formatter(test_date, {timeFormat: "24"});
|
||
|
|
||
|
assert.equal(formatted, test_string);
|
||
|
|
||
|
}
|
||
|
});
|
||
|
});
|