blob: 5b6252ed2b6226958f4ca6fedb2e22c60e7ea16c [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.formatToParts
description: Checks the behavior of Intl.RelativeTimeFormat.prototype.formatToParts() in English.
features: [Intl.RelativeTimeFormat]
locale: [en-US]
---*/
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`);
}
}
const units = [
"second",
"minute",
"hour",
"day",
"week",
"month",
"quarter",
"year",
];
const rtf = new Intl.RelativeTimeFormat("en-US");
assert.sameValue(typeof rtf.formatToParts, "function", "formatToParts should be supported");
for (const unit of units) {
verifyFormatParts(rtf.formatToParts(1000, unit), [
{ "type": "literal", "value": "in " },
{ "type": "integer", "value": "1", "unit": unit },
{ "type": "group", "value": ",", "unit": unit },
{ "type": "integer", "value": "000", "unit": unit },
{ "type": "literal", "value": ` ${unit}s` },
], `formatToParts(1000, ${unit})`);
verifyFormatParts(rtf.formatToParts(10, unit), [
{ "type": "literal", "value": "in " },
{ "type": "integer", "value": "10", "unit": unit },
{ "type": "literal", "value": ` ${unit}s` },
], `formatToParts(10, ${unit})`);
verifyFormatParts(rtf.formatToParts(2, unit), [
{ "type": "literal", "value": "in " },
{ "type": "integer", "value": "2", "unit": unit },
{ "type": "literal", "value": ` ${unit}s` },
], `formatToParts(2, ${unit})`);
verifyFormatParts(rtf.formatToParts(1, unit), [
{ "type": "literal", "value": "in " },
{ "type": "integer", "value": "1", "unit": unit },
{ "type": "literal", "value": ` ${unit}` },
], `formatToParts(1, ${unit})`);
verifyFormatParts(rtf.formatToParts(0, unit), [
{ "type": "literal", "value": "in " },
{ "type": "integer", "value": "0", "unit": unit },
{ "type": "literal", "value": ` ${unit}s` },
], `formatToParts(0, ${unit})`);
verifyFormatParts(rtf.formatToParts(-0, unit), [
{ "type": "integer", "value": "0", "unit": unit },
{ "type": "literal", "value": ` ${unit}s ago` },
], `formatToParts(-0, ${unit})`);
verifyFormatParts(rtf.formatToParts(-1, unit), [
{ "type": "integer", "value": "1", "unit": unit },
{ "type": "literal", "value": ` ${unit} ago` },
], `formatToParts(-1, ${unit})`);
verifyFormatParts(rtf.formatToParts(-2, unit), [
{ "type": "integer", "value": "2", "unit": unit },
{ "type": "literal", "value": ` ${unit}s ago` },
], `formatToParts(-2, ${unit})`);
verifyFormatParts(rtf.formatToParts(-10, unit), [
{ "type": "integer", "value": "10", "unit": unit },
{ "type": "literal", "value": ` ${unit}s ago` },
], `formatToParts(-10, ${unit})`);
verifyFormatParts(rtf.formatToParts(-1000, unit), [
{ "type": "integer", "value": "1", "unit": unit },
{ "type": "group", "value": ",", "unit": unit },
{ "type": "integer", "value": "000", "unit": unit },
{ "type": "literal", "value": ` ${unit}s ago` },
], `formatToParts(-1000, ${unit})`);
verifyFormatParts(rtf.formatToParts(123456.78, unit), [
{ "type": "literal", "value": "in " },
{ "type": "integer", "value": "123", "unit": unit },
{ "type": "group", "value": ",", "unit": unit },
{ "type": "integer", "value": "456", "unit": unit },
{ "type": "decimal", "value": ".", "unit": unit },
{ "type": "fraction", "value": "78", "unit": unit },
{ "type": "literal", "value": ` ${unit}s` },
], `formatToParts(123456.78, ${unit})`);
}