2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
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;
28 import jalview.gui.JvOptionPane;
30 import java.awt.Button;
31 import java.awt.Toolkit;
32 import java.awt.event.InputEvent;
33 import java.awt.event.MouseEvent;
35 import org.testng.annotations.BeforeClass;
36 import org.testng.annotations.Test;
38 public class PlatformTest
41 @BeforeClass(alwaysRun = true)
42 public void setUpJvOptionPane()
44 JvOptionPane.setInteractiveMode(false);
45 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
48 Button b = new Button();
51 * isControlDown for Mac should answer true for Meta-down, but not for right
52 * mouse (popup trigger)
54 @Test(groups = "Functional")
55 public void testIsControlDown_mac()
57 String toolkit = Toolkit.getDefaultToolkit().getClass().getName();
58 if ("sun.awt.X11.XToolkit".equals(toolkit))
61 * this toolkit on the build server fails these tests,
62 * because it returns 2, not 4, for getMenuShortcutKeyMask
68 boolean isPopupTrigger = false;
69 int buttonNo = MouseEvent.BUTTON1;
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));
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));
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));
85 isPopupTrigger = true;
86 assertFalse(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
87 0, 0, clickCount, isPopupTrigger, buttonNo), mac));
89 isPopupTrigger = false;
90 buttonNo = MouseEvent.BUTTON2;
92 assertFalse(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
93 0, 0, clickCount, isPopupTrigger, buttonNo), mac));
97 * If not a Mac, we only care whether CTRL_MASK modifier is set on the mouse
100 @Test(groups = "Functional")
101 public void testIsControlDown_notMac()
104 boolean isPopupTrigger = false;
105 int buttonNo = MouseEvent.BUTTON1;
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));
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));
117 mods = InputEvent.CTRL_DOWN_MASK | InputEvent.SHIFT_DOWN_MASK
118 | InputEvent.ALT_DOWN_MASK;
121 isPopupTrigger = true;
122 assertTrue(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0,
123 0, 0, clickCount, isPopupTrigger, buttonNo), mac));
126 @Test(groups = "Functional")
127 public void testPathEquals()
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"));
137 @Test(groups = "Functional")
138 public void testEscapeBackslashes()
140 assertNull(Platform.escapeBackslashes(null));
141 assertEquals(Platform.escapeBackslashes("hello world"), "hello world");
142 assertEquals(Platform.escapeBackslashes("hello\\world"), "hello\\\\world");