java/awt/Choice/GrabLockTest/GrabLockTest.java

Print this page

        

*** 1,25 **** /* ! test @bug 4800638 @summary Tests that Choice does not lock the Desktop ! @run applet GrabLockTest.html */ - import java.applet.Applet; import java.awt.*; import java.awt.event.*; - import sun.awt.SunToolkit; ! public class GrabLockTest extends Applet { ! //Declare things used in the test, like buttons and labels here ! ! public void init() ! { ! }//End init() ! ! public void start () { Frame frame = new TestFrame(); } } --- 1,39 ---- /* ! * Copyright (c) 2003, 2014, 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. ! */ ! /* ! @test @bug 4800638 @summary Tests that Choice does not lock the Desktop ! @run main GrabLockTest */ import java.awt.*; import java.awt.event.*; ! public class GrabLockTest { ! public static void main (String args[]) { Frame frame = new TestFrame(); } }
*** 40,84 **** try { Robot robot = new Robot(); robot.setAutoWaitForIdle(true); robot.setAutoDelay(50); ! ((SunToolkit)Toolkit.getDefaultToolkit()).realSync(); Point pt = choice.getLocationOnScreen(); robot.mouseMove(pt.x + choice.getWidth() - choice.getHeight()/2, pt.y + choice.getHeight()/2); robot.mousePress(InputEvent.BUTTON1_MASK); ! ((SunToolkit)Toolkit.getDefaultToolkit()).realSync(); robot.mouseMove(pt.x + choice.getWidth()/2, pt.y + choice.getHeight()*2); ! ((SunToolkit)Toolkit.getDefaultToolkit()).realSync(); robot.mousePress(InputEvent.BUTTON2_MASK); ! ((SunToolkit)Toolkit.getDefaultToolkit()).realSync(); Point pt1 = panel.getLocationOnScreen(); robot.mouseMove(pt1.x + panel.getWidth()/2, pt1.y + panel.getHeight()/2); ! ((SunToolkit)Toolkit.getDefaultToolkit()).realSync(); robot.mouseRelease(InputEvent.BUTTON1_MASK); robot.mouseRelease(InputEvent.BUTTON2_MASK); ! ((SunToolkit)Toolkit.getDefaultToolkit()).realSync(); robot.mousePress(InputEvent.BUTTON1_MASK); robot.delay(30); robot.mouseRelease(InputEvent.BUTTON1_MASK); ! ((SunToolkit)Toolkit.getDefaultToolkit()).realSync(); if (nPressed == 0) { robot.keyPress(KeyEvent.VK_ESCAPE); robot.keyRelease(KeyEvent.VK_ESCAPE); throw new RuntimeException("GrabLockTest failed." + nPressed); } } catch (Exception e) { throw new RuntimeException("The test was not completed.\n\n" + e); } ! }// start() public int nPressed = 0; public void mouseClicked(MouseEvent e) { } --- 54,98 ---- try { Robot robot = new Robot(); robot.setAutoWaitForIdle(true); robot.setAutoDelay(50); ! robot.waitForIdle(); Point pt = choice.getLocationOnScreen(); robot.mouseMove(pt.x + choice.getWidth() - choice.getHeight()/2, pt.y + choice.getHeight()/2); robot.mousePress(InputEvent.BUTTON1_MASK); ! robot.waitForIdle(); robot.mouseMove(pt.x + choice.getWidth()/2, pt.y + choice.getHeight()*2); ! robot.waitForIdle(); robot.mousePress(InputEvent.BUTTON2_MASK); ! robot.waitForIdle(); Point pt1 = panel.getLocationOnScreen(); robot.mouseMove(pt1.x + panel.getWidth()/2, pt1.y + panel.getHeight()/2); ! robot.waitForIdle(); robot.mouseRelease(InputEvent.BUTTON1_MASK); robot.mouseRelease(InputEvent.BUTTON2_MASK); ! robot.waitForIdle(); robot.mousePress(InputEvent.BUTTON1_MASK); robot.delay(30); robot.mouseRelease(InputEvent.BUTTON1_MASK); ! robot.waitForIdle(); if (nPressed == 0) { robot.keyPress(KeyEvent.VK_ESCAPE); robot.keyRelease(KeyEvent.VK_ESCAPE); throw new RuntimeException("GrabLockTest failed." + nPressed); } } catch (Exception e) { throw new RuntimeException("The test was not completed.\n\n" + e); } ! } public int nPressed = 0; public void mouseClicked(MouseEvent e) { }