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

LibJS: Implement Temporal.Instant.prototype.add()

This commit is contained in:
Linus Groh 2021-08-07 00:31:08 +01:00
parent 8ffad70504
commit b38f1fb071
8 changed files with 173 additions and 3 deletions

View file

@ -0,0 +1,59 @@
describe("correct behavior", () => {
test("length is 1", () => {
expect(Temporal.Instant.prototype.add).toHaveLength(1);
});
test("basic functionality", () => {
const instant = new Temporal.Instant(1625614921000000000n);
const duration = new Temporal.Duration(0, 0, 0, 0, 1, 2, 3, 4, 5, 6);
expect(instant.add(duration).epochNanoseconds).toBe(1625618644004005006n);
});
});
describe("errors", () => {
test("this value must be a Temporal.Instant object", () => {
expect(() => {
Temporal.Instant.prototype.add.call("foo");
}).toThrowWithMessage(TypeError, "Not a Temporal.Instant");
});
test("invalid nanoseconds value, positive", () => {
const instant = new Temporal.Instant(8_640_000_000_000_000_000_000n);
const duration = new Temporal.Duration(0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
expect(() => {
instant.add(duration);
}).toThrowWithMessage(
RangeError,
"Invalid epoch nanoseconds value, must be in range -86400 * 10^17 to 86400 * 10^17"
);
});
test("invalid nanoseconds value, negative", () => {
const instant = new Temporal.Instant(-8_640_000_000_000_000_000_000n);
const duration = new Temporal.Duration(0, 0, 0, 0, 0, 0, 0, 0, 0, -1);
expect(() => {
instant.add(duration);
}).toThrowWithMessage(
RangeError,
"Invalid epoch nanoseconds value, must be in range -86400 * 10^17 to 86400 * 10^17"
);
});
test("disallowed fields", () => {
const instant = new Temporal.Instant(1625614921000000000n);
for (const [args, property] of [
[[123, 0, 0, 0], "years"],
[[0, 123, 0, 0], "months"],
[[0, 0, 123, 0], "weeks"],
[[0, 0, 0, 123], "days"],
]) {
const duration = new Temporal.Duration(...args);
expect(() => {
instant.add(duration);
}).toThrowWithMessage(
RangeError,
`Invalid value for duration property '${property}': must be zero, got 123`
);
}
});
});