blob: 73f2bcf098c32a98d29f9daaa9fca4ac51018110 [file] [log] [blame]
// Copyright 2012 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @description Tests that compare function is bound to its Intl.Collator.
* @author Norbert Lindenberg
*/
$INCLUDE("testIntl.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);
try {
testArraysAreSame(referenceSorted, sorted);
} catch (e) {
e.message += " (Testing with locales " + locales + "; options " +
(options ? JSON.stringify(options) : options) + ".)";
throw e;
}
});
});