-
Notifications
You must be signed in to change notification settings - Fork 476
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporal: Tests for calendar.dateFromFields options in PYM/PMD.toPlai…
…nDate It was previously not tested what options value a custom calendar's dateFromFields() method would be called with, when called from the toPlainDate() method of PlainYearMonth/PlainMonthDay. See tc39/proposal-temporal#2803
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
.../PlainMonthDay/prototype/toPlainDate/calendar-fromfields-called-with-undefined-options.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (C) 2024 Igalia, S.L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-temporal.plainmonthday.prototype.toplaindate | ||
description: Calendar.dateFromFields method is called with undefined options | ||
features: [Temporal] | ||
---*/ | ||
|
||
let count = 0; | ||
|
||
const calendar = new class extends Temporal.Calendar { | ||
dateFromFields(fields, options) { | ||
count++; | ||
assert.sameValue(options, undefined, "dateFromFields should be called with undefined options"); | ||
return super.dateFromFields(fields, options); | ||
} | ||
}("iso8601"); | ||
|
||
const instance = new Temporal.PlainMonthDay(5, 2, calendar); | ||
instance.toPlainDate({ year: 2019 }); | ||
assert.sameValue(count, 1, "dateFromFields should have been called on the calendar"); |
22 changes: 22 additions & 0 deletions
22
...PlainYearMonth/prototype/toPlainDate/calendar-fromfields-called-with-undefined-options.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (C) 2024 Igalia, S.L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-temporal.plainyearmonth.prototype.toplaindate | ||
description: Calendar.dateFromFields method is called with undefined options | ||
features: [Temporal] | ||
---*/ | ||
|
||
let count = 0; | ||
|
||
const calendar = new class extends Temporal.Calendar { | ||
dateFromFields(fields, options) { | ||
count++; | ||
assert.sameValue(options, undefined, "dateFromFields should be called with undefined options"); | ||
return super.dateFromFields(fields, options); | ||
} | ||
}("iso8601"); | ||
|
||
const instance = new Temporal.PlainYearMonth(2000, 5, calendar); | ||
instance.toPlainDate({ day: 24 }); | ||
assert.sameValue(count, 1, "dateFromFields should have been called on the calendar"); |