JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / util / PlatformTest.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.util;
22
23 import static org.testng.Assert.assertEquals;
24 import static org.testng.Assert.assertFalse;
25 import static org.testng.Assert.assertNull;
26 import static org.testng.Assert.assertTrue;
27
28 import jalview.gui.JvOptionPane;
29
30 import java.awt.Button;
31 import java.awt.Toolkit;
32 import java.awt.event.InputEvent;
33 import java.awt.event.MouseEvent;
34
35 import org.testng.annotations.BeforeClass;
36 import org.testng.annotations.Test;
37
38 public class PlatformTest
39 {
40
41   @BeforeClass(alwaysRun = true)
42   public void setUpJvOptionPane()
43   {
44     JvOptionPane.setInteractiveMode(false);
45     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
46   }
47
48   Button b = new Button();
49
50   /**
51    * isControlDown for Mac should answer true for Meta-down, but not for right
52    * mouse (popup trigger)
53    */
54   @Test(groups = "Functional")
55   public void testIsControlDown_mac()
56   {
57     String toolkit = Toolkit.getDefaultToolkit().getClass().getName();
58     if ("sun.awt.X11.XToolkit".equals(toolkit))
59     {
60       /*
61        * this toolkit on the build server fails these tests,
62        * because it returns 2, not 4, for getMenuShortcutKeyMask
63        */
64       return;
65     }
66
67     int clickCount = 1;
68     boolean isPopupTrigger = false;
69     int buttonNo = MouseEvent.BUTTON1;
70     boolean mac = true;
71
72     int mods = 0;
73     // not concerned with MouseEvent id, when, x, y, xAbs, yAbs values
74     assertFalse(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
75             0, 0, clickCount, isPopupTrigger, buttonNo), mac));
76
77     mods = InputEvent.CTRL_DOWN_MASK | InputEvent.BUTTON1_DOWN_MASK;
78     assertFalse(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
79             0, 0, clickCount, isPopupTrigger, buttonNo), mac));
80
81     mods = InputEvent.META_DOWN_MASK | InputEvent.BUTTON1_DOWN_MASK;
82     assertTrue(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
83             0, 0, clickCount, isPopupTrigger, buttonNo), mac));
84
85     isPopupTrigger = true;
86     assertFalse(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
87             0, 0, clickCount, isPopupTrigger, buttonNo), mac));
88
89     isPopupTrigger = false;
90     buttonNo = MouseEvent.BUTTON2;
91     mods = 0;
92     assertFalse(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
93             0, 0, clickCount, isPopupTrigger, buttonNo), mac));
94   }
95
96   /**
97    * If not a Mac, we only care whether CTRL_MASK modifier is set on the mouse
98    * event
99    */
100   @Test(groups = "Functional")
101   public void testIsControlDown_notMac()
102   {
103     int clickCount = 1;
104     boolean isPopupTrigger = false;
105     int buttonNo = MouseEvent.BUTTON1;
106     boolean mac = false;
107
108     int mods = 0;
109     // not concerned with MouseEvent id, when, x, y, xAbs, yAbs values
110     assertFalse(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
111             0, 0, clickCount, isPopupTrigger, buttonNo), mac));
112
113     mods = InputEvent.CTRL_DOWN_MASK;
114     assertTrue(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
115             0, 0, clickCount, isPopupTrigger, buttonNo), mac));
116
117     mods = InputEvent.CTRL_DOWN_MASK | InputEvent.SHIFT_DOWN_MASK
118             | InputEvent.ALT_DOWN_MASK;
119     clickCount = 2;
120     buttonNo = 2;
121     isPopupTrigger = true;
122     assertTrue(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
123             0, 0, clickCount, isPopupTrigger, buttonNo), mac));
124   }
125
126   @Test(groups = "Functional")
127   public void testPathEquals()
128   {
129     assertTrue(Platform.pathEquals(null, null));
130     assertFalse(Platform.pathEquals(null, "apath"));
131     assertFalse(Platform.pathEquals("apath", null));
132     assertFalse(Platform.pathEquals("apath", "APATH"));
133     assertTrue(Platform.pathEquals("apath", "apath"));
134     assertTrue(Platform.pathEquals("apath/a/b", "apath\\a\\b"));
135   }
136
137   @Test(groups = "Functional")
138   public void testEscapeBackslashes()
139   {
140     assertNull(Platform.escapeBackslashes(null));
141     assertEquals(Platform.escapeBackslashes("hello world"), "hello world");
142     assertEquals(Platform.escapeBackslashes("hello\\world"),
143             "hello\\\\world");
144   }
145 }