1914N/A/*
2362N/A * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
1914N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1914N/A *
1914N/A * This code is free software; you can redistribute it and/or modify it
1914N/A * under the terms of the GNU General Public License version 2 only, as
1914N/A * published by the Free Software Foundation.
1914N/A *
1914N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1914N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1914N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1914N/A * version 2 for more details (a copy is included in the LICENSE file that
1914N/A * accompanied this code).
1914N/A *
1914N/A * You should have received a copy of the GNU General Public License version
1914N/A * 2 along with this work; if not, write to the Free Software Foundation,
1914N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1914N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
1914N/A */
1914N/A
1914N/A/*
1914N/A * @test
3081N/A * @bug 6842557 6943963 6959267
3081N/A * @summary confirm that shaping works as expected. (Mainly for new characters which were added in Unicode 5 and 6)
1914N/A * used where appropriate.
1914N/A */
1914N/A
1914N/Aimport java.awt.font.NumericShaper;
1914N/Aimport java.util.EnumSet;
1914N/Aimport static java.awt.font.NumericShaper.*;
1914N/A
1914N/Apublic class ShapingTest {
2331N/A
2331N/A private static boolean err = false;
2331N/A
1914N/A public static void main(String[] args) {
2331N/A test6842557();
2331N/A test6943963();
3081N/A test6903266();
2331N/A
2331N/A if (err) {
2331N/A throw new RuntimeException("shape() returned unexpected value.");
2331N/A }
2331N/A }
2331N/A
2331N/A private static void test6842557() {
1914N/A NumericShaper ns_old = getContextualShaper(ARABIC | TAMIL | ETHIOPIC,
1914N/A EUROPEAN);
1914N/A NumericShaper ns_new = getContextualShaper(EnumSet.of(
1914N/A Range.ARABIC, Range.TAMIL, Range.ETHIOPIC),
1914N/A Range.EUROPEAN);
1914N/A
1914N/A String[][] data = {
1914N/A // Arabic "October 10"
1914N/A {"\u0623\u0643\u062a\u0648\u0628\u0631 10",
1914N/A "\u0623\u0643\u062a\u0648\u0628\u0631 \u0661\u0660"},
1914N/A
1914N/A // Tamil "Year 2009"
1914N/A {"\u0b86\u0ba3\u0bcd\u0b9f\u0bc1 2009",
1914N/A "\u0b86\u0ba3\u0bcd\u0b9f\u0bc1 \u0be8\u0be6\u0be6\u0bef"},
1914N/A // "\u0be800\u0bef is returned by pre-JDK7 because Tamil zero was not
1914N/A // included in Unicode 4.0.0.
1914N/A
1914N/A // Ethiopic "Syllable<HA> 2009"
1914N/A {"\u1200 2009",
1914N/A "\u1200 \u136a00\u1371"},
1914N/A // Ethiopic zero doesn't exist even in Unicode 5.1.0.
1914N/A };
1914N/A
1914N/A for (int i = 0; i < data.length; i++) {
2331N/A checkResult("ARABIC | TAMIL | ETHIOPIC",
2331N/A ns_old, data[i][0], data[i][1]);
1914N/A
2331N/A checkResult("Range.ARABIC, Range.TAMIL, Range.ETHIOPIC",
2331N/A ns_new, data[i][0], data[i][1]);
2331N/A }
2331N/A }
1914N/A
2331N/A private static void test6943963() {
2331N/A // Needed to reproduce this bug.
2331N/A NumericShaper ns_dummy = getContextualShaper(ARABIC | TAMIL | ETHIOPIC,
2331N/A EUROPEAN);
2331N/A char[] c = "\u1200 1".toCharArray();
2331N/A ns_dummy.shape(c, 0, c.length);
2331N/A
2331N/A
2331N/A String given = "\u0627\u0628 456";
2331N/A String expected_ARABIC = "\u0627\u0628 \u0664\u0665\u0666";
2331N/A String expected_EASTERN_ARABIC = "\u0627\u0628 \u06f4\u06f5\u06f6";
2331N/A
2331N/A NumericShaper ns = getContextualShaper(ARABIC);
2331N/A checkResult("ARABIC", ns, given, expected_ARABIC);
2331N/A
2331N/A ns = getContextualShaper(EnumSet.of(Range.ARABIC));
2331N/A checkResult("Range.ARABIC", ns, given, expected_ARABIC);
1914N/A
2331N/A ns = getContextualShaper(EASTERN_ARABIC);
2331N/A checkResult("EASTERN_ARABIC", ns, given, expected_EASTERN_ARABIC);
2331N/A
2331N/A ns = getContextualShaper(EnumSet.of(Range.EASTERN_ARABIC));
2331N/A checkResult("Range.EASTERN_ARABIC", ns, given, expected_EASTERN_ARABIC);
2331N/A
2331N/A ns = getContextualShaper(ARABIC | EASTERN_ARABIC);
2331N/A checkResult("ARABIC | EASTERN_ARABIC", ns, given, expected_EASTERN_ARABIC);
2331N/A
2331N/A ns = getContextualShaper(EnumSet.of(Range.ARABIC, Range.EASTERN_ARABIC));
2331N/A checkResult("Range.ARABIC, Range.EASTERN_ARABIC", ns, given, expected_EASTERN_ARABIC);
2331N/A }
1914N/A
3081N/A private static void test6903266() {
3081N/A NumericShaper ns = getContextualShaper(EnumSet.of(Range.TAI_THAM_HORA));
3081N/A String given = "\u1a20 012";
3081N/A String expected = "\u1a20 \u1a80\u1a81\u1a82";
3081N/A checkResult("Range.TAI_THAM_HORA", ns, given, expected);
3081N/A
3081N/A ns = getContextualShaper(EnumSet.of(Range.TAI_THAM_HORA,
3081N/A Range.TAI_THAM_THAM));
3081N/A given = "\u1a20 012";
3081N/A expected = "\u1a20 \u1a90\u1a91\u1a92"; // Tham digits are prioritized.
3081N/A checkResult("Range.TAI_THAM_HORA, Range.TAI_THAM_THAM", ns, given, expected);
3081N/A
3081N/A ns = getContextualShaper(EnumSet.of(Range.JAVANESE));
3081N/A given = "\ua984 012";
3081N/A expected = "\ua984 \ua9d0\ua9d1\ua9d2";
3081N/A checkResult("Range.JAVANESE", ns, given, expected);
3081N/A
3081N/A ns = getContextualShaper(EnumSet.of(Range.TAI_THAM_THAM));
3081N/A given = "\u1a20 012";
3081N/A expected = "\u1a20 \u1a90\u1a91\u1a92";
3081N/A checkResult("Range.TAI_THAM_THAM", ns, given, expected);
3081N/A
3081N/A ns = getContextualShaper(EnumSet.of(Range.MEETEI_MAYEK));
3081N/A given = "\uabc0 012";
3081N/A expected = "\uabc0 \uabf0\uabf1\uabf2";
3081N/A checkResult("Range.MEETEI_MAYEK", ns, given, expected);
3081N/A }
3081N/A
2331N/A private static void checkResult(String ranges, NumericShaper ns,
2331N/A String given, String expected) {
2331N/A char[] text = given.toCharArray();
2331N/A ns.shape(text, 0, text.length);
2331N/A String got = new String(text);
1914N/A
2331N/A if (!expected.equals(got)) {
2331N/A err = true;
2331N/A System.err.println("Error with range(s) <" + ranges + ">.");
2331N/A System.err.println(" text = " + given);
2331N/A System.err.println(" got = " + got);
2331N/A System.err.println(" expected = " + expected);
2331N/A } else {
2331N/A System.out.println("OK with range(s) <" + ranges + ">.");
2331N/A System.out.println(" text = " + given);
2331N/A System.out.println(" got = " + got);
2331N/A System.out.println(" expected = " + expected);
1914N/A }
1914N/A }
1914N/A
1914N/A}