1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/*
* Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.awt.*;
import java.awt.image.BufferedImage;
/*
* @test
* @key headful
* @summary Check the return value of the getActionCommand method
* of the ActionEvent triggered when TrayIcon is double clicked
* (single clicked, on Mac)
* @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com)
* @modules java.desktop/java.awt:open
* @library ../../../../lib/testlibrary ../
* @library /java/awt/patchlib
* @build java.desktop/java.awt.Helper
* @build ExtendedRobot SystemTrayIconHelper
* @run main ActionCommand
*/
public class ActionCommand {
TrayIcon icon;
ExtendedRobot robot;
boolean actionPerformed = false;
Object actionLock = new Object();
String actionCommand = null;
static boolean isMacOS = false;
public static void main(String[] args) throws Exception {
if (! SystemTray.isSupported()) {
System.out.println("SystemTray not supported on the platform under test. " +
"Marking the test passed");
} else {
if (System.getProperty("os.name").toLowerCase().startsWith("win")) {
System.err.println("Test can fail if the icon hides to a tray icons pool " +
"in Windows 7, which is behavior by default.\n" +
"Set \"Right mouse click\" -> \"Customize notification icons\" -> " +
"\"Always show all icons and notifications on the taskbar\" true to " +
"avoid this problem. Or change behavior only for Java SE tray icon " +
"and rerun test.");
} else if (System.getProperty("os.name").toLowerCase().startsWith("mac")){
isMacOS = true;
} else if (SystemTrayIconHelper.isOel7()) {
System.out.println("OEL 7 doesn't support double click in " +
"systray. Skipped");
return;
}
new ActionCommand().doTest();
}
}
void doTest() throws Exception {
robot = new ExtendedRobot();
EventQueue.invokeAndWait(() -> {
SystemTray tray = SystemTray.getSystemTray();
icon = new TrayIcon(new BufferedImage(20, 20, BufferedImage.TYPE_INT_RGB), "Sample Icon");
icon.addActionListener((event) -> {
actionPerformed = true;
actionCommand = event.getActionCommand();
synchronized (actionLock) {
try {
actionLock.notifyAll();
} catch (Exception e) {
}
}
});
if (icon.getActionCommand() != null)
throw new RuntimeException("FAIL: getActionCommand did not return null " +
"when no action command set " + icon.getActionCommand());
icon.setActionCommand("Sample Command");
if (! "Sample Command".equals(icon.getActionCommand()))
throw new RuntimeException("FAIL: getActionCommand did not return the correct value. " +
icon.getActionCommand() + " Expected: Sample Command");
try {
tray.add(icon);
} catch (AWTException e) {
throw new RuntimeException(e);
}
});
robot.waitForIdle();
Point iconPosition = SystemTrayIconHelper.getTrayIconLocation(icon);
if (iconPosition == null)
throw new RuntimeException("Unable to find the icon location!");
robot.mouseMove(iconPosition.x, iconPosition.y);
robot.waitForIdle(2000);
actionPerformed = false;
SystemTrayIconHelper.doubleClick(robot);
if (! actionPerformed) {
synchronized (actionLock) {
try {
actionLock.wait(3000);
} catch (Exception e) {
}
}
}
if (! actionPerformed) {
throw new RuntimeException("FAIL: ActionEvent not triggered when TrayIcon is "+(isMacOS? "" : "double ")+"clicked");
} else if (! "Sample Command".equals(actionCommand)) {
throw new RuntimeException("FAIL: ActionEvent.getActionCommand did not return the correct " +
"value. Returned: " + actionCommand + " ; Expected: Sample Command");
}
EventQueue.invokeAndWait(() -> {
icon.setActionCommand(null);
if (icon.getActionCommand() != null) {
throw new RuntimeException("FAIL: ActionCommand set to null. getActionCommand did " +
"not return null " + icon.getActionCommand());
}
});
robot.mouseMove(0, 0);
robot.waitForIdle();
robot.mouseMove(iconPosition.x, iconPosition.y);
robot.waitForIdle();
actionPerformed = false;
actionCommand = null;
SystemTrayIconHelper.doubleClick(robot);
if (! actionPerformed) {
synchronized (actionLock) {
try {
actionLock.wait(3000);
} catch (Exception e) {
}
}
}
if (! actionPerformed) {
throw new RuntimeException("FAIL: ActionEvent not triggered when ActionCommand set to " +
"null and then TrayIcon is "+(isMacOS? "" : "double ")+ "clicked");
} else if (actionCommand != null) {
throw new RuntimeException("FAIL: ActionEvent.getActionCommand did not return null " +
"when ActionCommand is set to null " + actionCommand);
}
}
}
|