mirror of https://github.com/tc39/test262.git
Temporal: Copy options object in {Plain,Zoned}DateTime.{from,p.with}
This commit is contained in:
parent
01a49502f6
commit
5ecb902a0a
test/built-ins/Temporal
PlainDateTime
from
observable-get-overflow-argument-primitive.jsobservable-get-overflow-argument-string-invalid.jsorder-of-operations.jsoverflow-wrong-type.js
prototype/with
ZonedDateTime
|
@ -0,0 +1,34 @@
|
|||
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.from
|
||||
description: overflow property is extracted with string argument.
|
||||
includes: [compareArray.js, temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const expected = [
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
];
|
||||
|
||||
let actual = [];
|
||||
const options = TemporalHelpers.propertyBagObserver(actual, { overflow: "reject" }, "options");
|
||||
|
||||
const result = Temporal.PlainDateTime.from("2021-05-17T12:34:56", options);
|
||||
assert.compareArray(actual, expected, "Successful call");
|
||||
TemporalHelpers.assertPlainDateTime(result, 2021, 5, "M05", 17, 12, 34, 56, 0, 0, 0);
|
||||
|
||||
actual.splice(0); // empty it for the next check
|
||||
const failureExpected = [
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
];
|
||||
|
||||
assert.throws(TypeError, () => Temporal.PlainDateTime.from(7, options));
|
||||
assert.compareArray(actual, failureExpected, "Failing call");
|
|
@ -0,0 +1,21 @@
|
|||
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.from
|
||||
description: overflow property is extracted with ISO-invalid string argument.
|
||||
includes: [compareArray.js, temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const expected = [
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
];
|
||||
|
||||
let actual = [];
|
||||
const options = TemporalHelpers.propertyBagObserver(actual, { overflow: "reject" }, "options");
|
||||
|
||||
assert.throws(RangeError, () => Temporal.PlainDateTime.from("2020-13-34T25:60:60", options));
|
||||
assert.compareArray(actual, expected);
|
|
@ -9,6 +9,12 @@ features: [Temporal]
|
|||
---*/
|
||||
|
||||
const expected = [
|
||||
// CopyDataProperties
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
"getOwnPropertyDescriptor options.extra",
|
||||
"get options.extra",
|
||||
// GetTemporalCalendarSlotValueWithISODefault
|
||||
"get fields.calendar",
|
||||
"has fields.calendar.dateAdd",
|
||||
|
@ -67,15 +73,10 @@ const expected = [
|
|||
"get fields.year.valueOf",
|
||||
"call fields.year.valueOf",
|
||||
// InterpretTemporalDateTimeFields
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
"get fields.calendar.dateFromFields",
|
||||
"call fields.calendar.dateFromFields",
|
||||
// inside Calendar.p.dateFromFields
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
];
|
||||
const actual = [];
|
||||
|
||||
|
@ -93,7 +94,10 @@ const fields = TemporalHelpers.propertyBagObserver(actual, {
|
|||
calendar: TemporalHelpers.calendarObserver(actual, "fields.calendar"),
|
||||
}, "fields");
|
||||
|
||||
const options = TemporalHelpers.propertyBagObserver(actual, { overflow: "constrain" }, "options");
|
||||
const options = TemporalHelpers.propertyBagObserver(actual, {
|
||||
overflow: "constrain",
|
||||
extra: "property",
|
||||
}, "options");
|
||||
|
||||
Temporal.PlainDateTime.from(fields, options);
|
||||
assert.compareArray(actual, expected, "order of operations");
|
||||
|
|
|
@ -48,14 +48,12 @@ assert.throws(RangeError, () => Temporal.PlainDateTime.from(propertyBag, { overf
|
|||
assert.throws(RangeError, () => Temporal.PlainDateTime.from(propertyBag, { overflow: 2n }), "bigint");
|
||||
assert.throws(RangeError, () => Temporal.PlainDateTime.from(propertyBag, { overflow: {} }), "plain object");
|
||||
|
||||
// toString property is read once by Calendar.dateFromFields() in the builtin
|
||||
// calendars, to get the option value for the date part, and then once again
|
||||
// internally to get the option value for the time part.
|
||||
// toString property should only be read and converted to a string once, because
|
||||
// a copied object with the resulting string on it is passed to
|
||||
// Calendar.dateFromFields().
|
||||
const expected = [
|
||||
"get overflow.toString",
|
||||
"call overflow.toString",
|
||||
"get overflow.toString",
|
||||
"call overflow.toString",
|
||||
];
|
||||
const actual = [];
|
||||
const observer = TemporalHelpers.toPrimitiveObserver(actual, "constrain", "overflow");
|
||||
|
|
|
@ -3,12 +3,16 @@
|
|||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.prototype.with
|
||||
description: The options argument is passed through to Calendar#dateFromFields as-is.
|
||||
description: >
|
||||
The options argument is copied and the copy is passed to
|
||||
Calendar#dateFromFields.
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const options = {};
|
||||
const options = {
|
||||
extra: "property",
|
||||
};
|
||||
let calledDateFromFields = 0;
|
||||
class Calendar extends Temporal.Calendar {
|
||||
constructor() {
|
||||
|
@ -16,7 +20,9 @@ class Calendar extends Temporal.Calendar {
|
|||
}
|
||||
dateFromFields(fields, optionsArg) {
|
||||
++calledDateFromFields;
|
||||
assert.sameValue(optionsArg, options, "should pass options object through");
|
||||
assert.notSameValue(optionsArg, options, "should pass copied options object");
|
||||
assert.sameValue(optionsArg.extra, "property", "should copy all properties from options object");
|
||||
assert.sameValue(Object.getPrototypeOf(optionsArg), null, "Copy has null prototype");
|
||||
return super.dateFromFields(fields, optionsArg);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -12,6 +12,12 @@ const expected = [
|
|||
// RejectObjectWithCalendarOrTimeZone
|
||||
"get fields.calendar",
|
||||
"get fields.timeZone",
|
||||
// CopyDataProperties
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
"getOwnPropertyDescriptor options.extra",
|
||||
"get options.extra",
|
||||
// CalendarFields
|
||||
"get this.calendar.fields",
|
||||
"call this.calendar.fields",
|
||||
|
@ -59,15 +65,10 @@ const expected = [
|
|||
"get this.calendar.mergeFields",
|
||||
"call this.calendar.mergeFields",
|
||||
// InterpretTemporalDateTimeFields
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
"get this.calendar.dateFromFields",
|
||||
"call this.calendar.dateFromFields",
|
||||
// inside Calendar.p.dateFromFields
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
];
|
||||
const actual = [];
|
||||
|
||||
|
@ -96,7 +97,10 @@ const fields = TemporalHelpers.propertyBagObserver(actual, {
|
|||
nanosecond: 1.7,
|
||||
}, "fields");
|
||||
|
||||
const options = TemporalHelpers.propertyBagObserver(actual, { overflow: "constrain" }, "options");
|
||||
const options = TemporalHelpers.propertyBagObserver(actual, {
|
||||
overflow: "constrain",
|
||||
extra: "property",
|
||||
}, "options");
|
||||
|
||||
instance.with(fields, options);
|
||||
assert.compareArray(actual, expected, "order of operations");
|
||||
|
|
|
@ -31,14 +31,12 @@ assert.throws(RangeError, () => datetime.with({ minute: 45 }, { overflow: 2 }),
|
|||
assert.throws(RangeError, () => datetime.with({ minute: 45 }, { overflow: 2n }), "bigint");
|
||||
assert.throws(RangeError, () => datetime.with({ minute: 45 }, { overflow: {} }), "plain object");
|
||||
|
||||
// toString property is read once by Calendar.dateFromFields() in the builtin
|
||||
// calendars, to get the option value for the date part, and then once again
|
||||
// internally to get the option value for the time part.
|
||||
// toString property should only be read and converted to a string once, because
|
||||
// a copied object with the resulting string on it is passed to
|
||||
// Calendar.dateFromFields().
|
||||
const expected = [
|
||||
"get overflow.toString",
|
||||
"call overflow.toString",
|
||||
"get overflow.toString",
|
||||
"call overflow.toString",
|
||||
];
|
||||
const actual = [];
|
||||
const observer = TemporalHelpers.toPrimitiveObserver(actual, "constrain", "overflow");
|
||||
|
|
|
@ -0,0 +1,49 @@
|
|||
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.zoneddatetime.from
|
||||
description: options properties are extracted with string argument.
|
||||
includes: [compareArray.js, temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const expected = [
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.disambiguation",
|
||||
"get options.disambiguation",
|
||||
"getOwnPropertyDescriptor options.offset",
|
||||
"get options.offset",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
"get options.disambiguation.toString",
|
||||
"call options.disambiguation.toString",
|
||||
"get options.offset.toString",
|
||||
"call options.offset.toString",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
];
|
||||
|
||||
let actual = [];
|
||||
const options = TemporalHelpers.propertyBagObserver(actual, {
|
||||
disambiguation: "compatible",
|
||||
offset: "ignore",
|
||||
overflow: "reject",
|
||||
}, "options");
|
||||
|
||||
const result = Temporal.ZonedDateTime.from("2001-09-09T01:46:40+00:00[UTC]", options);
|
||||
assert.compareArray(actual, expected, "Successful call");
|
||||
assert.sameValue(result.epochNanoseconds, 1_000_000_000_000_000_000n);
|
||||
|
||||
actual.splice(0); // empty it for the next check
|
||||
const failureExpected = [
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.disambiguation",
|
||||
"get options.disambiguation",
|
||||
"getOwnPropertyDescriptor options.offset",
|
||||
"get options.offset",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
];
|
||||
assert.throws(TypeError, () => Temporal.ZonedDateTime.from(7, options));
|
||||
assert.compareArray(actual, failureExpected, "Failing call");
|
|
@ -0,0 +1,29 @@
|
|||
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.zoneddatetime.from
|
||||
description: options properties are extracted with ISO-invalid string argument.
|
||||
includes: [compareArray.js, temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const expected = [
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.disambiguation",
|
||||
"get options.disambiguation",
|
||||
"getOwnPropertyDescriptor options.offset",
|
||||
"get options.offset",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
];
|
||||
|
||||
let actual = [];
|
||||
const options = TemporalHelpers.propertyBagObserver(actual, {
|
||||
disambiguation: "compatible",
|
||||
offset: "ignore",
|
||||
overflow: "reject",
|
||||
}, "options");
|
||||
|
||||
assert.throws(RangeError, () => Temporal.ZonedDateTime.from("2020-13-34T25:60:60+99:99[UTC]", options));
|
||||
assert.compareArray(actual, expected);
|
|
@ -9,6 +9,17 @@ features: [Temporal]
|
|||
---*/
|
||||
|
||||
const expected = [
|
||||
// CopyDataProperties
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
"getOwnPropertyDescriptor options.disambiguation",
|
||||
"get options.disambiguation",
|
||||
"getOwnPropertyDescriptor options.offset",
|
||||
"get options.offset",
|
||||
"getOwnPropertyDescriptor options.extra",
|
||||
"get options.extra",
|
||||
// ToTemporalCalendar
|
||||
"get item.calendar",
|
||||
"has item.calendar.dateAdd",
|
||||
"has item.calendar.dateFromFields",
|
||||
|
@ -72,21 +83,14 @@ const expected = [
|
|||
"has item.timeZone.getPossibleInstantsFor",
|
||||
"has item.timeZone.id",
|
||||
// InterpretTemporalDateTimeFields
|
||||
"get options.disambiguation",
|
||||
"get options.disambiguation.toString",
|
||||
"call options.disambiguation.toString",
|
||||
"get options.offset",
|
||||
"get options.offset.toString",
|
||||
"call options.offset.toString",
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
"get item.calendar.dateFromFields",
|
||||
"call item.calendar.dateFromFields",
|
||||
// inside calendar.dateFromFields
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
// InterpretISODateTimeOffset
|
||||
"get item.timeZone.getPossibleInstantsFor",
|
||||
"call item.timeZone.getPossibleInstantsFor",
|
||||
|
@ -116,6 +120,7 @@ function createOptionsObserver({ overflow = "constrain", disambiguation = "compa
|
|||
overflow,
|
||||
disambiguation,
|
||||
offset,
|
||||
extra: "property",
|
||||
}, "options");
|
||||
}
|
||||
|
||||
|
|
|
@ -49,14 +49,12 @@ assert.throws(RangeError, () => Temporal.ZonedDateTime.from(propertyBag, { overf
|
|||
assert.throws(RangeError, () => Temporal.ZonedDateTime.from(propertyBag, { overflow: 2 }), "number");
|
||||
assert.throws(RangeError, () => Temporal.ZonedDateTime.from(propertyBag, { overflow: {} }), "plain object");
|
||||
|
||||
// toString property is read once by Calendar.dateFromFields() in the builtin
|
||||
// calendars, to get the option value for the date part, and then once again
|
||||
// internally to get the option value for the time part.
|
||||
// toString property should only be read and converted to a string once, because
|
||||
// a copied object with the resulting string on it is passed to
|
||||
// Calendar.dateFromFields().
|
||||
const expected = [
|
||||
"get overflow.toString",
|
||||
"call overflow.toString",
|
||||
"get overflow.toString",
|
||||
"call overflow.toString",
|
||||
];
|
||||
const actual = [];
|
||||
const observer = TemporalHelpers.toPrimitiveObserver(actual, "constrain", "overflow");
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
// 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.prototype.with
|
||||
description: >
|
||||
The options argument is copied and the copy is passed to
|
||||
Calendar#dateFromFields.
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const options = {
|
||||
extra: "property",
|
||||
};
|
||||
let calledDateFromFields = 0;
|
||||
class Calendar extends Temporal.Calendar {
|
||||
constructor() {
|
||||
super("iso8601");
|
||||
}
|
||||
dateFromFields(fields, optionsArg) {
|
||||
++calledDateFromFields;
|
||||
assert.notSameValue(optionsArg, options, "should pass copied options object");
|
||||
assert.sameValue(optionsArg.extra, "property", "should copy all properties from options object");
|
||||
assert.sameValue(Object.getPrototypeOf(optionsArg), null, "Copy has null prototype");
|
||||
return super.dateFromFields(fields, optionsArg);
|
||||
}
|
||||
};
|
||||
const calendar = new Calendar();
|
||||
const datetime = new Temporal.ZonedDateTime(0n, "UTC", calendar);
|
||||
const result = datetime.with({ year: 1971 }, options);
|
||||
assert.sameValue(result.epochNanoseconds, 365n * 86400_000_000_000n, "year changed from 1970 to 1971")
|
||||
assert.sameValue(calledDateFromFields, 1, "should have called overridden dateFromFields once");
|
|
@ -12,6 +12,16 @@ const expected = [
|
|||
// RejectObjectWithCalendarOrTimeZone
|
||||
"get fields.calendar",
|
||||
"get fields.timeZone",
|
||||
// CopyDataProperties
|
||||
"ownKeys options",
|
||||
"getOwnPropertyDescriptor options.overflow",
|
||||
"get options.overflow",
|
||||
"getOwnPropertyDescriptor options.disambiguation",
|
||||
"get options.disambiguation",
|
||||
"getOwnPropertyDescriptor options.offset",
|
||||
"get options.offset",
|
||||
"getOwnPropertyDescriptor options.extra",
|
||||
"get options.extra",
|
||||
// GetOffsetNanosecondsFor on receiver
|
||||
"get this.timeZone.getOffsetNanosecondsFor",
|
||||
"call this.timeZone.getOffsetNanosecondsFor",
|
||||
|
@ -65,21 +75,14 @@ const expected = [
|
|||
"get this.calendar.mergeFields",
|
||||
"call this.calendar.mergeFields",
|
||||
// InterpretTemporalDateTimeFields
|
||||
"get options.disambiguation",
|
||||
"get options.disambiguation.toString",
|
||||
"call options.disambiguation.toString",
|
||||
"get options.offset",
|
||||
"get options.offset.toString",
|
||||
"call options.offset.toString",
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
"get this.calendar.dateFromFields",
|
||||
"call this.calendar.dateFromFields",
|
||||
// Calendar.p.dateFromFields
|
||||
"get options.overflow",
|
||||
"get options.overflow.toString",
|
||||
"call options.overflow.toString",
|
||||
// InterpretISODateTimeOffset
|
||||
"get this.timeZone.getPossibleInstantsFor",
|
||||
"call this.timeZone.getPossibleInstantsFor",
|
||||
|
@ -112,6 +115,7 @@ const options = TemporalHelpers.propertyBagObserver(actual, {
|
|||
overflow: "constrain",
|
||||
disambiguation: "compatible",
|
||||
offset: "prefer",
|
||||
extra: "property",
|
||||
}, "options");
|
||||
|
||||
instance.with(fields, options);
|
||||
|
|
|
@ -31,14 +31,12 @@ assert.throws(RangeError, () => datetime.with({ second: 41 }, { overflow: 2 }),
|
|||
assert.throws(RangeError, () => datetime.with({ second: 41 }, { overflow: 2n }), "bigint");
|
||||
assert.throws(RangeError, () => datetime.with({ second: 41 }, { overflow: {} }), "plain object");
|
||||
|
||||
// toString property is read once by Calendar.dateFromFields() in the builtin
|
||||
// calendars, to get the option value for the date part, and then once again
|
||||
// internally to get the option value for the time part.
|
||||
// toString property should only be read and converted to a string once, because
|
||||
// a copied object with the resulting string on it is passed to
|
||||
// Calendar.dateFromFields().
|
||||
const expected = [
|
||||
"get overflow.toString",
|
||||
"call overflow.toString",
|
||||
"get overflow.toString",
|
||||
"call overflow.toString",
|
||||
];
|
||||
const actual = [];
|
||||
const observer = TemporalHelpers.toPrimitiveObserver(actual, "constrain", "overflow");
|
||||
|
|
Loading…
Reference in New Issue