Temporal: Fix tests that unnecessarily create TimeZone or Calendar instances

In many cases we created a TimeZone or Calendar instance from a built-in
time zone or calendar. These tests can be trivially adapted to just use
the string ID.
This commit is contained in:
Philip Chimento 2024-06-04 11:25:38 +02:00 committed by Ms2ger
parent ea2268aa43
commit c728e6d89e
210 changed files with 279 additions and 382 deletions

View File

@ -342,7 +342,7 @@ var TemporalHelpers = {
const actual = [];
const expected = [];
const calendar = new Temporal.Calendar("iso8601");
const calendar = "iso8601";
const datetime = new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321, calendar);
const prototypeDescrs = Object.getOwnPropertyDescriptors(Temporal.PlainDateTime.prototype);
["year", "month", "monthCode", "day", "hour", "minute", "second", "millisecond", "microsecond", "nanosecond"].forEach((property) => {
@ -964,8 +964,7 @@ var TemporalHelpers = {
const actual = [];
const expected = [];
const calendar = new Temporal.Calendar("iso8601");
const date = new Temporal.PlainDate(2000, 5, 2, calendar);
const date = new Temporal.PlainDate(2000, 5, 2, "iso8601");
const prototypeDescrs = Object.getOwnPropertyDescriptors(Temporal.PlainDate.prototype);
["year", "month", "monthCode", "day"].forEach((property) => {
Object.defineProperty(date, property, {

View File

@ -7,7 +7,6 @@ description: relativeTo property bag with offset property is rejected if offset
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const d1 = new Temporal.Duration(0, 1, 0, 280);
const d2 = new Temporal.Duration(0, 1, 0, 281);
@ -21,7 +20,7 @@ const badOffsets = [
1000n, // must be a string
];
badOffsets.forEach((offset) => {
const relativeTo = { year: 2021, month: 10, day: 28, offset, timeZone };
const relativeTo = { year: 2021, month: 10, day: 28, offset, timeZone: "UTC" };
assert.throws(
typeof(offset) === 'string' ? RangeError : TypeError,
() => Temporal.Duration.compare(d1, d2, { relativeTo }),

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.Duration(1, 0, 0, 0, 24);
const primitiveTests = [

View File

@ -7,7 +7,7 @@ description: relativeTo property bag with offset property is rejected if offset
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.Duration(1, 0, 0, 0, 24);
const badOffsets = [

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone('UTC');
const timeZone = "UTC";
const instance = new Temporal.Duration(1, 0, 0, 0, 24);
const primitiveTests = [

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.Duration(1, 0, 0, 0, 24);
const primitiveTests = [

View File

@ -7,7 +7,7 @@ description: relativeTo property bag with offset property is rejected if offset
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.Duration(1, 0, 0, 0, 24);
const badOffsets = [

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone('UTC');
const timeZone = "UTC";
const instance = new Temporal.Duration(1, 0, 0, 0, 24);
const primitiveTests = [

View File

@ -10,8 +10,7 @@ features: [BigInt, Temporal]
const instant = new Temporal.Instant(0n);
function test(timeZoneIdentifier, expected, description) {
const timeZone = new Temporal.TimeZone(timeZoneIdentifier);
assert.sameValue(instant.toString({ timeZone }), expected, description);
assert.sameValue(instant.toString({ timeZone: timeZoneIdentifier }), expected, description);
}
test("UTC", "1970-01-01T00:00:00+00:00", "offset of UTC is +00:00");

View File

@ -11,7 +11,7 @@ const toZonedDateTimeISO = Temporal.Instant.prototype.toZonedDateTimeISO;
assert.sameValue(typeof toZonedDateTimeISO, "function");
const args = [{ timeZone: new Temporal.TimeZone("UTC") }];
const args = [{ timeZone: "UTC" }];
assert.throws(TypeError, () => toZonedDateTimeISO.apply(undefined, args), "undefined");
assert.throws(TypeError, () => toZonedDateTimeISO.apply(null, args), "null");

View File

@ -8,7 +8,7 @@ includes: [temporalHelpers.js]
features: [Temporal]
---*/
const calendar = new Temporal.Calendar("iso8601");
const calendar = "iso8601";
const plainDate = Temporal.PlainDate.from({ year: 1976, month: 11, day: 18, calendar });
TemporalHelpers.assertPlainDate(plainDate, 1976, 11, "M11", 18);
assert.sameValue(plainDate.getISOFields().calendar, "iso8601", "calendar slot should store a string");

View File

@ -8,7 +8,7 @@ includes: [temporalHelpers.js]
features: [Temporal]
---*/
const calendar = new Temporal.Calendar("iso8601");
const calendar = "iso8601";
const zdt = new Temporal.ZonedDateTime(1_000_000_000_987_654_321n, "UTC", calendar);
const result = Temporal.PlainDate.from(zdt);

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.PlainDate(2000, 5, 2);
const primitiveTests = [

View File

@ -9,7 +9,6 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.PlainDate(2000, 5, 2);
const primitiveTests = [

View File

@ -8,8 +8,7 @@ includes: [temporalHelpers.js]
features: [Temporal]
---*/
const calendar = new Temporal.Calendar("iso8601");
const pd = new Temporal.PlainDate(1970, 12, 24, calendar);
const pd = new Temporal.PlainDate(1970, 12, 24, "iso8601");
const pmd = pd.toPlainMonthDay();
TemporalHelpers.assertPlainMonthDay(pmd, "M12", 24);
assert.sameValue(pmd.getISOFields().calendar, "iso8601");

View File

@ -8,8 +8,7 @@ includes: [temporalHelpers.js]
features: [Temporal]
---*/
const calendar = new Temporal.Calendar("iso8601");
const pd = new Temporal.PlainDate(1970, 12, 24, calendar);
const pd = new Temporal.PlainDate(1970, 12, 24, "iso8601");
const pym = pd.toPlainYearMonth();
TemporalHelpers.assertPlainYearMonth(pym, 1970, 12, "M12");
assert.sameValue(pym.getISOFields().calendar, "iso8601");

View File

@ -8,7 +8,7 @@ features: [Temporal]
---*/
const plainDate = Temporal.PlainDate.from("2020-01-01");
const timeZone = Temporal.TimeZone.from("UTC");
const timeZone = "UTC";
const plainTime = Temporal.PlainTime.from("12:00");
let result = plainDate.toZonedDateTime({ timeZone, plainTime });
@ -17,13 +17,7 @@ assert.sameValue(result.toString(), "2020-01-01T12:00:00+00:00[UTC]", "objects p
result = plainDate.toZonedDateTime(timeZone);
assert.sameValue(result.toString(), "2020-01-01T00:00:00+00:00[UTC]", "time zone object argument");
result = plainDate.toZonedDateTime("UTC");
assert.sameValue(result.toString(), "2020-01-01T00:00:00+00:00[UTC]", "time zone string argument");
result = plainDate.toZonedDateTime({ timeZone });
assert.sameValue(result.toString(), "2020-01-01T00:00:00+00:00[UTC]", "time zone object property");
result = plainDate.toZonedDateTime({ timeZone: "UTC", plainTime });
result = plainDate.toZonedDateTime({ timeZone, plainTime });
assert.sameValue(result.toString(), "2020-01-01T12:00:00+00:00[UTC]", "time zone string property");
result = plainDate.toZonedDateTime({ timeZone, plainTime: "12:00" });

View File

@ -11,7 +11,7 @@ const toZonedDateTime = Temporal.PlainDate.prototype.toZonedDateTime;
assert.sameValue(typeof toZonedDateTime, "function");
const args = [new Temporal.TimeZone("UTC")];
const args = ["UTC"];
assert.throws(TypeError, () => toZonedDateTime.apply(undefined, args), "undefined");
assert.throws(TypeError, () => toZonedDateTime.apply(null, args), "null");

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.PlainDate(2000, 5, 2);
const primitiveTests = [

View File

@ -9,20 +9,9 @@ features: [Temporal]
---*/
const plainDate = Temporal.PlainDate.from("1976-11-18");
const calendar = Temporal.Calendar.from("iso8601");
const objectResult = plainDate.withCalendar(calendar);
assert.notSameValue(objectResult, plainDate, "object: new object");
TemporalHelpers.assertPlainDate(objectResult, 1976, 11, "M11", 18, "object");
assert.sameValue(objectResult.getISOFields().calendar, calendar, "object: calendar");
const calendar = "iso8601";
const stringResult = plainDate.withCalendar("iso8601");
assert.notSameValue(stringResult, plainDate, "string: new object");
TemporalHelpers.assertPlainDate(stringResult, 1976, 11, "M11", 18, "string");
assert.sameValue(stringResult.getISOFields().calendar, "iso8601", "string: calendar slot stores a string");
const originalCalendar = plainDate.getISOFields().calendar;
const sameResult = plainDate.withCalendar(originalCalendar);
assert.notSameValue(sameResult, plainDate, "original: new object");
TemporalHelpers.assertPlainDate(sameResult, 1976, 11, "M11", 18, "original");
assert.sameValue(sameResult.getISOFields().calendar, originalCalendar, "original: calendar slot stores and object");

View File

@ -11,7 +11,7 @@ const withCalendar = Temporal.PlainDate.prototype.withCalendar;
assert.sameValue(typeof withCalendar, "function");
const args = [new Temporal.Calendar("iso8601")];
const args = ["iso8601"];
assert.throws(TypeError, () => withCalendar.apply(undefined, args), "undefined");
assert.throws(TypeError, () => withCalendar.apply(null, args), "null");

View File

@ -8,8 +8,7 @@ features: [Temporal]
includes: [temporalHelpers.js]
---*/
const calendar = Temporal.Calendar.from("iso8601");
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, calendar);
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, "iso8601");
TemporalHelpers.assertPlainDateTime(datetime,
1976, 11, "M11", 18, 15, 23, 30, 123, 456, 789,
@ -18,6 +17,6 @@ TemporalHelpers.assertPlainDateTime(datetime,
assert.sameValue(
datetime.getISOFields().calendar,
calendar,
"iso8601",
"calendar supplied in constructor can be extracted and is unchanged"
);

View File

@ -7,6 +7,5 @@ description: Checking day of week for a "normal" case (non-undefined, non-bounda
features: [Temporal]
---*/
const calendar = Temporal.Calendar.from("iso8601");
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, calendar);
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, "iso8601");
assert.sameValue(datetime.dayOfWeek, 4, "check day of week information");

View File

@ -7,6 +7,5 @@ description: Checking day of year for a "normal" case (non-undefined, non-bounda
features: [Temporal]
---*/
const calendar = Temporal.Calendar.from("iso8601");
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, calendar);
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, "iso8601");
assert.sameValue(datetime.dayOfYear, 323, "check day of year information");

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321);
const primitiveTests = [

View File

@ -7,6 +7,5 @@ description: Checking months in year for a "normal" case (non-undefined, non-bou
features: [Temporal]
---*/
const calendar = Temporal.Calendar.from("iso8601");
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, calendar);
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, "iso8601");
assert.sameValue(datetime.monthsInYear, 12, "check months in year information");

View File

@ -9,7 +9,6 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321);
const primitiveTests = [

View File

@ -7,7 +7,6 @@ description: Checking the string form of an explicitly constructed instance with
features: [Temporal]
---*/
const calendar = Temporal.Calendar.from("iso8601");
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, calendar);
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, "iso8601");
assert.sameValue(datetime.toString(), "1976-11-18T15:23:30.123456789", "check string value");

View File

@ -11,7 +11,7 @@ const toZonedDateTime = Temporal.PlainDateTime.prototype.toZonedDateTime;
assert.sameValue(typeof toZonedDateTime, "function");
const args = [new Temporal.TimeZone("UTC")];
const args = ["UTC"];
assert.throws(TypeError, () => toZonedDateTime.apply(undefined, args), "undefined");
assert.throws(TypeError, () => toZonedDateTime.apply(null, args), "null");

View File

@ -15,12 +15,11 @@ features: [Temporal]
---*/
const datetime = new Temporal.PlainDateTime(2001, 9, 9, 1, 46, 40, 987, 654, 321);
const timeZone = new Temporal.TimeZone("UTC");
const invalidStrings = ["obviously bad", "", "EARLIER", "earlıer", "late\u0131r", "reject\0"];
invalidStrings.forEach((s) => {
assert.throws(
RangeError,
() => datetime.toZonedDateTime(timeZone, { disambiguation: s }),
() => datetime.toZonedDateTime("UTC", { disambiguation: s }),
`invalid disambiguation string (${s})`);
});

View File

@ -16,8 +16,7 @@ features: [Temporal]
---*/
const datetime = new Temporal.PlainDateTime(2001, 9, 9, 1, 46, 40, 987, 654, 321);
const timeZone = new Temporal.TimeZone("UTC");
TemporalHelpers.checkStringOptionWrongType("disambiguation", "compatible",
(disambiguation) => datetime.toZonedDateTime(timeZone, { disambiguation }),
(disambiguation) => datetime.toZonedDateTime("UTC", { disambiguation }),
(result, descr) => assert.sameValue(result.epochNanoseconds, 1_000_000_000_987_654_321n, descr),
);

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321);
const primitiveTests = [

View File

@ -7,6 +7,5 @@ description: Checking week of year for a "normal" case (non-undefined, non-bound
features: [Temporal]
---*/
const calendar = Temporal.Calendar.from("iso8601");
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, calendar);
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, "iso8601");
assert.sameValue(datetime.weekOfYear, 47, "check week of year information");

View File

@ -9,7 +9,7 @@ includes: [temporalHelpers.js]
---*/
const dt = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789);
const calendar = new Temporal.Calendar("iso8601");
const calendar = "iso8601";
const result = dt.withCalendar(calendar);

View File

@ -11,7 +11,7 @@ const withCalendar = Temporal.PlainDateTime.prototype.withCalendar;
assert.sameValue(typeof withCalendar, "function");
const args = [new Temporal.Calendar("iso8601")];
const args = ["iso8601"];
assert.throws(TypeError, () => withCalendar.apply(undefined, args), "undefined");
assert.throws(TypeError, () => withCalendar.apply(null, args), "null");

View File

@ -7,6 +7,5 @@ description: Checking yearOfWeek for a "normal" case (non-undefined, non-boundar
features: [Temporal]
---*/
const calendar = Temporal.Calendar.from("iso8601");
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, calendar);
const datetime = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, "iso8601");
assert.sameValue(datetime.yearOfWeek, 1976, "check yearOfWeek information");

View File

@ -8,11 +8,9 @@ includes: [compareArray.js, temporalHelpers.js]
features: [Temporal]
---*/
const isoCalendar = Temporal.Calendar.from('iso8601');
assert.throws(RangeError, () => new Temporal.PlainMonthDay(Infinity, 1));
assert.throws(RangeError, () => new Temporal.PlainMonthDay(1, Infinity));
assert.throws(RangeError, () => new Temporal.PlainMonthDay(1, 1, isoCalendar, Infinity));
assert.throws(RangeError, () => new Temporal.PlainMonthDay(1, 1, "iso8601", Infinity));
const O = (primitiveValue, propertyName) => (calls) => TemporalHelpers.toPrimitiveObserver(calls, primitiveValue, propertyName);
const tests = [

View File

@ -8,11 +8,9 @@ includes: [compareArray.js, temporalHelpers.js]
features: [Temporal]
---*/
const isoCalendar = Temporal.Calendar.from('iso8601');
assert.throws(RangeError, () => new Temporal.PlainMonthDay(-Infinity, 1));
assert.throws(RangeError, () => new Temporal.PlainMonthDay(1, -Infinity));
assert.throws(RangeError, () => new Temporal.PlainMonthDay(1, 1, isoCalendar, -Infinity));
assert.throws(RangeError, () => new Temporal.PlainMonthDay(1, 1, "iso8601", -Infinity));
const O = (primitiveValue, propertyName) => (calls) => TemporalHelpers.toPrimitiveObserver(calls, primitiveValue, propertyName);
const tests = [

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.PlainMonthDay(5, 2);
const primitiveTests = [

View File

@ -7,7 +7,5 @@ description: referenceISOYear argument, if given, can cause RangeError
features: [Temporal]
---*/
const calendar = new Temporal.Calendar("iso8601");
assert.throws(RangeError, () => new Temporal.PlainMonthDay(9, 14, calendar, 275760), "after the maximum ISO date");
assert.throws(RangeError, () => new Temporal.PlainMonthDay(4, 18, calendar, -271821), "before the minimum ISO date")
assert.throws(RangeError, () => new Temporal.PlainMonthDay(9, 14, "iso8601", 275760), "after the maximum ISO date");
assert.throws(RangeError, () => new Temporal.PlainMonthDay(4, 18, "iso8601", -271821), "before the minimum ISO date")

View File

@ -7,8 +7,7 @@ description: referenceISOYear argument defaults to 1972 if not given
features: [Temporal]
---*/
const calendar = new Temporal.Calendar("iso8601");
const args = [5, 2, calendar];
const args = [5, 2, "iso8601"];
const dateExplicit = new Temporal.PlainMonthDay(...args, undefined);
assert.sameValue(dateExplicit.getISOFields().isoYear, 1972, "default referenceISOYear is 1972");

View File

@ -7,7 +7,6 @@ description: compare() takes the reference day into account
features: [Temporal]
---*/
const iso = Temporal.Calendar.from("iso8601");
const ym1 = new Temporal.PlainYearMonth(2000, 1, iso, 1);
const ym2 = new Temporal.PlainYearMonth(2000, 1, iso, 2);
const ym1 = new Temporal.PlainYearMonth(2000, 1, "iso8601", 1);
const ym2 = new Temporal.PlainYearMonth(2000, 1, "iso8601", 2);
assert.sameValue(Temporal.PlainYearMonth.compare(ym1, ym2), -1);

View File

@ -8,11 +8,9 @@ includes: [compareArray.js, temporalHelpers.js]
features: [Temporal]
---*/
const isoCalendar = Temporal.Calendar.from('iso8601');
assert.throws(RangeError, () => new Temporal.PlainYearMonth(Infinity, 1));
assert.throws(RangeError, () => new Temporal.PlainYearMonth(1970, Infinity));
assert.throws(RangeError, () => new Temporal.PlainYearMonth(1970, 1, isoCalendar, Infinity));
assert.throws(RangeError, () => new Temporal.PlainYearMonth(1970, 1, "iso8601", Infinity));
const O = (primitiveValue, propertyName) => (calls) => TemporalHelpers.toPrimitiveObserver(calls, primitiveValue, propertyName);
const tests = [

View File

@ -8,11 +8,10 @@ includes: [compareArray.js, temporalHelpers.js]
features: [Temporal]
---*/
const isoCalendar = Temporal.Calendar.from('iso8601');
assert.throws(RangeError, () => new Temporal.PlainYearMonth(-Infinity, 1));
assert.throws(RangeError, () => new Temporal.PlainYearMonth(1970, -Infinity));
assert.throws(RangeError, () => new Temporal.PlainYearMonth(1970, 1, isoCalendar, -Infinity));
assert.throws(RangeError, () => new Temporal.PlainYearMonth(1970, 1, "iso8601", -Infinity));
const O = (primitiveValue, propertyName) => (calls) => TemporalHelpers.toPrimitiveObserver(calls, primitiveValue, propertyName);
const tests = [

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.PlainYearMonth(2000, 5);
const primitiveTests = [

View File

@ -7,7 +7,6 @@ description: equals() takes the reference day into account
features: [Temporal]
---*/
const iso = Temporal.Calendar.from("iso8601");
const ym1 = new Temporal.PlainYearMonth(2000, 1, iso, 1);
const ym2 = new Temporal.PlainYearMonth(2000, 1, iso, 2);
const ym1 = new Temporal.PlainYearMonth(2000, 1, "iso8601", 1);
const ym2 = new Temporal.PlainYearMonth(2000, 1, "iso8601", 2);
assert.sameValue(ym1.equals(ym2), false);

View File

@ -9,7 +9,6 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.PlainYearMonth(2000, 5);
const primitiveTests = [

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.PlainYearMonth(2000, 5);
const primitiveTests = [

View File

@ -7,8 +7,7 @@ description: referenceISODay argument defaults to 1 if not given
features: [Temporal]
---*/
const calendar = new Temporal.Calendar("iso8601");
const args = [2000, 5, calendar];
const args = [2000, 5];
const dateExplicit = new Temporal.PlainYearMonth(...args, undefined);
assert.sameValue(dateExplicit.getISOFields().isoDay, 1, "default referenceISODay is 1");

View File

@ -7,13 +7,13 @@ description: Calendar argument defaults to the built-in ISO 8601 calendar
features: [BigInt, Temporal]
---*/
const args = [957270896987654321n, new Temporal.TimeZone("UTC")];
Object.defineProperty(Temporal.Calendar, "from", {
get() {
throw new Test262Error("Should not get Calendar.from");
},
});
const args = [957270896987654321n, "UTC"];
const explicit = new Temporal.ZonedDateTime(...args, undefined);
assert.sameValue(explicit.getISOFields().calendar, "iso8601", "calendar slot should store a string");

View File

@ -7,7 +7,7 @@ description: The calendar name is case-insensitive
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const datetime = new Temporal.ZonedDateTime(0n, timeZone);
const arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: "IsO8601" };

View File

@ -7,7 +7,7 @@ description: Leap second is a valid ISO string for a calendar in a property bag
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const datetime = new Temporal.ZonedDateTime(217_123_200_000_000_000n, timeZone);
const calendar = "2016-12-31T23:59:60+00:00[UTC]";

View File

@ -7,7 +7,7 @@ description: A number as calendar in a property bag is not accepted
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const datetime = new Temporal.ZonedDateTime(0n, timeZone);
const numbers = [

View File

@ -19,7 +19,7 @@ Object.defineProperty(Temporal.Calendar.prototype, "dateFromFields", {
const calendar = "iso8601";
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const datetime = new Temporal.ZonedDateTime(0n, timeZone);
const arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar };

View File

@ -5,11 +5,11 @@
esid: sec-temporal.zoneddatetime.compare
description: >
Appropriate error thrown when a calendar property from a property bag cannot
be converted to a calendar object or string
be converted to a calendar ID
features: [BigInt, Symbol, Temporal]
---*/
const datetime = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone("UTC"));
const datetime = new Temporal.ZonedDateTime(0n, "UTC");
const primitiveTests = [
[null, "null"],

View File

@ -7,7 +7,7 @@ description: Negative zero, as an extended year, is rejected
features: [Temporal, arrow-function]
---*/
const datetime = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone("UTC"));
const datetime = new Temporal.ZonedDateTime(0n, "UTC");
const invalidStrings = [
"-000000-10-31",
"-000000-10-31T17:45",

View File

@ -7,7 +7,7 @@ description: Property bag with offset property is rejected if offset is in the w
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const datetime = new Temporal.ZonedDateTime(1_000_000_000_987_654_321n, timeZone);
const badOffsets = [

View File

@ -7,7 +7,7 @@ description: Property bag with offset property is rejected if offset does not ag
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("+01:00");
const timeZone = "+01:00";
const datetime = new Temporal.ZonedDateTime(0n, timeZone);
const properties = { year: 2021, month: 10, day: 28, offset: "-07:00", timeZone };

View File

@ -7,7 +7,7 @@ description: Negative zero, as an extended year, is rejected
features: [Temporal, arrow-function]
---*/
const datetime = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone("UTC"));
const datetime = new Temporal.ZonedDateTime(0n, "UTC");
const invalidStrings = [
"-000000-10-31T17:45Z",
"-000000-10-31T17:45+00:00[UTC]",

View File

@ -26,7 +26,7 @@ Object.defineProperty(Temporal.TimeZone.prototype, "getOffsetNanosecondsFor", {
});
["UTC", "+01:30"].forEach((timeZone) => {
const epoch = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone(timeZone));
const epoch = new Temporal.ZonedDateTime(0n, timeZone);
// These should be valid input and not throw
Temporal.ZonedDateTime.compare({ year: 2020, month: 5, day: 2, timeZone }, epoch);

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const datetime = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone("UTC"));
const datetime = new Temporal.ZonedDateTime(0n, "UTC");
const primitiveTests = [
[null, "null"],

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const other = new Temporal.ZonedDateTime(0n, timeZone);
const primitiveTests = [

View File

@ -7,7 +7,7 @@ description: Leap second is a valid ISO string for ZonedDateTime
features: [Temporal]
---*/
const datetime = new Temporal.ZonedDateTime(1_483_228_799_000_000_000n, new Temporal.TimeZone("UTC"));
const datetime = new Temporal.ZonedDateTime(1_483_228_799_000_000_000n, "UTC");
let arg = "2016-12-31T23:59:60+00:00[UTC]";
const result1 = Temporal.ZonedDateTime.compare(arg, datetime);

View File

@ -7,7 +7,7 @@ description: The calendar name is case-insensitive
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: "IsO8601" };
const result = Temporal.ZonedDateTime.from(arg);
assert.sameValue(result.calendarId, "iso8601", "Calendar is case-insensitive");

View File

@ -17,7 +17,7 @@ for (const calendar of [
"2020-01",
"2020-01[u-ca=iso8601]",
]) {
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar };
const result = Temporal.ZonedDateTime.from(arg);
assert.sameValue(result.calendarId, "iso8601", `Calendar created from string "${calendar}"`);

View File

@ -7,7 +7,7 @@ description: Leap second is a valid ISO string for a calendar in a property bag
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const calendar = "2016-12-31T23:59:60+00:00[UTC]";
const arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar };

View File

@ -6,8 +6,7 @@ esid: sec-temporal.zoneddatetime.from
description: A number as calendar in a property bag is not accepted
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const numbers = [
1,

View File

@ -9,7 +9,7 @@ features: [Temporal]
const calendar = "iso8601";
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar };
const result = Temporal.ZonedDateTime.from(arg);
assert.sameValue(result.calendarId, "iso8601", `Calendar created from string "${calendar}"`);

View File

@ -7,7 +7,7 @@ description: Property bag with offset property is rejected if offset is in the w
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const offsetOptions = ['use', 'prefer', 'ignore', 'reject'];

View File

@ -7,7 +7,7 @@ description: Property bag with offset property is rejected if offset does not ag
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("+01:00");
const timeZone = "+01:00";
const properties = { year: 2021, month: 10, day: 28, offset: "-07:00", timeZone };
assert.throws(RangeError, () => Temporal.ZonedDateTime.from(properties), "offset property not matching time zone is rejected");

View File

@ -7,7 +7,7 @@ description: A ZonedDateTime object is copied, not returned directly
features: [Temporal]
---*/
const orig = new Temporal.ZonedDateTime(946684800_000_000_010n, new Temporal.TimeZone("UTC"));
const orig = new Temporal.ZonedDateTime(946684800_000_000_010n, "UTC");
const result = Temporal.ZonedDateTime.from(orig);
assert.sameValue(result.epochNanoseconds, 946684800_000_000_010n, "ZonedDateTime is copied");

View File

@ -24,6 +24,5 @@ features: [Temporal]
const datetime = new Temporal.ZonedDateTime(1_000_000_000_987_654_321n, "UTC");
assert.throws(RangeError, () => Temporal.ZonedDateTime.from(datetime, { disambiguation: "other string" }));
const timeZone = new Temporal.TimeZone("UTC");
const propertyBag = { timeZone, year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
const propertyBag = { timeZone: "UTC", year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
assert.throws(RangeError, () => Temporal.ZonedDateTime.from(propertyBag, { disambiguation: "other string" }));

View File

@ -28,8 +28,7 @@ TemporalHelpers.checkStringOptionWrongType("disambiguation", "compatible",
(result, descr) => assert.sameValue(result.epochNanoseconds, 1_000_000_000_987_654_321n, descr),
);
const timeZone = new Temporal.TimeZone("UTC");
const propertyBag = { timeZone, year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
const propertyBag = { timeZone: "UTC", year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
TemporalHelpers.checkStringOptionWrongType("disambiguation", "compatible",
(disambiguation) => Temporal.ZonedDateTime.from(propertyBag, { disambiguation }),
(result, descr) => assert.sameValue(result.epochNanoseconds, 1_000_000_000_987_654_321n, descr),

View File

@ -23,6 +23,5 @@ features: [Temporal]
const datetime = new Temporal.ZonedDateTime(1_000_000_000_987_654_321n, "UTC");
assert.throws(RangeError, () => Temporal.ZonedDateTime.from(datetime, { offset: "other string" }));
const timeZone = new Temporal.TimeZone("UTC");
const propertyBag = { timeZone, year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
const propertyBag = { timeZone: "UTC", year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
assert.throws(RangeError, () => Temporal.ZonedDateTime.from(propertyBag, { offset: "other string" }));

View File

@ -20,8 +20,7 @@ info: |
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("-04:00");
const propertyBag = { timeZone, offset: "+01:00", year: 2020, month: 2, day: 16, hour: 23, minute: 45 };
const propertyBag = { timeZone: "-04:00", offset: "+01:00", year: 2020, month: 2, day: 16, hour: 23, minute: 45 };
assert.throws(RangeError, () => Temporal.ZonedDateTime.from(propertyBag, { offset: undefined }), "default offset is reject");
// See options-undefined.js for {}

View File

@ -27,8 +27,7 @@ TemporalHelpers.checkStringOptionWrongType("offset", "reject",
(result, descr) => assert.sameValue(result.epochNanoseconds, 1_000_000_000_987_654_321n, descr),
);
const timeZone = new Temporal.TimeZone("UTC");
const propertyBag = { timeZone, offset: "+00:00", year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
const propertyBag = { timeZone: "UTC", offset: "+00:00", year: 2001, month: 9, day: 9, hour: 1, minute: 46, second: 40, millisecond: 987, microsecond: 654, nanosecond: 321 };
TemporalHelpers.checkStringOptionWrongType("offset", "reject",
(offset) => Temporal.ZonedDateTime.from(propertyBag, { offset }),
(result, descr) => assert.sameValue(result.epochNanoseconds, 1_000_000_000_987_654_321n, descr),

View File

@ -7,7 +7,7 @@ description: The calendar name is case-insensitive
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const arg = { year: 1970, monthCode: "M01", day: 1, timeZone, calendar: "IsO8601" };

View File

@ -7,7 +7,7 @@ description: An ISO 8601 string can be converted to a calendar ID in Calendar
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
for (const calendar of [

View File

@ -7,7 +7,7 @@ description: Leap second is a valid ISO string for a calendar in a property bag
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const calendar = "2016-12-31T23:59:60+00:00[UTC]";

View File

@ -7,7 +7,7 @@ description: A number as calendar in a property bag is not accepted
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const numbers = [

View File

@ -7,7 +7,7 @@ description: A calendar ID is valid input for Calendar
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const calendar = "iso8601";

View File

@ -5,11 +5,11 @@
esid: sec-temporal.zoneddatetime.prototype.equals
description: >
Appropriate error thrown when a calendar property from a property bag cannot
be converted to a calendar object or string
be converted to a calendar ID
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const primitiveTests = [

View File

@ -14,7 +14,7 @@ const invalidStrings = [
"-000000-10-31T17:45+01:00",
"-000000-10-31T17:45+00:00[UTC]",
];
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
invalidStrings.forEach((str) => {
const arg = { year: 1976, month: 11, day: 18, calendar: str };

View File

@ -7,7 +7,7 @@ description: Property bag with offset property is rejected if offset is in the w
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const badOffsets = [

View File

@ -7,7 +7,7 @@ description: Property bag with offset property is rejected if offset does not ag
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("+01:00");
const timeZone = "+01:00";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const properties = { year: 2021, month: 10, day: 28, offset: "-07:00", timeZone };

View File

@ -7,7 +7,7 @@ description: Leap second is a valid ISO string for TimeZone
features: [Temporal]
---*/
const instance = new Temporal.ZonedDateTime(1588377600_000_000_000n, new Temporal.TimeZone("UTC"));
const instance = new Temporal.ZonedDateTime(1588377600_000_000_000n, "UTC");
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
assert(instance.equals({ year: 2020, month: 5, day: 2, timeZone }), "leap second is a valid ISO string for TimeZone");

View File

@ -11,7 +11,7 @@ const invalidStrings = [
"-000000-10-31T17:45Z",
"-000000-10-31T17:45+00:00[UTC]",
];
const instance = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone("UTC"));
const instance = new Temporal.ZonedDateTime(0n, "UTC");
invalidStrings.forEach((timeZone) => {
assert.throws(
RangeError,

View File

@ -25,10 +25,10 @@ Object.defineProperty(Temporal.TimeZone.prototype, "getOffsetNanosecondsFor", {
},
});
const instance1 = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone("UTC"));
const instance1 = new Temporal.ZonedDateTime(0n, "UTC");
assert(instance1.equals({ year: 1970, month: 1, day: 1, timeZone: "UTC" }), "Time zone created from string 'UTC'");
const instance2 = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone("-01:30"));
const instance2 = new Temporal.ZonedDateTime(0n, "-01:30");
assert(instance2.equals({ year: 1969, month: 12, day: 31, hour: 22, minute: 30, timeZone: "-01:30" }), "Time zone created from string '-01:30'");
Object.defineProperty(Temporal.TimeZone.prototype, "getPossibleInstantsFor", getPossibleInstantsForOriginal);

View File

@ -5,11 +5,11 @@
esid: sec-temporal.zoneddatetime.prototype.equals
description: >
Appropriate error thrown when argument cannot be converted to a valid string
or object for TimeZone
for time zone
features: [BigInt, Symbol, Temporal]
---*/
const instance = new Temporal.ZonedDateTime(0n, new Temporal.TimeZone("UTC"));
const instance = new Temporal.ZonedDateTime(0n, "UTC");
const primitiveTests = [
[null, "null"],

View File

@ -13,8 +13,7 @@ const tests = [
["1970-01-01T00:00[UTC][u-ca=iso8601][u-ca=discord]", "second annotation ignored"],
];
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const instance = new Temporal.ZonedDateTime(0n, "UTC");
tests.forEach(([arg, description]) => {
const result = instance.equals(arg);

View File

@ -13,8 +13,7 @@ const invalidStrings = [
"1970-01-01T00:00[UTC][u-ca=iso8601][!foo=bar]",
"1970-01-01T00:00[foo=bar][!_foo-bar0=Dont-Ignore-This-99999999999]",
];
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const instance = new Temporal.ZonedDateTime(0n, "UTC");
invalidStrings.forEach((arg) => {
assert.throws(
RangeError,

View File

@ -7,8 +7,7 @@ description: UTC offset not valid with format that does not include a time
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const instance = new Temporal.ZonedDateTime(0n, "UTC");
const validStrings = [
"1970-01-01T00Z[UTC]",

View File

@ -14,8 +14,7 @@ const invalidStrings = [
"1970-01-01T00:00[UTC][!u-ca=iso8601][u-ca=iso8601]",
"1970-01-01T00:00[UTC][u-ca=iso8601][foo=bar][!u-ca=iso8601]",
];
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const instance = new Temporal.ZonedDateTime(0n, "UTC");
invalidStrings.forEach((arg) => {
assert.throws(
RangeError,

View File

@ -14,8 +14,7 @@ const invalidStrings = [
"1970-01-01T00:00[UTC][u-ca=iso8601][UTC]",
"1970-01-01T00:00[UTC][foo=bar][UTC]",
];
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const instance = new Temporal.ZonedDateTime(0n, "UTC");
invalidStrings.forEach((arg) => {
assert.throws(
RangeError,

View File

@ -13,8 +13,7 @@ const tests = [
["1970-01-01 00:00+00:00[UTC]", "space between date and time"],
];
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const instance = new Temporal.ZonedDateTime(0n, "UTC");
tests.forEach(([arg, description]) => {
const result = instance.equals(arg);

View File

@ -23,8 +23,7 @@ const tests = [
];
tests.forEach(([arg, expectedZone, description]) => {
const timeZone = new Temporal.TimeZone(expectedZone);
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const instance = new Temporal.ZonedDateTime(0n, expectedZone);
const result = instance.equals(arg);
assert.sameValue(

View File

@ -14,8 +14,7 @@ const tests = [
["1970-01-01T00:00[UTC][foo=bar][_foo-bar0=Ignore-This-999999999999]", "with another unknown annotation"],
];
const timeZone = new Temporal.TimeZone("UTC");
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const instance = new Temporal.ZonedDateTime(0n, "UTC");
tests.forEach(([arg, description]) => {
const result = instance.equals(arg);

View File

@ -9,7 +9,7 @@ description: >
features: [BigInt, Symbol, Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(0n, timeZone);
const primitiveTests = [

View File

@ -11,7 +11,7 @@ const equals = Temporal.ZonedDateTime.prototype.equals;
assert.sameValue(typeof equals, "function");
const args = [new Temporal.ZonedDateTime(123456n, new Temporal.TimeZone("UTC"))];
const args = [new Temporal.ZonedDateTime(123456n, "UTC")];
assert.throws(TypeError, () => equals.apply(undefined, args), "undefined");
assert.throws(TypeError, () => equals.apply(null, args), "null");

View File

@ -7,7 +7,7 @@ description: Leap second is a valid ISO string for ZonedDateTime
features: [Temporal]
---*/
const timeZone = new Temporal.TimeZone("UTC");
const timeZone = "UTC";
const instance = new Temporal.ZonedDateTime(1_483_228_799_000_000_000n, timeZone);
let arg = "2016-12-31T23:59:60+00:00[UTC]";

Some files were not shown because too many files have changed in this diff Show More