/* * Copyright (c) 2013, 2016 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 test.java.awt.regtesthelpers.Util; import java.awt.*; import java.awt.event.MouseEvent; import java.awt.event.MouseMotionAdapter; import java.awt.event.MouseAdapter; /** * @test * @bug 8012026 8027154 * @summary Component.getMousePosition() does not work in an applet on MacOS * @author Petr Pchelko * @library ../../regtesthelpers * @build Util * @compile GetMousePositionWithPopup.java * @run main/othervm GetMousePositionWithPopup */ public class GetMousePositionWithPopup { private static Frame frame1; private static Frame frame2; private static Robot robot = null; private static volatile boolean verified = false; public static void main(String[] args) throws Exception { try { frame1 = new Frame("frame1"); frame1.setBounds(100, 100, 100, 100); frame2 = new Frame("frame2"); frame2.setBounds(120, 120, 120, 120); frame1.setVisible(true); frame2.setVisible(true); robot = Util.createRobot(); robot.mouseMove(0, 0); Util.waitForIdle(null); frame2.addMouseMotionListener(new MouseMotionAdapter() { @Override public void mouseMoved(MouseEvent e) { System.out.println("Mouse Moved"); if (!verified) { verifyMousePosition(); } } }); frame2.addMouseListener(new MouseAdapter() { @Override public void mouseEntered(MouseEvent e) { System.out.println("Mouse Entered"); if (!verified) { verifyMousePosition(); } } }); Util.waitForIdle(null); Point loc = frame2.getLocationOnScreen(); robot.mouseMove(loc.x + 30, loc.y + 30); Util.waitForIdle(null); robot.delay(6000); if (!verified) { throw new RuntimeException("No mouse events has been generated for the frame"); } } finally { frame2.dispose(); frame1.dispose(); frame1 = null; frame2 = null; } } public static void verifyMousePosition() { verified = true; Point positionInFrame2 = frame2.getMousePosition(); System.out.println(positionInFrame2); if (!(isValueInRange(positionInFrame2.x) && isValueInRange(positionInFrame2.y))) { throw new RuntimeException("Wrong position reported. Should be in range from [25, 25] to [30, 30] but was [" + positionInFrame2.x + ", " + positionInFrame2.y + "]"); } Point positionInFrame1 = frame1.getMousePosition(); if (positionInFrame1 != null) { throw new RuntimeException("Wrong position reported. Should be null"); } } public static boolean isValueInRange(int value) { /* * since all operating systems doesn't return exact value, hence range * is used. */ return value >= 25 && value <= 35; } }