From 6573cf954b81171b00b55bb7404d1ee46b5b0db6 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 25 May 2022 14:07:37 +0200 Subject: [PATCH] Temporal: Add tests that subclass constructors work. --- test/built-ins/Temporal/Calendar/subclass.js | 17 +++++++++++++++++ test/built-ins/Temporal/Duration/subclass.js | 18 ++++++++++++++++++ test/built-ins/Temporal/Instant/subclass.js | 17 +++++++++++++++++ test/built-ins/Temporal/PlainDate/subclass.js | 18 ++++++++++++++++++ .../Temporal/PlainDateTime/subclass.js | 18 ++++++++++++++++++ .../Temporal/PlainMonthDay/subclass.js | 18 ++++++++++++++++++ test/built-ins/Temporal/PlainTime/subclass.js | 18 ++++++++++++++++++ .../Temporal/PlainYearMonth/subclass.js | 18 ++++++++++++++++++ test/built-ins/Temporal/TimeZone/subclass.js | 17 +++++++++++++++++ .../Temporal/ZonedDateTime/subclass.js | 17 +++++++++++++++++ 10 files changed, 176 insertions(+) create mode 100644 test/built-ins/Temporal/Calendar/subclass.js create mode 100644 test/built-ins/Temporal/Duration/subclass.js create mode 100644 test/built-ins/Temporal/Instant/subclass.js create mode 100644 test/built-ins/Temporal/PlainDate/subclass.js create mode 100644 test/built-ins/Temporal/PlainDateTime/subclass.js create mode 100644 test/built-ins/Temporal/PlainMonthDay/subclass.js create mode 100644 test/built-ins/Temporal/PlainTime/subclass.js create mode 100644 test/built-ins/Temporal/PlainYearMonth/subclass.js create mode 100644 test/built-ins/Temporal/TimeZone/subclass.js create mode 100644 test/built-ins/Temporal/ZonedDateTime/subclass.js diff --git a/test/built-ins/Temporal/Calendar/subclass.js b/test/built-ins/Temporal/Calendar/subclass.js new file mode 100644 index 0000000000..9f50df4436 --- /dev/null +++ b/test/built-ins/Temporal/Calendar/subclass.js @@ -0,0 +1,17 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.calendar +description: Test for Temporal.Calendar subclassing. +flags: [Temporal] +---*/ + +class CustomCalendar extends Temporal.Calendar { +} + +const instance = new CustomCalendar("iso8601"); +assert.sameValue(instance.toString(), "iso8601"); +assert.sameValue(Object.getPrototypeOf(instance), CustomCalendar.prototype, "Instance of CustomCalendar"); +assert(instance instanceof CustomCalendar, "Instance of CustomCalendar"); +assert(instance instanceof Temporal.Calendar, "Instance of Temporal.Calendar"); diff --git a/test/built-ins/Temporal/Duration/subclass.js b/test/built-ins/Temporal/Duration/subclass.js new file mode 100644 index 0000000000..1d3432dbb7 --- /dev/null +++ b/test/built-ins/Temporal/Duration/subclass.js @@ -0,0 +1,18 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.duration +description: Test for Temporal.Duration subclassing. +includes: [temporalHelpers.js] +flags: [Temporal] +---*/ + +class CustomDuration extends Temporal.Duration { +} + +const instance = new CustomDuration(1, 1, 0, 1); +TemporalHelpers.assertDuration(instance, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0); +assert.sameValue(Object.getPrototypeOf(instance), CustomDuration.prototype, "Instance of CustomDuration"); +assert(instance instanceof CustomDuration, "Instance of CustomDuration"); +assert(instance instanceof Temporal.Duration, "Instance of Temporal.Duration"); diff --git a/test/built-ins/Temporal/Instant/subclass.js b/test/built-ins/Temporal/Instant/subclass.js new file mode 100644 index 0000000000..5f994a3015 --- /dev/null +++ b/test/built-ins/Temporal/Instant/subclass.js @@ -0,0 +1,17 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.instant +description: Test for Temporal.Instant subclassing. +flags: [Temporal] +---*/ + +class CustomInstant extends Temporal.Instant { +} + +const instance = new CustomInstant(0n); +assert.sameValue(instance.epochNanoseconds, 0n); +assert.sameValue(Object.getPrototypeOf(instance), CustomInstant.prototype, "Instance of CustomInstant"); +assert(instance instanceof CustomInstant, "Instance of CustomInstant"); +assert(instance instanceof Temporal.Instant, "Instance of Temporal.Instant"); diff --git a/test/built-ins/Temporal/PlainDate/subclass.js b/test/built-ins/Temporal/PlainDate/subclass.js new file mode 100644 index 0000000000..4f935dad95 --- /dev/null +++ b/test/built-ins/Temporal/PlainDate/subclass.js @@ -0,0 +1,18 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.plaindate +description: Test for Temporal.PlainDate subclassing. +includes: [temporalHelpers.js] +flags: [Temporal] +---*/ + +class CustomPlainDate extends Temporal.PlainDate { +} + +const instance = new CustomPlainDate(2000, 5, 2); +TemporalHelpers.assertPlainDate(instance, 2000, 5, "M05", 2); +assert.sameValue(Object.getPrototypeOf(instance), CustomPlainDate.prototype, "Instance of CustomPlainDate"); +assert(instance instanceof CustomPlainDate, "Instance of CustomPlainDate"); +assert(instance instanceof Temporal.PlainDate, "Instance of Temporal.PlainDate"); diff --git a/test/built-ins/Temporal/PlainDateTime/subclass.js b/test/built-ins/Temporal/PlainDateTime/subclass.js new file mode 100644 index 0000000000..2d9e0d993c --- /dev/null +++ b/test/built-ins/Temporal/PlainDateTime/subclass.js @@ -0,0 +1,18 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.plaindatetime +description: Test for Temporal.PlainDateTime subclassing. +includes: [temporalHelpers.js] +flags: [Temporal] +---*/ + +class CustomPlainDateTime extends Temporal.PlainDateTime { +} + +const instance = new CustomPlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321); +TemporalHelpers.assertPlainDateTime(instance, 2000, 5, "M05", 2, 12, 34, 56, 987, 654, 321); +assert.sameValue(Object.getPrototypeOf(instance), CustomPlainDateTime.prototype, "Instance of CustomPlainDateTime"); +assert(instance instanceof CustomPlainDateTime, "Instance of CustomPlainDateTime"); +assert(instance instanceof Temporal.PlainDateTime, "Instance of Temporal.PlainDateTime"); diff --git a/test/built-ins/Temporal/PlainMonthDay/subclass.js b/test/built-ins/Temporal/PlainMonthDay/subclass.js new file mode 100644 index 0000000000..6371563ef1 --- /dev/null +++ b/test/built-ins/Temporal/PlainMonthDay/subclass.js @@ -0,0 +1,18 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.plainmonthday +description: Test for Temporal.PlainMonthDay subclassing. +includes: [temporalHelpers.js] +flags: [Temporal] +---*/ + +class CustomPlainMonthDay extends Temporal.PlainMonthDay { +} + +const instance = new CustomPlainMonthDay(5, 2); +TemporalHelpers.assertPlainMonthDay(instance, "M05", 2); +assert.sameValue(Object.getPrototypeOf(instance), CustomPlainMonthDay.prototype, "Instance of CustomPlainMonthDay"); +assert(instance instanceof CustomPlainMonthDay, "Instance of CustomPlainMonthDay"); +assert(instance instanceof Temporal.PlainMonthDay, "Instance of Temporal.PlainMonthDay"); diff --git a/test/built-ins/Temporal/PlainTime/subclass.js b/test/built-ins/Temporal/PlainTime/subclass.js new file mode 100644 index 0000000000..70ecad1edf --- /dev/null +++ b/test/built-ins/Temporal/PlainTime/subclass.js @@ -0,0 +1,18 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.plaintime +description: Test for Temporal.PlainTime subclassing. +includes: [temporalHelpers.js] +flags: [Temporal] +---*/ + +class CustomPlainTime extends Temporal.PlainTime { +} + +const instance = new CustomPlainTime(12, 34, 56, 987, 654, 321); +TemporalHelpers.assertPlainTime(instance, 12, 34, 56, 987, 654, 321); +assert.sameValue(Object.getPrototypeOf(instance), CustomPlainTime.prototype, "Instance of CustomPlainTime"); +assert(instance instanceof CustomPlainTime, "Instance of CustomPlainTime"); +assert(instance instanceof Temporal.PlainTime, "Instance of Temporal.PlainTime"); diff --git a/test/built-ins/Temporal/PlainYearMonth/subclass.js b/test/built-ins/Temporal/PlainYearMonth/subclass.js new file mode 100644 index 0000000000..d9964f9438 --- /dev/null +++ b/test/built-ins/Temporal/PlainYearMonth/subclass.js @@ -0,0 +1,18 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.plainyearmonth +description: Test for Temporal.PlainYearMonth subclassing. +includes: [temporalHelpers.js] +flags: [Temporal] +---*/ + +class CustomPlainYearMonth extends Temporal.PlainYearMonth { +} + +const instance = new CustomPlainYearMonth(2000, 5); +TemporalHelpers.assertPlainYearMonth(instance, 2000, 5, "M05"); +assert.sameValue(Object.getPrototypeOf(instance), CustomPlainYearMonth.prototype, "Instance of CustomPlainYearMonth"); +assert(instance instanceof CustomPlainYearMonth, "Instance of CustomPlainYearMonth"); +assert(instance instanceof Temporal.PlainYearMonth, "Instance of Temporal.PlainYearMonth"); diff --git a/test/built-ins/Temporal/TimeZone/subclass.js b/test/built-ins/Temporal/TimeZone/subclass.js new file mode 100644 index 0000000000..c02ddac6f8 --- /dev/null +++ b/test/built-ins/Temporal/TimeZone/subclass.js @@ -0,0 +1,17 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.timezone +description: Test for Temporal.TimeZone subclassing. +flags: [Temporal] +---*/ + +class CustomTimeZone extends Temporal.TimeZone { +} + +const instance = new CustomTimeZone("UTC"); +assert.sameValue(instance.toString(), "UTC"); +assert.sameValue(Object.getPrototypeOf(instance), CustomTimeZone.prototype, "Instance of CustomTimeZone"); +assert(instance instanceof CustomTimeZone, "Instance of CustomTimeZone"); +assert(instance instanceof Temporal.TimeZone, "Instance of Temporal.TimeZone"); diff --git a/test/built-ins/Temporal/ZonedDateTime/subclass.js b/test/built-ins/Temporal/ZonedDateTime/subclass.js new file mode 100644 index 0000000000..2e27f878b4 --- /dev/null +++ b/test/built-ins/Temporal/ZonedDateTime/subclass.js @@ -0,0 +1,17 @@ +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-temporal.zoneddatetime +description: Test for Temporal.ZonedDateTime subclassing. +flags: [Temporal] +---*/ + +class CustomZonedDateTime extends Temporal.ZonedDateTime { +} + +const instance = new CustomZonedDateTime(0n, "UTC"); +assert.sameValue(instance.epochNanoseconds, 0n); +assert.sameValue(Object.getPrototypeOf(instance), CustomZonedDateTime.prototype, "Instance of CustomZonedDateTime"); +assert(instance instanceof CustomZonedDateTime, "Instance of CustomZonedDateTime"); +assert(instance instanceof Temporal.ZonedDateTime, "Instance of Temporal.ZonedDateTime");