summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-11-21 14:37:37 +0000
committerLinus Groh <mail@linusgroh.de>2021-11-21 20:04:19 +0000
commitaed444253cb72a5877be63a36d02bb320b43ea72 (patch)
tree4858930ad8571cb35f09c97ddd9a7af33ada6d83 /Userland/Libraries/LibJS/Tests
parent2ac1774fd353d9854c38df48aa5e4e0cb435357c (diff)
downloadserenity-aed444253cb72a5877be63a36d02bb320b43ea72.zip
LibJS: Implement Temporal.PlainTime.prototype.since()
Diffstat (limited to 'Userland/Libraries/LibJS/Tests')
-rw-r--r--Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.since.js89
1 files changed, 89 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.since.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.since.js
new file mode 100644
index 0000000000..134ef2961d
--- /dev/null
+++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.since.js
@@ -0,0 +1,89 @@
+describe("correct behavior", () => {
+ test("length is 1", () => {
+ expect(Temporal.PlainTime.prototype.since).toHaveLength(1);
+ });
+
+ test("basic functionality", () => {
+ const values = [
+ [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], "PT0S"],
+ [[2, 3, 4, 5, 6, 7], [1, 2, 3, 4, 5, 6], "PT1H1M1.001001001S"],
+ [[1, 2, 3, 4, 5, 6], [0, 0, 0, 0, 0, 0], "PT1H2M3.004005006S"],
+ [[0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 5, 6], "-PT1H2M3.004005006S"],
+ [[23, 59, 59, 999, 999, 999], [0, 0, 0, 0, 0, 0], "PT23H59M59.999999999S"],
+ [[0, 0, 0, 0, 0, 0], [23, 59, 59, 999, 999, 999], "-PT23H59M59.999999999S"],
+ ];
+ for (const [args, argsOther, expected] of values) {
+ const plainTime = new Temporal.PlainTime(...args);
+ const other = new Temporal.PlainTime(...argsOther);
+ expect(plainTime.since(other).toString()).toBe(expected);
+ }
+ });
+
+ test("smallestUnit option", () => {
+ const plainTime = new Temporal.PlainTime(1, 2, 3, 4, 5, 6);
+ const other = new Temporal.PlainTime(0, 0, 0, 0, 0, 0);
+ const values = [
+ ["hour", "PT1H"],
+ ["minute", "PT1H2M"],
+ ["second", "PT1H2M3S"],
+ ["millisecond", "PT1H2M3.004S"],
+ ["microsecond", "PT1H2M3.004005S"],
+ ["nanosecond", "PT1H2M3.004005006S"],
+ ];
+ for (const [smallestUnit, expected] of values) {
+ expect(plainTime.since(other, { smallestUnit }).toString()).toBe(expected);
+ }
+ });
+
+ test("largestUnit option", () => {
+ const plainTime = new Temporal.PlainTime(1, 2, 3, 4, 5, 6);
+ const other = new Temporal.PlainTime(0, 0, 0, 0, 0, 0);
+ const values = [
+ ["hour", "PT1H2M3.004005006S"],
+ ["minute", "PT62M3.004005006S"],
+ ["second", "PT3723.004005006S"],
+ ["millisecond", "PT3723.004005006S"],
+ ["microsecond", "PT3723.004005006S"],
+ ["nanosecond", "PT3723.004005006S"],
+ ];
+ for (const [largestUnit, expected] of values) {
+ expect(plainTime.since(other, { largestUnit }).toString()).toBe(expected);
+ }
+ });
+});
+
+describe("errors", () => {
+ test("this value must be a Temporal.PlainTime object", () => {
+ expect(() => {
+ Temporal.PlainTime.prototype.since.call("foo", {});
+ }).toThrowWithMessage(TypeError, "Not an object of type Temporal.PlainTime");
+ });
+
+ test("disallowed smallestUnit option values", () => {
+ const values = ["year", "month", "week", "day"];
+ for (const smallestUnit of values) {
+ const plainTime = new Temporal.PlainTime();
+ const other = new Temporal.PlainTime();
+ expect(() => {
+ plainTime.since(other, { smallestUnit });
+ }).toThrowWithMessage(
+ RangeError,
+ `${smallestUnit} is not a valid value for option smallestUnit`
+ );
+ }
+ });
+
+ test("disallowed largestUnit option values", () => {
+ const values = ["year", "month", "week", "day"];
+ for (const largestUnit of values) {
+ const plainTime = new Temporal.PlainTime();
+ const other = new Temporal.PlainTime();
+ expect(() => {
+ plainTime.since(other, { largestUnit });
+ }).toThrowWithMessage(
+ RangeError,
+ `${largestUnit} is not a valid value for option largestUnit`
+ );
+ }
+ });
+});