mirror of https://github.com/tc39/test262.git
Allow alternative era names
Temporal doesn't specify concrete era names, so tests shouldn't assert for example that the era code of the current Gregorian era is `"ce"`. We still want to validate the era names somehow however, so allow alternative era names using the era codes from the "Intl era and monthCode" proposal.
This commit is contained in:
parent
0ff7881d75
commit
16322d384a
|
@ -54,6 +54,100 @@ var TemporalHelpers = {
|
|||
{ month: 12, monthCode: "M12", daysInMonth: 31 }
|
||||
],
|
||||
|
||||
/*
|
||||
* List of known calendar eras and their possible aliases.
|
||||
*
|
||||
* https://tc39.es/proposal-intl-era-monthcode/#table-eras
|
||||
*/
|
||||
CalendarEras: {
|
||||
buddhist: [
|
||||
{ era: "buddhist", aliases: ["be"] },
|
||||
],
|
||||
chinese: [
|
||||
{ era: "chinese" },
|
||||
],
|
||||
coptic: [
|
||||
{ era: "coptic" },
|
||||
{ era: "coptic-inverse" },
|
||||
],
|
||||
dangi: [
|
||||
{ era: "dangi" },
|
||||
],
|
||||
ethiopic: [
|
||||
{ era: "ethiopic", aliases: ["incar"] },
|
||||
{ era: "ethioaa", aliases: ["ethiopic-amete-alem", "mundi"] },
|
||||
],
|
||||
ethioaa: [
|
||||
{ era: "ethioaa", aliases: ["ethiopic-amete-alem", "mundi"] },
|
||||
],
|
||||
gregory: [
|
||||
{ era: "gregory", aliases: ["ce", "ad"] },
|
||||
{ era: "gregory-inverse", aliases: ["bc", "bce"] },
|
||||
],
|
||||
hebrew: [
|
||||
{ era: "hebrew", aliases: ["am"] },
|
||||
],
|
||||
indian: [
|
||||
{ era: "indian", aliases: ["saka"] },
|
||||
],
|
||||
islamic: [
|
||||
{ era: "islamic", aliases: ["ah"] },
|
||||
],
|
||||
"islamic-civil": [
|
||||
{ era: "islamic-civil", aliases: ["islamicc", "ah"] },
|
||||
],
|
||||
"islamic-rgsa": [
|
||||
{ era: "islamic-rgsa", aliases: ["ah"] },
|
||||
],
|
||||
"islamic-tbla": [
|
||||
{ era: "islamic-tbla", aliases: ["ah"] },
|
||||
],
|
||||
"islamic-umalqura": [
|
||||
{ era: "islamic-umalqura", aliases: ["ah"] },
|
||||
],
|
||||
japanese: [
|
||||
{ era: "heisei" },
|
||||
{ era: "japanese", aliases: ["gregory", "ad", "ce"] },
|
||||
{ era: "japanese-inverse", aliases: ["gregory-inverse", "bc", "bce"] },
|
||||
{ era: "meiji" },
|
||||
{ era: "reiwa" },
|
||||
{ era: "showa" },
|
||||
{ era: "taisho" },
|
||||
],
|
||||
persian: [
|
||||
{ era: "persian", aliases: ["ap"] },
|
||||
],
|
||||
roc: [
|
||||
{ era: "roc", aliases: ["minguo"] },
|
||||
{ era: "roc-inverse", aliases: ["before-roc"] },
|
||||
],
|
||||
},
|
||||
|
||||
/*
|
||||
* Return the canonical era code.
|
||||
*/
|
||||
canonicalizeCalendarEra(calendarId, eraName) {
|
||||
assert.sameValue(typeof calendarId, "string");
|
||||
|
||||
if (calendarId === "iso8601") {
|
||||
assert.sameValue(eraName, undefined);
|
||||
return undefined;
|
||||
}
|
||||
assert(Object.hasOwn(TemporalHelpers.CalendarEras, calendarId));
|
||||
|
||||
if (eraName === undefined) {
|
||||
return undefined;
|
||||
}
|
||||
assert.sameValue(typeof eraName, "string");
|
||||
|
||||
for (let {era, aliases = []} of TemporalHelpers.CalendarEras[calendarId]) {
|
||||
if (era === eraName || aliases.includes(eraName)) {
|
||||
return era;
|
||||
}
|
||||
}
|
||||
throw new Test262Error(`Unsupported era name: ${eraName}`);
|
||||
},
|
||||
|
||||
/*
|
||||
* assertDuration(duration, years, ..., nanoseconds[, description]):
|
||||
*
|
||||
|
@ -132,7 +226,11 @@ var TemporalHelpers = {
|
|||
assertPlainDate(date, year, month, monthCode, day, description = "", era = undefined, eraYear = undefined) {
|
||||
const prefix = description ? `${description}: ` : "";
|
||||
assert(date instanceof Temporal.PlainDate, `${prefix}instanceof`);
|
||||
assert.sameValue(date.era, era, `${prefix}era result:`);
|
||||
assert.sameValue(
|
||||
TemporalHelpers.canonicalizeCalendarEra(date.calendarId, date.era),
|
||||
TemporalHelpers.canonicalizeCalendarEra(date.calendarId, era),
|
||||
`${prefix}era result:`
|
||||
);
|
||||
assert.sameValue(date.eraYear, eraYear, `${prefix}eraYear result:`);
|
||||
assert.sameValue(date.year, year, `${prefix}year result:`);
|
||||
assert.sameValue(date.month, month, `${prefix}month result:`);
|
||||
|
@ -151,7 +249,11 @@ var TemporalHelpers = {
|
|||
assertPlainDateTime(datetime, year, month, monthCode, day, hour, minute, second, millisecond, microsecond, nanosecond, description = "", era = undefined, eraYear = undefined) {
|
||||
const prefix = description ? `${description}: ` : "";
|
||||
assert(datetime instanceof Temporal.PlainDateTime, `${prefix}instanceof`);
|
||||
assert.sameValue(datetime.era, era, `${prefix}era result:`);
|
||||
assert.sameValue(
|
||||
TemporalHelpers.canonicalizeCalendarEra(datetime.calendarId, datetime.era),
|
||||
TemporalHelpers.canonicalizeCalendarEra(datetime.calendarId, era),
|
||||
`${prefix}era result:`
|
||||
);
|
||||
assert.sameValue(datetime.eraYear, eraYear, `${prefix}eraYear result:`);
|
||||
assert.sameValue(datetime.year, year, `${prefix}year result:`);
|
||||
assert.sameValue(datetime.month, month, `${prefix}month result:`);
|
||||
|
@ -242,7 +344,11 @@ var TemporalHelpers = {
|
|||
assertPlainYearMonth(yearMonth, year, month, monthCode, description = "", era = undefined, eraYear = undefined, referenceISODay = 1) {
|
||||
const prefix = description ? `${description}: ` : "";
|
||||
assert(yearMonth instanceof Temporal.PlainYearMonth, `${prefix}instanceof`);
|
||||
assert.sameValue(yearMonth.era, era, `${prefix}era result:`);
|
||||
assert.sameValue(
|
||||
TemporalHelpers.canonicalizeCalendarEra(yearMonth.calendarId, yearMonth.era),
|
||||
TemporalHelpers.canonicalizeCalendarEra(yearMonth.calendarId, era),
|
||||
`${prefix}era result:`
|
||||
);
|
||||
assert.sameValue(yearMonth.eraYear, eraYear, `${prefix}eraYear result:`);
|
||||
assert.sameValue(yearMonth.year, year, `${prefix}year result:`);
|
||||
assert.sameValue(yearMonth.month, month, `${prefix}month result:`);
|
||||
|
|
|
@ -6,6 +6,7 @@ esid: sec-temporal.zoneddatetime
|
|||
description: >
|
||||
Test construction and properties of an instance with non-UTC time zone and
|
||||
non-ISO8601 calendar
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal, BigInt]
|
||||
---*/
|
||||
|
||||
|
@ -16,7 +17,11 @@ const instance = new Temporal.ZonedDateTime(epochNanos, "Europe/Vienna", "gregor
|
|||
assert(instance instanceof Temporal.ZonedDateTime, "instanceof is correct");
|
||||
assert.sameValue(typeof instance, "object", "typeof is correct");
|
||||
|
||||
assert.sameValue(instance.era, "ce", "era");
|
||||
assert.sameValue(
|
||||
TemporalHelpers.canonicalizeCalendarEra(instance.calendarId, instance.era),
|
||||
TemporalHelpers.canonicalizeCalendarEra(instance.calendarId, "ce"),
|
||||
"era"
|
||||
);
|
||||
assert.sameValue(instance.eraYear, 1976, "eraYear");
|
||||
assert.sameValue(instance.year, 1976, "year");
|
||||
assert.sameValue(instance.month, 11, "month");
|
||||
|
|
Loading…
Reference in New Issue