Skip to content

Commit b6a4047

Browse files
author
Tejesh R
committedOct 8, 2024
8339982: Open source several AWT Mouse tests - Batch 2
Reviewed-by: psadhukhan
1 parent 45a6359 commit b6a4047

File tree

6 files changed

+606
-0
lines changed

6 files changed

+606
-0
lines changed
 

‎test/jdk/ProblemList.txt

+1
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ java/awt/SplashScreen/MultiResolutionSplash/unix/UnixMultiResolutionSplashTest.j
437437
java/awt/Robot/AcceptExtraMouseButtons/AcceptExtraMouseButtons.java 7107528 linux-all,macosx-all
438438
java/awt/Mouse/MouseDragEvent/MouseDraggedTest.java 8080676 linux-all
439439
java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersInKeyEvent.java 8157147 linux-all,windows-all,macosx-all
440+
java/awt/Mouse/MouseClickCount.java 8017182 macosx-all
440441
java/awt/Toolkit/ToolkitPropertyTest/ToolkitPropertyTest_Enable.java 6847163 linux-all
441442
java/awt/xembed/server/RunTestXEmbed.java 7034201 linux-all
442443
java/awt/Modal/ModalFocusTransferTests/FocusTransferDialogsDocModalTest.java 8164473 linux-all
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
/*
2+
* Copyright (c) 2001, 2024, 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+
import java.awt.BorderLayout;
25+
import java.awt.Button;
26+
import java.awt.Color;
27+
import java.awt.Frame;
28+
import java.awt.GraphicsConfiguration;
29+
import java.awt.GraphicsDevice;
30+
import java.awt.GraphicsEnvironment;
31+
import java.awt.Label;
32+
import java.awt.Rectangle;
33+
import java.awt.event.WindowAdapter;
34+
import java.awt.event.WindowEvent;
35+
import java.util.List;
36+
37+
/*
38+
* @test
39+
* @bug 4473671
40+
* @summary Test to verify GraphicsEnvironment.getDefaultScreenDevice always
41+
* returning first screen
42+
* @requires (os.family == "windows")
43+
* @library /java/awt/regtesthelpers
44+
* @build PassFailJFrame
45+
* @run main/manual DefaultScreenDeviceTest
46+
*/
47+
48+
public class DefaultScreenDeviceTest {
49+
private static Frame testFrame;
50+
51+
public static void main(String[] args) throws Exception {
52+
GraphicsEnvironment ge = GraphicsEnvironment.
53+
getLocalGraphicsEnvironment();
54+
GraphicsDevice[] gds = ge.getScreenDevices();
55+
if (gds.length < 2) {
56+
System.out.println("Test requires at least 2 displays");
57+
return;
58+
}
59+
60+
String INSTRUCTIONS = """
61+
1. The test is for systems which allows primary display
62+
selection in multiscreen systems.
63+
Set the system primary screen to be the rightmost
64+
(i.e. the right screen in two screen configuration)
65+
This can be done by going to OS Display Settings
66+
selecting the screen and checking the 'Use this device
67+
as primary monitor' checkbox.
68+
2. When done, click on 'Frame on Primary Screen' button and
69+
see where the frame will pop up
70+
3. If Primary Frame pops up on the primary display,
71+
the test passed, otherwise it failed
72+
""";
73+
PassFailJFrame.builder()
74+
.title("Test Instructions")
75+
.instructions(INSTRUCTIONS)
76+
.rows((int) INSTRUCTIONS.lines().count() + 2)
77+
.columns(35)
78+
.testUI(initialize())
79+
.build()
80+
.awaitAndCheck();
81+
}
82+
83+
private static List<Frame> initialize() {
84+
Frame frame = new Frame("Default screen device test");
85+
GraphicsConfiguration gc =
86+
GraphicsEnvironment.getLocalGraphicsEnvironment().
87+
getDefaultScreenDevice().getDefaultConfiguration();
88+
89+
testFrame = new Frame("Primary screen frame", gc);
90+
frame.setLayout(new BorderLayout());
91+
frame.setSize(200, 200);
92+
93+
Button b = new Button("Frame on Primary Screen");
94+
b.addActionListener(e -> {
95+
if (testFrame != null) {
96+
testFrame.setVisible(false);
97+
testFrame.dispose();
98+
}
99+
100+
testFrame.addWindowListener(new WindowAdapter() {
101+
public void windowClosing(WindowEvent e1) {
102+
testFrame.setVisible(false);
103+
testFrame.dispose();
104+
}
105+
});
106+
testFrame.add(new Label("This frame should be on the primary screen"));
107+
testFrame.setBackground(Color.red);
108+
testFrame.pack();
109+
Rectangle rect = gc.getBounds();
110+
testFrame.setLocation(rect.x + 100, rect.y + 100);
111+
testFrame.setVisible(true);
112+
});
113+
frame.add(b);
114+
return List.of(testFrame, frame);
115+
}
116+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
/*
2+
* Copyright (c) 1998, 2024, 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+
import java.awt.BorderLayout;
25+
import java.awt.Color;
26+
import java.awt.Dimension;
27+
import java.awt.Event;
28+
import java.awt.Frame;
29+
import java.awt.Panel;
30+
import java.awt.TextArea;
31+
32+
/*
33+
* @test
34+
* @bug 4092370
35+
* @summary Test to verify double click
36+
* @library /java/awt/regtesthelpers
37+
* @build PassFailJFrame
38+
* @run main/manual DoubleClickTest
39+
*/
40+
41+
public class DoubleClickTest {
42+
static TextArea ta = new TextArea("", 10, 40);
43+
44+
public static void main(String[] args) throws Exception {
45+
String INSTRUCTIONS = """
46+
1. Double click on the red area.
47+
2. Verify that the event reports click_count > 1 on
48+
Double-Click. If click_count shows only 1 for every
49+
Double-Clicks then test FAILS, else test PASS.
50+
""";
51+
PassFailJFrame.builder()
52+
.title("Test Instructions")
53+
.instructions(INSTRUCTIONS)
54+
.rows((int) INSTRUCTIONS.lines().count() + 2)
55+
.columns(35)
56+
.testUI(initialize())
57+
.build()
58+
.awaitAndCheck();
59+
}
60+
61+
public static Frame initialize() {
62+
Frame frame = new Frame("Double-click Test");
63+
frame.setLayout(new BorderLayout());
64+
frame.add("East", new MyPanel(ta));
65+
frame.add("West", ta);
66+
frame.setSize(200, 200);
67+
return frame;
68+
}
69+
}
70+
71+
class MyPanel extends Panel {
72+
TextArea ta;
73+
74+
MyPanel(TextArea ta) {
75+
this.ta = ta;
76+
setBackground(Color.red);
77+
}
78+
79+
public Dimension getPreferredSize() {
80+
return new Dimension(50, 50);
81+
}
82+
83+
84+
public boolean mouseDown(Event event, int x, int y) {
85+
ta.append("event click count= " + event.clickCount + "\n");
86+
return false;
87+
}
88+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* Copyright (c) 1999, 2024, 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+
import java.awt.Frame;
25+
import java.awt.TextArea;
26+
import java.awt.event.MouseAdapter;
27+
import java.awt.event.MouseEvent;
28+
29+
/*
30+
* @test
31+
* @bug 4199397
32+
* @summary Test to mouse click count
33+
* @library /java/awt/regtesthelpers
34+
* @build PassFailJFrame
35+
* @run main/manual MouseClickCount
36+
*/
37+
38+
public class MouseClickCount {
39+
public static void main(String[] args) throws Exception {
40+
String INSTRUCTIONS = """
41+
1. Clicking on Frame panel quickly will produce clickCount larger than 1
42+
in the TextArea the count is printed for each mouse click
43+
2. Verify that a left-button click followed by a right button click quickly
44+
will not generate 1, 2, i.e. it's not considered a double clicking.
45+
""";
46+
PassFailJFrame.builder()
47+
.title("Test Instructions")
48+
.instructions(INSTRUCTIONS)
49+
.rows((int) INSTRUCTIONS.lines().count() + 2)
50+
.columns(35)
51+
.testUI(initialize())
52+
.build()
53+
.awaitAndCheck();
54+
}
55+
56+
private static Frame initialize() {
57+
Frame f = new Frame("Mouse Click Count Test");
58+
final TextArea ta = new TextArea();
59+
f.add("South", ta);
60+
f.addMouseListener(new MouseAdapter() {
61+
public void mousePressed(MouseEvent e) {
62+
if (e.getClickCount() == 1) ta.append("\n1");
63+
else ta.append(", " + e.getClickCount());
64+
}
65+
});
66+
f.setSize(300, 500);
67+
return f;
68+
}
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/*
2+
* Copyright (c) 1999, 2024, 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+
import java.awt.BorderLayout;
25+
import java.awt.Color;
26+
import java.awt.Frame;
27+
import java.awt.Panel;
28+
import java.awt.event.MouseAdapter;
29+
import java.awt.event.MouseEvent;
30+
import java.util.List;
31+
32+
/*
33+
* @test
34+
* @bug 4141361
35+
* @summary Test to Ensures that mouse enter / exit is delivered to a new
36+
* frame or component during a drag
37+
* @library /java/awt/regtesthelpers
38+
* @build PassFailJFrame
39+
* @run main/manual MouseDragEnterExitTest
40+
*/
41+
42+
public class MouseDragEnterExitTest {
43+
public static void main(String[] args) throws Exception {
44+
String INSTRUCTIONS = """
45+
Click on the blue frame, drag to the white frame, and back
46+
You should get enter/exit messages for the frames when dragging
47+
""";
48+
PassFailJFrame.builder()
49+
.title("Test Instructions")
50+
.instructions(INSTRUCTIONS)
51+
.rows((int) INSTRUCTIONS.lines().count() + 2)
52+
.columns(35)
53+
.testUI(MouseEvents.initialize())
54+
.logArea(8)
55+
.build()
56+
.awaitAndCheck();
57+
}
58+
}
59+
60+
class MouseEvents extends Frame {
61+
static int WITH_WIDGET = 0;
62+
63+
public MouseEvents(int mode) {
64+
super("Mouse Drag Enter/Exit Test");
65+
setSize(300, 300);
66+
67+
addMouseListener(new MouseAdapter() {
68+
@Override
69+
public void mouseEntered(MouseEvent e) {
70+
PassFailJFrame.log("Frame MOUSE_ENTERED" + ": " + " " +
71+
e.getX() + " " + e.getY());
72+
}
73+
74+
@Override
75+
public void mouseExited(MouseEvent e) {
76+
PassFailJFrame.log("Frame MOUSE_EXITED" + ": " + " " +
77+
e.getX() + " " + e.getY());
78+
}
79+
});
80+
81+
if (mode == WITH_WIDGET) {
82+
setLayout(new BorderLayout());
83+
add("Center", new SimplePanel());
84+
}
85+
}
86+
87+
public static List<Frame> initialize() {
88+
MouseEvents m = new MouseEvents(MouseEvents.WITH_WIDGET);
89+
m.setLocation(500, 300);
90+
MouseEvents t = new MouseEvents(MouseEvents.WITH_WIDGET + 1);
91+
t.setLocation(200, 200);
92+
return List.of(m, t);
93+
}
94+
}
95+
96+
class SimplePanel extends Panel {
97+
public SimplePanel() {
98+
super();
99+
setName("Test Panel");
100+
addMouseListener(new MouseAdapter() {
101+
@Override
102+
public void mouseEntered(MouseEvent e) {
103+
PassFailJFrame.log("Panel MOUSE_ENTERED" + ": " + " " +
104+
e.getX() + " " + e.getY());
105+
}
106+
107+
@Override
108+
public void mouseExited(MouseEvent e) {
109+
PassFailJFrame.log("Panel MOUSE_EXITED" + ": " + " " +
110+
e.getX() + " " + e.getY());
111+
}
112+
});
113+
setSize(100, 100);
114+
setBackground(Color.blue);
115+
}
116+
}
117+
+215
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,215 @@
1+
/*
2+
* Copyright (c) 1999, 2024, 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+
import java.awt.Canvas;
25+
import java.awt.Color;
26+
import java.awt.Component;
27+
import java.awt.Dimension;
28+
import java.awt.FlowLayout;
29+
import java.awt.Frame;
30+
import java.awt.Point;
31+
import java.awt.Rectangle;
32+
import java.awt.event.MouseAdapter;
33+
import java.awt.event.MouseEvent;
34+
import java.awt.event.MouseListener;
35+
import java.awt.event.MouseMotionAdapter;
36+
import java.awt.event.MouseMotionListener;
37+
38+
/*
39+
* @test
40+
* @bug 4035189
41+
* @summary Test to verify that Drag events go to wrong component
42+
* @library /java/awt/regtesthelpers
43+
* @build PassFailJFrame
44+
* @run main/manual MouseDragTest
45+
*/
46+
47+
class HeavySquare extends Canvas {
48+
private final Color colorNormal;
49+
private boolean gotADragEvent;
50+
51+
public HeavySquare(Color color) {
52+
colorNormal = color;
53+
setBackground(colorNormal);
54+
new MouseChecker(this);
55+
addMouseMotionListener(new DragAdapter());
56+
addMouseListener(new PressReleaseAdapter());
57+
}
58+
59+
class DragAdapter extends MouseMotionAdapter {
60+
public void mouseDragged(MouseEvent ev) {
61+
if (gotADragEvent)
62+
return;
63+
64+
Point mousePt = ev.getPoint();
65+
Dimension csize = getSize();
66+
boolean inBounds =
67+
(mousePt.x >= 0 && mousePt.x <= csize.width &&
68+
mousePt.y >= 0 && mousePt.y <= csize.height);
69+
if (!inBounds) {
70+
setBackground(Color.green);
71+
}
72+
gotADragEvent = true;
73+
}
74+
}
75+
76+
class PressReleaseAdapter extends MouseAdapter {
77+
public void mousePressed(MouseEvent ev) {
78+
gotADragEvent = false;
79+
}
80+
81+
public void mouseReleased(MouseEvent ev) {
82+
setBackground(colorNormal);
83+
}
84+
}
85+
86+
public Dimension preferredSize() {
87+
return new Dimension(50, 50);
88+
}
89+
}
90+
91+
class MouseFrame extends Frame {
92+
public MouseFrame() {
93+
super("MouseDragTest");
94+
new MouseChecker(this);
95+
setLayout(new FlowLayout());
96+
add(new HeavySquare(Color.red));
97+
add(new HeavySquare(Color.blue));
98+
setBounds(new Rectangle(20, 20, 400, 300));
99+
}
100+
}
101+
102+
public class MouseDragTest {
103+
static Frame TestFrame;
104+
105+
public MouseDragTest() {
106+
TestFrame = new MouseFrame();
107+
}
108+
109+
public static void main(String[] args) throws Exception {
110+
String INSTRUCTIONS = """
111+
1. A frame with two boxes will appear. Click and drag _very_ quickly
112+
off one of the components. You will know you were quick enough
113+
when the component you dragged off of turns green
114+
2. Repeat this several times on both boxes, ensuring you get them
115+
to turn green. The components should revert to their original
116+
color when you release the mouse
117+
3. The test FAILS if the component doesn't revert to original
118+
color, else PASS.
119+
""";
120+
PassFailJFrame.builder()
121+
.title("Test Instructions")
122+
.instructions(INSTRUCTIONS)
123+
.rows((int) INSTRUCTIONS.lines().count() + 2)
124+
.columns(35)
125+
.testUI(new MouseFrame())
126+
.build()
127+
.awaitAndCheck();
128+
}
129+
}
130+
131+
class MouseChecker implements MouseListener, MouseMotionListener {
132+
private boolean isPressed = false;
133+
private MouseEvent evPrev = null;
134+
private MouseEvent evPrevPrev = null;
135+
136+
public MouseChecker(Component comp) {
137+
comp.addMouseListener(this);
138+
comp.addMouseMotionListener(this);
139+
}
140+
141+
private void recordEv(MouseEvent ev) {
142+
evPrevPrev = evPrev;
143+
evPrev = ev;
144+
}
145+
146+
private synchronized void failure(String str) {
147+
PassFailJFrame.forceFail("Test Failed : "+str);
148+
}
149+
150+
public void mouseClicked(MouseEvent ev) {
151+
if (!(evPrev.getID() == MouseEvent.MOUSE_RELEASED &&
152+
evPrevPrev.getID() == MouseEvent.MOUSE_PRESSED)) {
153+
failure("Got mouse click without press/release preceding.");
154+
}
155+
recordEv(ev);
156+
}
157+
158+
public void mousePressed(MouseEvent ev) {
159+
recordEv(ev);
160+
if (isPressed) {
161+
failure("Got two mouse presses without a release.");
162+
}
163+
isPressed = true;
164+
}
165+
166+
public void mouseReleased(MouseEvent ev) {
167+
recordEv(ev);
168+
if (!isPressed) {
169+
failure("Got mouse release without being pressed.");
170+
}
171+
isPressed = false;
172+
}
173+
174+
public void mouseEntered(MouseEvent ev) {
175+
recordEv(ev);
176+
Point mousePt = ev.getPoint();
177+
Component comp = (Component) ev.getSource();
178+
Dimension size = comp.getSize();
179+
boolean inBounds =
180+
(mousePt.x >= 0 && mousePt.x <= size.width &&
181+
mousePt.y >= 0 && mousePt.y <= size.height);
182+
183+
if (!inBounds) {
184+
failure("Got mouse entered, but mouse not inside component.");
185+
}
186+
}
187+
188+
public void mouseExited(MouseEvent ev) {
189+
recordEv(ev);
190+
Point mousePt = ev.getPoint();
191+
Component comp = (Component) ev.getSource();
192+
if (comp instanceof Frame) {
193+
return;
194+
}
195+
Dimension size = comp.getSize();
196+
boolean isOnChild = (comp != comp.getComponentAt(mousePt));
197+
boolean inBounds =
198+
(mousePt.x >= 0 && mousePt.x <= size.width &&
199+
mousePt.y >= 0 && mousePt.y <= size.height);
200+
if (!isOnChild && inBounds) {
201+
failure("Got mouse exit, but mouse still inside component.");
202+
}
203+
}
204+
205+
public void mouseDragged(MouseEvent ev) {
206+
recordEv(ev);
207+
if (!isPressed) {
208+
failure("Got drag without a press first.");
209+
}
210+
}
211+
212+
public void mouseMoved(MouseEvent ev) {
213+
recordEv(ev);
214+
}
215+
}

0 commit comments

Comments
 (0)
Please sign in to comment.