'Test' added to help identify "too small" font families/sizes
[jalview.git] / test / jalview / gui / FontChooserTest.java
1 package jalview.gui;
2
3 import java.awt.Canvas;
4 import java.awt.Font;
5 import java.awt.FontMetrics;
6
7 import org.junit.Test;
8
9 public class FontChooserTest
10 {
11
12   /**
13    * Not a real test as it runs no methods on FontChooser and makes no
14    * assertions, but this method writes to sysout the names of any (currently
15    * available, plain) fonts and point sizes that would be rejected by Jalview's
16    * FontChooser as having an I-width of less than 1.0.
17    */
18   @Test
19   public void dumpInvalidFonts()
20   {
21     String[] fonts = java.awt.GraphicsEnvironment
22             .getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
23     for (int pointSize = 1;; pointSize++)
24     {
25       System.out.println(System.lineSeparator()
26               + "Fonts with insufficient width at " + pointSize + "pt:");
27       if (pointSize == 1)
28       {
29         System.out.println("All except:");
30       }
31       int badCount = 0;
32       for (String fontname : fonts)
33       {
34         Font newFont = new Font(fontname, Font.PLAIN, pointSize);
35         FontMetrics fontm = new Canvas().getFontMetrics(newFont);
36         double iw = fontm.getStringBounds("I", null).getWidth();
37         final boolean tooSmall = iw < 1d;
38         if (tooSmall)
39         {
40           badCount++;
41         }
42         if ((pointSize > 1 && tooSmall) || (pointSize == 1 && !tooSmall))
43         {
44           System.out.println(fontname);
45         }
46       }
47       if (badCount == 0)
48       {
49         break;
50       }
51     }
52   }
53
54 }