Files
ladybird/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.from.js
Timothy Flynn 66365fef57 LibJS: Implement the Temporal.PlainTime constructor
And the simple Temporal.PlainTime.prototype getters, so that the
constructed Temporal.PlainTime may actually be validated.
2024-11-23 19:35:36 -05:00

68 lines
2.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
describe("correct behavior", () => {
test("length is 1", () => {
expect(Temporal.PlainTime.from).toHaveLength(1);
});
test("PlainTime instance argument", () => {
const plainTime = new Temporal.PlainTime(18, 45, 37, 1, 2, 3);
const createdPlainTime = Temporal.PlainTime.from(plainTime);
expect(createdPlainTime.hour).toBe(18);
expect(createdPlainTime.minute).toBe(45);
expect(createdPlainTime.second).toBe(37);
expect(createdPlainTime.millisecond).toBe(1);
expect(createdPlainTime.microsecond).toBe(2);
expect(createdPlainTime.nanosecond).toBe(3);
});
test("PlainTime string argument", () => {
const createdPlainTime = Temporal.PlainTime.from("2021-08-27T18:44:11");
expect(createdPlainTime.hour).toBe(18);
expect(createdPlainTime.minute).toBe(44);
expect(createdPlainTime.second).toBe(11);
expect(createdPlainTime.millisecond).toBe(0);
expect(createdPlainTime.microsecond).toBe(0);
expect(createdPlainTime.nanosecond).toBe(0);
});
});
describe("errors", () => {
test("string must not contain a UTC designator", () => {
expect(() => {
Temporal.PlainTime.from("2021-07-06T23:42:01Z");
}).toThrowWithMessage(RangeError, "Invalid ISO date time");
});
test("extended year must not be negative zero", () => {
expect(() => {
Temporal.PlainTime.from("-000000-01-01T00:00:00");
}).toThrowWithMessage(RangeError, "Invalid ISO date time");
expect(() => {
Temporal.PlainTime.from("000000-01-01T00:00:00"); // U+2212
}).toThrowWithMessage(RangeError, "Invalid ISO date time");
});
test("ambiguous string must contain a time designator", () => {
const values = [
// YYYY-MM or HHMM-UU
"2021-12",
// MMDD or HHMM
"1214",
"0229",
"1130",
// MM-DD or HH-UU
"12-14",
// YYYYMM or HHMMSS
"202112",
];
for (const value of values) {
expect(() => {
Temporal.PlainTime.from(value);
}).toThrowWithMessage(RangeError, "Invalid ISO date time");
expect(() => {
Temporal.PlainTime.from(`T${value}`);
}).not.toThrow();
}
});
});