Skip to content

Commit cd5a43a

Browse files
author
Alexander Zvegintsev
committedMar 31, 2025
8353126: Open source events tests batch1
Reviewed-by: honkar, kizune
1 parent e4e6278 commit cd5a43a

File tree

2 files changed

+321
-0
lines changed

2 files changed

+321
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
/*
2+
* Copyright (c) 2001, 2025, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 4417964
27+
* @summary tests that drag events continue to arrive to heavyweight
28+
* when the mouse is moved to lightweight while dragging.
29+
* @key headful
30+
* @library /lib/client /java/awt/regtesthelpers
31+
* @build ExtendedRobot Util
32+
* @run main DragToLightweightTest
33+
*/
34+
35+
import java.awt.Color;
36+
import java.awt.Container;
37+
import java.awt.Dimension;
38+
import java.awt.EventQueue;
39+
import java.awt.FlowLayout;
40+
import java.awt.Frame;
41+
import java.awt.Graphics;
42+
import java.awt.HeadlessException;
43+
import java.awt.Point;
44+
import java.awt.Rectangle;
45+
import java.awt.event.MouseAdapter;
46+
import java.awt.event.MouseEvent;
47+
import java.util.concurrent.CountDownLatch;
48+
import java.util.concurrent.TimeUnit;
49+
50+
import test.java.awt.regtesthelpers.Util;
51+
52+
public class DragToLightweightTest {
53+
54+
private static final CountDownLatch latch = new CountDownLatch(1);
55+
private static volatile MouseTest mouseTest;
56+
57+
public static void main(String[] args) throws Exception {
58+
59+
EventQueue.invokeAndWait(() -> mouseTest = new MouseTest());
60+
61+
try {
62+
test();
63+
} finally {
64+
EventQueue.invokeAndWait(() -> {
65+
if (mouseTest != null) {
66+
mouseTest.dispose();
67+
}
68+
});
69+
}
70+
}
71+
72+
private static void test() throws Exception {
73+
ExtendedRobot robot = new ExtendedRobot();
74+
robot.waitForIdle();
75+
robot.delay(500);
76+
77+
Rectangle componentBounds = mouseTest.getLightweightComponentBounds();
78+
79+
robot.dragAndDrop(
80+
componentBounds.x + componentBounds.width / 2, componentBounds.y + componentBounds.height + 30,
81+
componentBounds.x + componentBounds.width / 2, componentBounds.y + 2 * componentBounds.height / 3
82+
);
83+
84+
if (!latch.await(5, TimeUnit.SECONDS)) {
85+
throw new RuntimeException("The test failed: no mouse release event received");
86+
}
87+
88+
System.out.println("Mouse release event received, the test PASSED");
89+
}
90+
91+
private static class MouseTest extends Frame {
92+
93+
final Foo foo;
94+
95+
public MouseTest() throws HeadlessException {
96+
super("DragToLightweightTest");
97+
98+
setLayout(new FlowLayout());
99+
100+
addMouseListener(new MouseAdapter() {
101+
@Override
102+
public void mouseReleased(MouseEvent e) {
103+
System.out.println("mouseReleased");
104+
latch.countDown();
105+
}
106+
});
107+
108+
// Create a Component that will be a child of the Frame and add
109+
// a MouseListener to it.
110+
foo = new Foo();
111+
foo.setBackground(Color.red);
112+
113+
System.out.println(foo.getPreferredSize());
114+
foo.setPreferredSize(new Dimension(350, 200));
115+
System.out.println(foo.getPreferredSize());
116+
117+
foo.addMouseListener(new DummyAdapter());
118+
119+
add(foo);
120+
121+
setSize(400, 400);
122+
setLocationRelativeTo(null);
123+
setVisible(true);
124+
}
125+
126+
public Rectangle getLightweightComponentBounds() throws Exception {
127+
return Util.invokeOnEDT(() -> {
128+
Point locationOnScreen = foo.getLocationOnScreen();
129+
Dimension size = foo.getSize();
130+
return new Rectangle(locationOnScreen.x, locationOnScreen.y, size.width, size.height);
131+
});
132+
}
133+
134+
private static class Foo extends Container {
135+
public void paint(Graphics g) {
136+
g.setColor(getBackground());
137+
g.fillRect(0, 0, getWidth(), getHeight());
138+
g.setColor(Color.white);
139+
g.drawString(getBounds().toString(), 5, 20);
140+
super.paint(g);
141+
}
142+
}
143+
144+
private static class DummyAdapter extends MouseAdapter {}
145+
}
146+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
/*
2+
* Copyright (c) 2002, 2025, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 4095172
27+
* @summary Test for no proper mouse coordinates on MOUSE_ENTER/MOUSE_EXIT events for Win boxes.
28+
* @key headful
29+
* @library /lib/client /java/awt/regtesthelpers
30+
* @build ExtendedRobot Util
31+
* @run main MouseEnterTest
32+
*/
33+
34+
import java.awt.EventQueue;
35+
import java.awt.Frame;
36+
import java.awt.Point;
37+
import java.awt.Rectangle;
38+
import java.awt.event.MouseAdapter;
39+
import java.awt.event.MouseEvent;
40+
import java.util.ArrayList;
41+
42+
import test.java.awt.regtesthelpers.Util;
43+
44+
public class MouseEnterTest {
45+
private static Frame frame;
46+
private static final TestMouseAdapter mouseAdapter = new TestMouseAdapter();
47+
48+
public static void main(String[] args) throws Exception {
49+
EventQueue.invokeAndWait(MouseEnterTest::initAndShowGUI);
50+
try {
51+
test();
52+
} finally {
53+
EventQueue.invokeAndWait(() -> {
54+
if (frame != null) {
55+
frame.dispose();
56+
}
57+
});
58+
}
59+
}
60+
61+
private static void initAndShowGUI() {
62+
frame = new Frame("MouseEnterTest");
63+
frame.setLayout(null);
64+
frame.setSize(300, 200);
65+
frame.setLocationRelativeTo(null);
66+
frame.addMouseListener(mouseAdapter);
67+
frame.setVisible(true);
68+
}
69+
70+
private static void test() throws Exception {
71+
ExtendedRobot robot = new ExtendedRobot();
72+
robot.waitForIdle();
73+
robot.delay(500);
74+
75+
Rectangle bounds = Util.invokeOnEDT(frame::getBounds);
76+
77+
java.util.List<Point> points = getBorderGlidePoints(bounds);
78+
for (int i = 0; i < points.size(); i += 2) {
79+
Point p1 = points.get(i);
80+
Point p2 = points.get(i + 1);
81+
82+
System.out.println("\n------------------\n");
83+
84+
System.out.printf("%s > %s > %s\n", p1, p2, p1);
85+
robot.glide(p1, p2);
86+
robot.waitForIdle();
87+
robot.glide(p2, p1);
88+
robot.waitForIdle();
89+
robot.delay(200);
90+
mouseAdapter.testEvents();
91+
92+
System.out.println("\n------------------\n");
93+
94+
System.out.printf("%s > %s > %s\n", p2, p1, p2);
95+
robot.glide(p2, p1);
96+
robot.waitForIdle();
97+
robot.glide(p1, p2);
98+
robot.waitForIdle();
99+
robot.delay(200);
100+
mouseAdapter.testEvents();
101+
}
102+
}
103+
104+
private static java.util.List<Point> getBorderGlidePoints(Rectangle bounds) {
105+
java.util.List<Point> list = new ArrayList<>();
106+
107+
int d = 10;
108+
109+
// left
110+
list.add(new Point(bounds.x - d, bounds.y + bounds.height / 2));
111+
list.add(new Point(bounds.x + d, bounds.y + bounds.height / 2));
112+
113+
// right
114+
list.add(new Point(bounds.x + bounds.width - d, bounds.y + bounds.height / 2));
115+
list.add(new Point(bounds.x + bounds.width + d, bounds.y + bounds.height / 2));
116+
117+
// top
118+
list.add(new Point(bounds.x + bounds.width / 2, bounds.y - d));
119+
list.add(new Point(bounds.x + bounds.width / 2, bounds.y + d));
120+
121+
// bottom
122+
list.add(new Point(bounds.x + bounds.width / 2, bounds.y + bounds.height - d));
123+
list.add(new Point(bounds.x + bounds.width / 2, bounds.y + bounds.height + d));
124+
125+
return list;
126+
}
127+
128+
private static final class TestMouseAdapter extends MouseAdapter {
129+
private static final int THRESHOLD = 5;
130+
private volatile MouseEvent lastEnteredEvent = null;
131+
private volatile MouseEvent lastExitedEvent = null;
132+
133+
@Override
134+
public void mouseEntered(MouseEvent e) {
135+
System.out.println("MouseEntered " + e);
136+
lastEnteredEvent = e;
137+
}
138+
139+
@Override
140+
public void mouseExited(MouseEvent e) {
141+
System.out.println("MouseExited " + e);
142+
lastExitedEvent = e;
143+
}
144+
145+
public void testEvents() {
146+
if (lastEnteredEvent == null || lastExitedEvent == null) {
147+
throw new RuntimeException("Missing lastEnteredEvent or lastExitedEvent");
148+
}
149+
150+
System.out.println("\nTesting:");
151+
System.out.println(lastEnteredEvent);
152+
System.out.println(lastExitedEvent);
153+
System.out.println();
154+
155+
int diffX = Math.abs(lastEnteredEvent.getX() - lastExitedEvent.getX());
156+
int diffScreenX = Math.abs(lastEnteredEvent.getY() - lastExitedEvent.getY());
157+
int diffY = Math.abs(lastEnteredEvent.getXOnScreen() - lastExitedEvent.getXOnScreen());
158+
int diffScreenY = Math.abs(lastEnteredEvent.getYOnScreen() - lastExitedEvent.getYOnScreen());
159+
160+
System.out.printf("THRESHOLD %d, diffX %d diffScreenX %d " +
161+
"diffY %d diffScreenY %d\n",
162+
THRESHOLD,
163+
diffX, diffScreenX,
164+
diffY, diffScreenY
165+
);
166+
167+
if (diffX > THRESHOLD
168+
|| diffScreenX > THRESHOLD
169+
|| diffY > THRESHOLD
170+
|| diffScreenY > THRESHOLD) {
171+
throw new RuntimeException("Mouse enter vs exit event is too different");
172+
}
173+
}
174+
}
175+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Mar 31, 2025

@openjdk-notifier[bot]
Please sign in to comment.