JAL-3833 fixed HiDPI test for macOS
[jalview.git] / test / jalview / bin / HiDPISettingTest1.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.bin;
22
23 import static org.testng.Assert.assertEquals;
24
25 import org.mockito.Mockito;
26 import org.testng.annotations.AfterClass;
27 import org.testng.annotations.BeforeMethod;
28 import org.testng.annotations.Test;
29
30 import jalview.gui.AlignFrame;
31 import jalview.gui.Desktop;
32 import jalview.gui.JvOptionPane;
33 import jalview.io.DataSourceType;
34 import jalview.io.FileLoader;
35 import jalview.util.Platform;
36
37 /*
38  * Testing a HiDPI display is difficult without running in a HiDPI display.
39  * The gathering of screen size and resolution performed by jalview.bin.HiDPISetting
40  * is now farmed out into a separate class jalview.bin.ScreenInfo so it can be more
41  * easily Mocked in tests.
42  * Two sets of tests are performed.
43  * 1) testLinuxScalePropertyToActualTransform() sets the property that HiDPISetting
44  * uses (via jalview.bin.Launcher or getdown) to scale up Jalview, and then looks at
45  * the alignment panel graphics2d transform to see if it's been scaled by the same
46  * amount (in this case 4 -- unlikely to happen by accident!).
47  * 2) testHiDPISettingInit() which tests the calculation that HiDPISetting uses to
48  * decide from apparent screen information (mocked using Mockito in the tests) what
49  * scaling factor to set (it doesn't actually set it, just suggests it to
50  * jalview.bin.Launcher)
51  */
52 public class HiDPISettingTest1
53 {
54
55   AlignFrame af = null;
56
57   @BeforeMethod(alwaysRun = true)
58   public void setUp()
59   {
60     JvOptionPane.setInteractiveMode(false);
61     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
62     Cache.loadProperties("test/jalview/bin/hidpiTestProps.jvprops");
63     Jalview.main(
64             new String[]
65             { "-nosplash", "-nonews", "-noquestionnaire",
66                 "-nowebservicediscovery" });
67
68     af = new FileLoader().LoadFileWaitTillLoaded("examples/uniref50.fa",
69             DataSourceType.FILE);
70
71     /*
72      * wait for Consensus thread to complete
73      */
74     do
75     {
76       try
77       {
78         Thread.sleep(50);
79       } catch (InterruptedException x)
80       {
81       }
82     } while (af.getViewport().getCalcManager().isWorking());
83   }
84
85   @AfterClass(alwaysRun = true)
86   public void tearDown()
87   {
88     Desktop.instance.closeAll_actionPerformed(null);
89   }
90
91   @Test(groups = { "Functional" })
92   public void testHiDPISettingInit()
93   {
94     String scalePropertyName = "sun.java2d.uiScale";
95     // ensure scale property is cleared (otherwise it will be re-used)
96     System.clearProperty(HiDPISetting.scalePropertyName);
97
98     { // keep the mock under lock
99       // Ancient monitor -- no property change set
100       setMockScreen(1024, 768, 72);
101       assertEquals(HiDPISetting.getScalePropertyArg(), null);
102
103       // Old monitor -- no property change set
104       setMockScreen(1200, 800, 96);
105       assertEquals(HiDPISetting.getScalePropertyArg(), null);
106
107       // HD screen -- no property change set
108       setMockScreen(1920, 1080, 96);
109       assertEquals(HiDPISetting.getScalePropertyArg(), null);
110
111       // currently HiDPISetting only operates for Linux
112
113       // 4K screen -- scale by 2
114       setMockScreen(3180, 2160, 80);
115       assertEquals(HiDPISetting.getScalePropertyArg(),
116               Platform.isLinux() ? "-D" + scalePropertyName + "=2" : null);
117
118       // 4K screen with high dpi -- scale by 3
119       setMockScreen(3180, 2160, 450);
120       assertEquals(HiDPISetting.getScalePropertyArg(),
121               Platform.isLinux() ? "-D" + scalePropertyName + "=3" : null);
122
123       // stupidly big screen -- scale by 8
124       setMockScreen(19200, 10800, 72);
125       assertEquals(HiDPISetting.getScalePropertyArg(),
126               Platform.isLinux() ? "-D" + scalePropertyName + "=8" : null);
127     }
128   }
129
130   private void setMockScreen(int width, int height, int dpi)
131   {
132     HiDPISetting.clear();
133     ScreenInfo mockScreenInfo = Mockito.spy(HiDPISetting.getScreenInfo());
134     Mockito.doReturn(height).when(mockScreenInfo).getScreenHeight();
135     Mockito.doReturn(width).when(mockScreenInfo).getScreenWidth();
136     Mockito.doReturn(dpi).when(mockScreenInfo).getScreenResolution();
137     HiDPISetting.setScreenInfo(mockScreenInfo);
138   }
139 }