29c774888d2693078e9f97100e4816f3cd442f63
[jalview.git] / test / jalview / gui / FontChooserTest.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.gui;
22
23 import java.awt.Canvas;
24 import java.awt.Font;
25 import java.awt.FontMetrics;
26
27 import org.testng.annotations.Test;
28
29 public class FontChooserTest
30 {
31
32   /**
33    * Not a real test as it runs no methods on FontChooser and makes no
34    * assertions, but this method writes to sysout the names of any (currently
35    * available, plain) fonts and point sizes that would be rejected by Jalview's
36    * FontChooser as having an I-width of less than 1.0.
37    */
38   @Test(groups = { "Functional" })
39   public void dumpInvalidFonts()
40   {
41     String[] fonts = java.awt.GraphicsEnvironment
42             .getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
43     final Canvas canvas = new Canvas();
44     for (int pointSize = 1;; pointSize++)
45     {
46       System.out.println(System.lineSeparator()
47               + "Plain fonts with sub-pixel width at " + pointSize + "pt:");
48       if (pointSize == 1)
49       {
50         System.out.println("All except:");
51       }
52       int badCount = 0;
53       for (String fontname : fonts)
54       {
55         Font newFont = new Font(fontname, Font.PLAIN, pointSize);
56         FontMetrics fontm = canvas.getFontMetrics(newFont);
57         double iw = fontm.getStringBounds("I", null).getWidth();
58         final boolean tooSmall = iw < 1d;
59         if (tooSmall)
60         {
61           badCount++;
62         }
63         if ((pointSize > 1 && tooSmall) || (pointSize == 1 && !tooSmall))
64         {
65           System.out.println(fontname);
66         }
67       }
68       if (badCount == 0)
69       {
70         break;
71       }
72     }
73   }
74
75 }