blob: f421e11fd036c08b4d9f09eaf011daea12684644 [file] [log] [blame]
// Copyright 2012 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 10.3.2_1_c
description: Tests that compare function is bound to its Intl.Collator.
author: Norbert Lindenberg
includes: [compareArray.js]
---*/
var strings = ["d", "O", "od", "oe", "of", "ö", "o\u0308", "X", "y", "Z", "Z.", "𠮷野家", "吉野家", "!A", "A", "b", "C"];
var locales = [undefined, ["de"], ["de-u-co-phonebk"], ["en"], ["ja"], ["sv"]];
var options = [
undefined,
{usage: "search"},
{sensitivity: "base", ignorePunctuation: true}
];
locales.forEach(function (locales) {
options.forEach(function (options) {
var collatorObj = new Intl.Collator(locales, options);
var compareFunc = collatorObj.compare;
var referenceSorted = strings.slice();
referenceSorted.sort(function (a, b) { return collatorObj.compare(a, b); });
var sorted = strings;
sorted.sort(compareFunc);
assert.compareArray(sorted, referenceSorted,
"(Testing with locales " + locales + "; options " +
(options ? JSON.stringify(options) : options) + ".)");
});
});