Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
70 lines
2.9 KiB
Java
70 lines
2.9 KiB
Java
/*
|
|
* Copyright (c) 2003, 2025, 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 4935798 6521210 6901159
|
|
* @summary Tests that all family names that are reported in all locales
|
|
* correspond to some font returned from getAllFonts().
|
|
* @run main/othervm/timeout=360 LocaleFamilyNames
|
|
*/
|
|
import java.awt.*;
|
|
import java.util.*;
|
|
|
|
public class LocaleFamilyNames {
|
|
public static void main(String[] args) throws Exception {
|
|
System.out.println("Start time: " + java.time.LocalDateTime.now());
|
|
|
|
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
|
|
Font[] all_fonts = ge.getAllFonts();
|
|
Locale[] all_locales = Locale.getAvailableLocales();
|
|
|
|
System.out.println("Number of fonts: " + all_fonts.length);
|
|
System.out.println("Number of locales: " + all_locales.length);
|
|
|
|
HashSet all_families = new HashSet();
|
|
for (int i=0; i<all_fonts.length; i++) {
|
|
all_families.add(all_fonts[i].getFamily());
|
|
for (int j=0; j<all_locales.length;j++) {
|
|
all_families.add(all_fonts[i].getFamily(all_locales[j]));
|
|
}
|
|
}
|
|
|
|
System.out.println("Number of font families: " + all_families.size());
|
|
System.out.println("Time after preparing the font families HashSet: " + java.time.LocalDateTime.now());
|
|
|
|
for (int i=0; i<all_locales.length; i++) {
|
|
String[] families_for_locale =
|
|
ge.getAvailableFontFamilyNames(all_locales[i]);
|
|
for (int j=0; j<families_for_locale.length; j++) {
|
|
if ( !all_families.contains(families_for_locale[j]) ) {
|
|
System.out.println("LOCALE: [" + all_locales[i]+"]");
|
|
System.out.print("NO FONT HAS " +
|
|
"THE FOLLOWING FAMILY NAME:");
|
|
System.out.println("["+families_for_locale[j]+"]");
|
|
throw new Exception("test failed");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|