< prev index next >

test/jdk/java/awt/font/WindowsIndicFonts.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2019, 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. --- 1,7 ---- /* ! * Copyright (c) 2019,2020 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.
*** 20,30 **** * or visit www.oracle.com if you need additional information or have any * questions. */ /* * @test ! * @bug 8208179 * @summary Verifies logical fonts support Indic + other Asian code points * @requires (os.family == "windows") */ /* --- 20,30 ---- * or visit www.oracle.com if you need additional information or have any * questions. */ /* * @test ! * @bug 8208179 8223935 * @summary Verifies logical fonts support Indic + other Asian code points * @requires (os.family == "windows") */ /*
*** 40,82 **** * The test here just verifies that at least one required code point from each * of these scripts is available to make sure we don't regress, or to catch * and understand cases where those fonts may not be installed. */ import java.awt.Font; public class WindowsIndicFonts { static boolean failed = false; static Font dialog = new Font(Font.DIALOG, Font.PLAIN, 12); public static void main(String args[]) { if (!System.getProperty("os.name").toLowerCase().contains("windows")) { return; } ! test("\u0905", "Devanagari"); // from Mangal font ! test("\u0985", "Bengali"); // from Vrinda font ! test("\u0a05", "Gurmukhi"); // from Raavi font ! test("\u0a85", "Gujurati"); // from Shruti font ! test("\u0b05", "Oriya"); // from Kalinga font ! test("\u0b85", "Tamil"); // from Latha font ! test("\u0c05", "Telugu"); // from Gautami font ! test("\u0c85", "Kannada"); // from Tunga font ! test("\u0d05", "Malayalam"); // from Kartika font ! test("\u0c05", "Sinhala"); // from Iskoola Pota font ! test("\u0e05", "Thai"); // from DokChampa font ! test("\u0e87", "Lao"); // from DokChampa font ! test("\u0e05", "Khmer"); // from Khmer UI font ! test("\u1820", "Mongolian"); // from Mongolian Baiti font if (failed) { throw new RuntimeException("Missing support for a script"); } } ! static void test(String text, String script) { if (dialog.canDisplayUpTo(text) != -1) { failed = true; System.out.println("No codepoint for " + script); } } --- 40,89 ---- * The test here just verifies that at least one required code point from each * of these scripts is available to make sure we don't regress, or to catch * and understand cases where those fonts may not be installed. */ import java.awt.Font; + import java.io.File; public class WindowsIndicFonts { static boolean failed = false; static Font dialog = new Font(Font.DIALOG, Font.PLAIN, 12); + static final String WINDOWS_FONT_DIR = "c:\\windows\\fonts"; public static void main(String args[]) { if (!System.getProperty("os.name").toLowerCase().contains("windows")) { return; } ! test("\u0905", "Devanagari", "mangal.ttf"); // from Mangal font ! test("\u0985", "Bengali", "vrinda.ttf"); // from Vrinda font ! test("\u0a05", "Gurmukhi", "raavi.ttf"); // from Raavi font ! test("\u0a85", "Gujurati", "shruti.ttf"); // from Shruti font ! test("\u0b05", "Oriya", "kalinga.ttf"); // from Kalinga font ! test("\u0b85", "Tamil", "latha.ttf"); // from Latha font ! test("\u0c05", "Telugu", "gautami.ttf"); // from Gautami font ! test("\u0c85", "Kannada", "tunga.ttf"); // from Tunga font ! test("\u0d05", "Malayalam", "kartika.ttf"); // from Kartika font ! test("\u0c05", "Sinhala", "iskpota.ttf"); // from Iskoola Pota font ! test("\u0e05", "Thai", "dokchamp.ttf"); // from DokChampa font ! test("\u0e87", "Lao", "dokchamp.ttf"); // from DokChampa font ! test("\u0e05", "Khmer", "khmerui.ttf"); // from Khmer UI font ! test("\u1820", "Mongolian", "monbaiti.ttf"); // from Mongolian Baiti font if (failed) { throw new RuntimeException("Missing support for a script"); } } ! static void test(String text, String script, String filename) { ! File f = new File(WINDOWS_FONT_DIR, filename); ! if (!f.exists()) { ! System.out.println("Can't find required font file: " + filename); ! return; ! } if (dialog.canDisplayUpTo(text) != -1) { failed = true; System.out.println("No codepoint for " + script); } }
< prev index next >