JAL-2326 added setup method for JvOptionPane in all Jalveiw test classes to enable...
[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.BeforeClass;
28 import org.testng.annotations.Test;
29
30 public class FontChooserTest
31 {
32
33   @BeforeClass(alwaysRun = true)
34   public void setUpJvOptionPane()
35   {
36     JvOptionPane.setInteractiveMode(false);
37     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
38   }
39
40   /**
41    * Not a real test as it runs no methods on FontChooser and makes no
42    * assertions, but this method writes to sysout the names of any (currently
43    * available, plain) fonts and point sizes that would be rejected by Jalview's
44    * FontChooser as having an I-width of less than 1.0.
45    */
46   @Test(groups = { "Functional" }, enabled = false)
47   public void dumpInvalidFonts()
48   {
49     String[] fonts = java.awt.GraphicsEnvironment
50             .getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
51     final Canvas canvas = new Canvas();
52     for (int pointSize = 1;; pointSize++)
53     {
54       System.out.println(System.lineSeparator()
55               + "Plain fonts with sub-pixel width at " + pointSize + "pt:");
56       if (pointSize == 1)
57       {
58         System.out.println("All except:");
59       }
60       int badCount = 0;
61       for (String fontname : fonts)
62       {
63         Font newFont = new Font(fontname, Font.PLAIN, pointSize);
64         FontMetrics fontm = canvas.getFontMetrics(newFont);
65         double iw = fontm.getStringBounds("I", null).getWidth();
66         final boolean tooSmall = iw < 1d;
67         if (tooSmall)
68         {
69           badCount++;
70         }
71         if ((pointSize > 1 && tooSmall) || (pointSize == 1 && !tooSmall))
72         {
73           System.out.println(fontname);
74         }
75       }
76       if (badCount == 0)
77       {
78         break;
79       }
80     }
81   }
82
83 }