1 /*
   2  * Copyright (c) 2007, 2011, 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 6480024
  27   @library ../../../regtesthelpers
  28   @build Util Sysout AbstractTest
  29   @summary stack overflow on mouse wheel rotation
  30   @author Andrei Dmitriev: area=awt.event
  31   @run main InfiniteRecursion_1
  32 */
  33 
  34 /**
  35  * InfiniteRecursion_1.java
  36  *
  37  * summary: put a JButton into JPanel and then put JPanel into JFrame.
  38  * Add MouseWheelListener to JFrame.
  39  * Add MouseListener to JPanel.
  40  * Rotating a wheel over the JButton would result in stack overflow.
  41  */
  42 
  43 import java.awt.*;
  44 import java.awt.event.*;
  45 import javax.swing.*;
  46 import test.java.awt.regtesthelpers.Util;
  47 import test.java.awt.regtesthelpers.AbstractTest;
  48 import test.java.awt.regtesthelpers.Sysout;
  49 
  50 public class InfiniteRecursion_1 {
  51     final static Robot robot = Util.createRobot();
  52     final static int MOVE_COUNT = 5;
  53     //*2 for both rotation directions,
  54     //*2 as Java sends the wheel event to every for nested component in hierarchy under cursor
  55     final static int EXPECTED_COUNT = MOVE_COUNT * 2 * 2;
  56     static int actualEvents = 0;
  57 
  58     public static void main(String []s)
  59     {
  60         JFrame frame = new JFrame("A test frame");
  61         JPanel outputBox = new JPanel();
  62         JButton jButton = new JButton();
  63 
  64         frame.setSize(200, 200);
  65         frame.addMouseWheelListener(new MouseWheelListener() {
  66                 public void mouseWheelMoved(MouseWheelEvent e)
  67                 {
  68                     System.out.println("Wheel moved on FRAME : "+e);
  69                     actualEvents++;
  70                 }
  71             });
  72 
  73         outputBox.addMouseListener(new MouseAdapter() {
  74                 public void mousePressed(MouseEvent e)
  75                 {
  76                     System.out.println("MousePressed on OUTBOX : "+e);
  77                 }
  78 
  79             });
  80         frame.add(outputBox);
  81         outputBox.add(jButton);
  82 
  83         frame.setVisible(true);
  84 
  85         Util.waitForIdle(robot);
  86 
  87         Util.pointOnComp(jButton, robot);
  88         Util.waitForIdle(robot);
  89 
  90         for (int i = 0; i < MOVE_COUNT; i++){
  91             robot.mouseWheel(1);
  92             robot.delay(10);
  93         }
  94 
  95         for (int i = 0; i < MOVE_COUNT; i++){
  96             robot.mouseWheel(-1);
  97             robot.delay(10);
  98         }
  99 
 100         Util.waitForIdle(robot);
 101         //Not fair to check for multiplier 4 as it's not specified actual number of WheelEvents
 102         //result in a single wheel rotation.
 103         if (actualEvents != EXPECTED_COUNT) {
 104             AbstractTest.fail("Expected events count: "+ EXPECTED_COUNT+" Actual events count: "+ actualEvents);
 105         }
 106     }
 107 }