blob: c2a2c0ee592927b2468f118182c1cc7502eb8799 [file] [log] [blame]
// Copyright 2018 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-Intl.RelativeTimeFormat.prototype.format
description: Checks the behavior of Intl.RelativeTimeFormat.prototype.format() in Polish.
features: [Intl.RelativeTimeFormat]
locale: [pl-PL]
---*/
function verifyFormatParts(actual, expected, message) {
assert.sameValue(actual.length, expected.length, `${message}: length`);
for (let i = 0; i < actual.length; ++i) {
assert.sameValue(actual[i].type, expected[i].type, `${message}: parts[${i}].type`);
assert.sameValue(actual[i].value, expected[i].value, `${message}: parts[${i}].value`);
assert.sameValue(actual[i].unit, expected[i].unit, `${message}: parts[${i}].unit`);
}
}
function always(s) {
return {
"many": s,
"few": s,
"one": s,
"other": s,
}
}
// https://www.unicode.org/cldr/charts/33/summary/pl.html#1419
const units = {
"second": always("s"),
"minute": always("min"),
"hour": always("g."),
"day": {
"many": "dni",
"few": "dni",
"one": "dzieƄ",
"other": "dnia",
},
"week": {
"many": "tyg.",
"few": "tyg.",
"one": "tydz.",
"other": "tyg.",
},
"month": always("mies."),
"quarter": always("kw."),
"year": {
"many": "lat",
"few": "lata",
"one": "rok",
"other": "roku",
},
};
const rtf = new Intl.RelativeTimeFormat("pl-PL", {
"style": "narrow",
});
assert.sameValue(typeof rtf.formatToParts, "function", "formatToParts should be supported");
for (const [unitArgument, expected] of Object.entries(units)) {
verifyFormatParts(rtf.formatToParts(1000, unitArgument), [
{ "type": "literal", "value": "za " },
{ "type": "integer", "value": "1", "unit": unitArgument },
{ "type": "group", "value": "\u00a0", "unit": unitArgument },
{ "type": "integer", "value": "000", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.many}` },
], `formatToParts(1000, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(10, unitArgument), [
{ "type": "literal", "value": "za " },
{ "type": "integer", "value": "10", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.many}` },
], `formatToParts(10, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(2, unitArgument), [
{ "type": "literal", "value": "za " },
{ "type": "integer", "value": "2", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.few}` },
], `formatToParts(2, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(1, unitArgument), [
{ "type": "literal", "value": "za " },
{ "type": "integer", "value": "1", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.one}` },
], `formatToParts(1, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(0, unitArgument), [
{ "type": "literal", "value": "za " },
{ "type": "integer", "value": "0", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.many}` },
], `formatToParts(0, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(-0, unitArgument), [
{ "type": "integer", "value": "0", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.many} temu` },
], `formatToParts(-0, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(-1, unitArgument), [
{ "type": "integer", "value": "1", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.one} temu` },
], `formatToParts(-1, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(-2, unitArgument), [
{ "type": "integer", "value": "2", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.few} temu` },
], `formatToParts(-2, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(-10, unitArgument), [
{ "type": "integer", "value": "10", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.many} temu` },
], `formatToParts(-10, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(-1000, unitArgument), [
{ "type": "integer", "value": "1", "unit": unitArgument },
{ "type": "group", "value": "\u00a0", "unit": unitArgument },
{ "type": "integer", "value": "000", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.many} temu` },
], `formatToParts(-1000, ${unitArgument})`);
verifyFormatParts(rtf.formatToParts(123456.78, unitArgument), [
{ "type": "literal", "value": "za " },
{ "type": "integer", "value": "123", "unit": unitArgument },
{ "type": "group", "value": "\u00a0", "unit": unitArgument },
{ "type": "integer", "value": "456", "unit": unitArgument },
{ "type": "decimal", "value": ",", "unit": unitArgument },
{ "type": "fraction", "value": "78", "unit": unitArgument },
{ "type": "literal", "value": ` ${expected.other}` },
], `formatToParts(123456.78, ${unitArgument})`);
}