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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/*
* Copyright (c) 1999, 2024, 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.BorderLayout;
import java.awt.Button;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Frame;
import java.awt.Label;
import java.awt.Menu;
import java.awt.MenuBar;
import java.awt.MenuItem;
import java.awt.Panel;
import java.awt.Point;
import java.awt.PopupMenu;
import java.awt.Robot;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.InputEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.Hashtable;
/*
* @test
* @bug 4214550
* @summary Tests that there is no seg fault on repeatedly showing
* PopupMenu by right-clicking Label, Panel or Button
* @key headful
* @run main ActivePopupCrashTest
*/
public class ActivePopupCrashTest {
private static Frame f;
private static Label l;
private static Button b;
private static Panel p;
private static volatile Point labelCenter;
private static volatile Point buttonCenter;
private static volatile Point panelCenter;
public static void main(String[] args) throws Exception {
final int REPEAT_COUNT = 5;
try {
Robot robot = new Robot();
robot.setAutoDelay(50);
EventQueue.invokeAndWait(ActivePopupCrashTest::createAndShowUI);
robot.delay(1000);
EventQueue.invokeAndWait(() -> {
labelCenter = getCenterPoint(l);
buttonCenter = getCenterPoint(b);
panelCenter = getCenterPoint(p);
});
for (int i = 0; i < REPEAT_COUNT; i++) {
robot.mouseMove(labelCenter.x, labelCenter.y);
robot.mousePress(InputEvent.BUTTON3_DOWN_MASK);
robot.mouseRelease(InputEvent.BUTTON3_DOWN_MASK);
robot.mouseMove(buttonCenter.x, buttonCenter.y);
robot.mousePress(InputEvent.BUTTON3_DOWN_MASK);
robot.mouseRelease(InputEvent.BUTTON3_DOWN_MASK);
robot.mouseMove(panelCenter.x, panelCenter.y);
robot.mousePress(InputEvent.BUTTON3_DOWN_MASK);
robot.mouseRelease(InputEvent.BUTTON3_DOWN_MASK);
}
// To close the popup, otherwise test fails on windows with timeout error
robot.mouseMove(panelCenter.x - 5, panelCenter.y - 5);
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
} finally {
EventQueue.invokeAndWait(() -> {
if (f != null) {
f.dispose();
}
});
}
}
private static Point getCenterPoint(Component component) {
Point p = component.getLocationOnScreen();
Dimension size = component.getSize();
return new Point(p.x + size.width / 2, p.y + size.height / 2);
}
public static void createAndShowUI() {
f = new Frame("ActivePopupCrashTest Test");
MenuItem item = new MenuItem("file-1");
item.addActionListener(ActivePopupCrashTest::logActionEvent);
Menu m = new Menu("file");
m.add(item);
item = new MenuItem("file-2");
m.add(item);
MenuBar mb = new MenuBar();
mb.add(m);
f.setMenuBar(mb);
f.setSize(200, 200);
f.setLayout(new BorderLayout());
l = new Label("label");
addPopup(l, "label");
f.add(l, BorderLayout.NORTH);
p = new Panel();
addPopup(p, "panel");
f.add(p, BorderLayout.CENTER);
b = new Button("button");
addPopup(b, "button");
f.add(b, BorderLayout.SOUTH);
f.setSize(400, 300);
f.setLocationRelativeTo(null);
f.setVisible(true);
}
static void addPopup(Component c, String name) {
PopupMenu pm = new PopupMenu();
MenuItem mi = new MenuItem(name + "-1");
mi.addActionListener(ActivePopupCrashTest::logActionEvent);
pm.add(mi);
mi = new MenuItem(name + "-2");
pm.add(mi);
setHash(c, pm);
c.add(pm);
c.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
mouseAction("mouseClicked", e);
}
@Override
public void mousePressed(MouseEvent e) {
mouseAction("mousePressed", e);
}
@Override
public void mouseReleased(MouseEvent e) {
mouseAction("mouseReleased", e);
}
});
}
static void logActionEvent(ActionEvent e) {
System.out.println("actionPerformed, event=" + e + ", mod=" + getMods(e));
System.out.println("command=" + e.getActionCommand());
System.out.println("param=" + e.paramString());
System.out.println("source=" + e.getSource());
}
static String getMods(ActionEvent e) { return getMods(e.getModifiers()); }
static String getMods(MouseEvent e) { return getMods(e.getModifiers()); }
static String getMods(int mods) {
String modstr = "";
if ((mods & ActionEvent.SHIFT_MASK) == ActionEvent.SHIFT_MASK) {
modstr += (" SHIFT");
} else if ((mods & ActionEvent.ALT_MASK) == ActionEvent.ALT_MASK) {
modstr += (" ALT");
} else if ((mods & ActionEvent.CTRL_MASK) == ActionEvent.CTRL_MASK) {
modstr += (" CTRL");
} else if ((mods & ActionEvent.META_MASK) == ActionEvent.META_MASK) {
modstr += (" META");
}
return modstr;
}
static void mouseAction(String which, MouseEvent e) {
Component c = e.getComponent();
System.out.println(which + " e = " + e + " , mods = " + getMods(e) +
" , component = " + c);
if (e.isPopupTrigger()) {
System.out.println("isPopup");
PopupMenu pm = getHash(c);
pm.show(c, c.getWidth() / 2, c.getHeight() / 2);
}
}
static Hashtable<Component, PopupMenu> popupTable = new Hashtable<>();
static void setHash(Component c, PopupMenu p) {
popupTable.put(c, p);
}
static PopupMenu getHash(Component c) {
return popupTable.get(c);
}
}
|