1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
/*
* Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @library /java/text/testlib
* @summary test Supplementary Character Collation
*/
import java.text.Collator;
import java.text.RuleBasedCollator;
// Quick dummy program for printing out test results
public class SurrogatesTest extends CollatorTest {
public static void main(String[] args) throws Exception {
new SurrogatesTest().run(args);
}
/*
* Data for TestPrimary()
*/
private static final String[] primarySourceData = {
"A\ud800\udc04BCD"
};
private static final String[] primaryTargetData = {
"A\ud800\udc05BCD"
};
private static final int[] primaryResults = {
0
};
/*
* Data for TestTertiary()
*/
private static final String[] tertiarySourceData = {
"ABCD",
"ABCD",
"A\ud800\udc00CD",
"WXYZ",
"WXYZ",
"AFEM",
"FGM",
"BB",
"BB"
};
private static final String[] tertiaryTargetData = {
"A\ud800\udc00CD",
"AB\ud800\udc00D",
"A\ud800\udc01CD",
"W\ud800\udc0aYZ",
"W\ud800\udc0bYZ",
"A\ud800\udc08M",
"\ud800\udc08M",
"\ud800\udc04\ud800\udc02",
"\ud800\udc04\ud800\udc05"
};
private static final int[] tertiaryResults = {
-1, 1, 1, 1, -1, -1, -1, -1, 1
};
public void TestPrimary() {
doTest(myCollation, Collator.PRIMARY,
primarySourceData, primaryTargetData, primaryResults);
}
public void TestTertiary() {
doTest(myCollation, Collator.TERTIARY,
tertiarySourceData, tertiaryTargetData, tertiaryResults);
}
private Collator getCollator() {
RuleBasedCollator base = (RuleBasedCollator)Collator.getInstance();
String rule = base.getRules();
try {
return new RuleBasedCollator(rule
+ "&B < \ud800\udc01 < \ud800\udc00"
+ ", \ud800\udc02, \ud800\udc03"
+ "; \ud800\udc04, \ud800\udc05"
+ "< \ud800\udc06 < \ud800\udc07"
+ "&FE < \ud800\udc08"
+ "&PE, \ud800\udc09"
+ "&Z < \ud800\udc0a < \ud800\udc0b < \ud800\udc0c"
+ "&\ud800\udc0a < x, X"
+ "&A < \ud800\udc04\ud800\udc05");
} catch (Exception e) {
errln("Failed to create new RulebasedCollator object");
return null;
}
}
private Collator myCollation = getCollator();
}
|