/* * Copyright (c) 2013, 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 * @bug 8015556 * @summary Surrogate pairs do not render properly on MacOS X. */ import java.util.Locale; import java.awt.*; import java.awt.font.*; import javax.swing.*; public class SuppCharTest { static String str = "ABC\uD840\uDC01\uD840\uDC00AB"; static String EXTB_FONT = "MingLiU-ExtB"; public static void main(String args[]) throws Exception { final Font font = new Font(EXTB_FONT, Font.PLAIN, 36); if (!EXTB_FONT.equalsIgnoreCase(font.getFamily(Locale.ENGLISH))) { return; } SwingUtilities.invokeLater(new Runnable(){ @Override public void run(){ JFrame f = new JFrame("Test Supplementary Char Support"); Component c = new SuppCharComp(font, str); f.add("Center", c); JButton b = new JButton(str); b.setFont(font); f.add("South", b); f.pack(); f.setVisible(true); } }); /* If a supplementary character was found, 'invisible glyphs' * with value 65535 will be inserted in the place of the 2nd (low) * char index. So we are looking here to make sure such substitutions * took place. */ FontRenderContext frc = new FontRenderContext(null, false, false); GlyphVector gv = font.createGlyphVector(frc, str); int numGlyphs = gv.getNumGlyphs(); int[] codes = gv.getGlyphCodes(0, numGlyphs, null); boolean foundInvisibleGlyph = false; for (int i=0; i