|
| 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
openjdk-notifier[bot] commentedon Mar 31, 2025
Review
Issues