0N/A/*
4248N/A * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A @test
0N/A @bug 6480024
0N/A @library ../../../regtesthelpers
0N/A @build Util Sysout AbstractTest
0N/A @summary check that the wheel event is generated over the JFrame
0N/A @author Andrei Dmitriev: area=awt.event
0N/A @run main InfiniteRecursion_4
0N/A*/
0N/A
0N/A/**
0N/A * InfiniteRecursion_4.java
0N/A *
0N/A * summary: create simple JFrame and check that the WheelEvent is generated over it.
0N/A */
0N/A
0N/Aimport java.awt.*;
0N/Aimport java.awt.event.*;
0N/Aimport javax.swing.*;
0N/Aimport test.java.awt.regtesthelpers.Util;
0N/Aimport test.java.awt.regtesthelpers.AbstractTest;
0N/Aimport test.java.awt.regtesthelpers.Sysout;
0N/A
0N/Apublic class InfiniteRecursion_4 {
0N/A final static Robot robot = Util.createRobot();
0N/A final static int MOVE_COUNT = 5;
4081N/A //*2 for both rotation directions over a single frame without any siblings
4081N/A final static int EXPECTED_COUNT = MOVE_COUNT * 2;
0N/A static int actualEvents = 0;
0N/A
0N/A public static void main(String []s)
0N/A {
0N/A JFrame frame = new JFrame("A test frame");
0N/A
0N/A frame.setSize(200, 200);
0N/A frame.addMouseWheelListener(new MouseWheelListener() {
0N/A public void mouseWheelMoved(MouseWheelEvent e)
0N/A {
0N/A System.out.println("Wheel moved on FRAME : "+e);
0N/A actualEvents++;
0N/A }
0N/A });
0N/A
0N/A frame.setVisible(true);
0N/A
0N/A Util.waitForIdle(robot);
0N/A
0N/A Util.pointOnComp(frame, robot);
0N/A Util.waitForIdle(robot);
0N/A
0N/A for (int i = 0; i < MOVE_COUNT; i++){
0N/A robot.mouseWheel(1);
0N/A robot.delay(10);
0N/A }
0N/A
0N/A for (int i = 0; i < MOVE_COUNT; i++){
0N/A robot.mouseWheel(-1);
0N/A robot.delay(10);
0N/A }
0N/A
0N/A Util.waitForIdle(robot);
4081N/A //Not fair to check for multiplier 4 as it's not specified actual number of WheelEvents
4081N/A //result in a single wheel rotation.
4081N/A if (actualEvents != EXPECTED_COUNT) {
4081N/A AbstractTest.fail("Expected events count: "+ EXPECTED_COUNT+" Actual events count: "+ actualEvents);
0N/A }
0N/A }
0N/A}