1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:27:35 +00:00

LibJS: Implement Temporal.PlainTime.prototype.toString()

This commit is contained in:
Linus Groh 2021-09-08 22:58:07 +01:00
parent 81aaa9ccd5
commit 9f78a957d5
5 changed files with 214 additions and 0 deletions

View file

@ -0,0 +1,59 @@
describe("correct behavior", () => {
test("length is 0", () => {
expect(Temporal.PlainTime.prototype.toString).toHaveLength(0);
});
test("basic functionality", () => {
const plainTime = new Temporal.PlainTime(18, 14, 47, 123, 456, 789);
expect(plainTime.toString()).toBe("18:14:47.123456789");
});
test("fractionalSecondDigits option", () => {
const plainTime = new Temporal.PlainTime(18, 14, 47, 123, 456);
const values = [
["auto", "18:14:47.123456"],
[0, "18:14:47"],
[1, "18:14:47.1"],
[2, "18:14:47.12"],
[3, "18:14:47.123"],
[4, "18:14:47.1234"],
[5, "18:14:47.12345"],
[6, "18:14:47.123456"],
[7, "18:14:47.1234560"],
[8, "18:14:47.12345600"],
[9, "18:14:47.123456000"],
];
for (const [fractionalSecondDigits, expected] of values) {
const options = { fractionalSecondDigits };
expect(plainTime.toString(options)).toBe(expected);
}
// Ignored when smallestUnit is given
expect(plainTime.toString({ smallestUnit: "minute", fractionalSecondDigits: 9 })).toBe(
"18:14"
);
});
test("smallestUnit option", () => {
const plainTime = new Temporal.PlainTime(18, 14, 47, 123, 456, 789);
const values = [
["minute", "18:14"],
["second", "18:14:47"],
["millisecond", "18:14:47.123"],
["microsecond", "18:14:47.123456"],
["nanosecond", "18:14:47.123456789"],
];
for (const [smallestUnit, expected] of values) {
const options = { smallestUnit };
expect(plainTime.toString(options)).toBe(expected);
}
});
});
describe("errors", () => {
test("this value must be a Temporal.PlainTime object", () => {
expect(() => {
Temporal.PlainTime.prototype.toString.call("foo");
}).toThrowWithMessage(TypeError, "Not a Temporal.PlainTime");
});
});