File: ScrollbarMouseWheelTest.java

package info (click to toggle)
openjdk-21 21.0.8%2B9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 823,976 kB
  • sloc: java: 5,613,338; xml: 1,643,607; cpp: 1,296,296; ansic: 420,291; asm: 404,850; objc: 20,994; sh: 15,271; javascript: 11,245; python: 6,895; makefile: 2,362; perl: 357; awk: 351; sed: 172; jsp: 24; csh: 3
file content (172 lines) | stat: -rw-r--r-- 5,887 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
 * Copyright (c) 1998, 2017, 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 java.awt.AWTException;
import java.awt.Component;
import java.awt.Frame;
import java.awt.GridLayout;
import java.awt.Panel;
import java.awt.Point;
import java.awt.Robot;
import java.awt.Scrollbar;
import java.awt.Toolkit;
import java.awt.event.MouseWheelEvent;
import java.awt.event.MouseWheelListener;

/**
 * @test
 * @key headful
 * @bug 4449139
 * @summary test MouseWheelEvent generation by Scrollbar component
 */

public final class ScrollbarMouseWheelTest
        implements MouseWheelListener {

    final static boolean isWindows =
            Toolkit.getDefaultToolkit().getClass()
                    .getName().equals("sun.awt.windows.WToolkit");

    final static int REPS = 5;
    // There is a bug on Windows: 4616935.
    // Wheel events comes to every component in the hierarchy so we should
    // check a platform.
    // There are two scrollbars within one Panel and both accept 5 clicks, so
    // Panel would accept 5*2 clicks on Windows.
    final static int PANEL_REPS = isWindows ? REPS * 2: REPS;

    Scrollbar sb1;
    Scrollbar sb2;
    Panel pnl;

    Robot robot;

    volatile int sb1upevents, sb2upevents, pnlupevents;
    volatile int sb1downevents, sb2downevents, pnldownevents;

    public static void main(final String[] args) {
        new ScrollbarMouseWheelTest().test();
    }

    public void test() {
        // Move mouse to upper-right area
        try {
            robot = new Robot();
        } catch (AWTException e) {
            System.out.println("Problem creating Robot.  FAIL.");
            throw new RuntimeException("Problem creating Robot.  FAIL.");
        }

        robot.setAutoDelay(250);
        robot.setAutoWaitForIdle(true);

        // Show test Frame
        Frame frame = new Frame("ScrollbarMouseWheelTest");
        pnl = new Panel();
        pnl.setLayout(new GridLayout(1, 2));
        pnl.addMouseWheelListener(this);
        sb1 = new Scrollbar();
        sb1.addMouseWheelListener(this);
        pnl.add(sb1);
        sb2 = new Scrollbar();
        pnl.add(sb2);
        frame.add(pnl);
        frame.setSize(200, 400);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        frame.toFront();

        robot.waitForIdle();
        robot.delay(1000);

        // up on sb1
        testComp(sb1, true);
        // down on sb1
        testComp(sb1, false);
        // up on sb2
        testComp(sb2, true);
        // down on sb2
        testComp(sb2, false);

        robot.delay(500);

        frame.dispose();

        System.out.println("Test done.");
        if (sb1upevents == REPS &&
                sb2upevents == 0 &&
                pnlupevents == PANEL_REPS &&
                sb1downevents == REPS &&
                sb2downevents == 0 &&
                pnldownevents == PANEL_REPS) {
            System.out.println("PASSED.");
        } else {
            System.out.println("Test Failed:" +
                                       "\n\tsb1upevents =" + sb1upevents +
                                       "\n\tsb2upevents = " + sb2upevents +
                                       "\n\tpnlupevents = " + pnlupevents +
                                       "\n\tsb1downevents =" + sb1downevents +
                                       "\n\tsb2downevents = " + sb2downevents +
                                       "\n\tpnldownevents = " + pnldownevents);
            throw new RuntimeException("Test FAILED.");
        }
    }

    public void testComp(Component comp, boolean up) {
        Point loc = comp.getLocationOnScreen();
        robot.mouseMove(loc.x + comp.getWidth() / 2,
                        loc.y + comp.getHeight() / 2);
        for (int loop = 0; loop < REPS; loop++) {
            System.out.println("Robot.mouseWheel() on " + comp.getName());
            robot.mouseWheel(up ? -1 : 1);
        }
    }

    public void mouseWheelMoved(MouseWheelEvent mwe) {
        Component src = mwe.getComponent();
        System.out.println("mouseWheelMoved() on " + src.getName());
        if (mwe.getWheelRotation() == -1) {
            if (src == sb1) {
                sb1upevents++;
            } else if (src == sb2) {
                sb2upevents++;
            } else if (src == pnl) {
                pnlupevents++;
            } else {
                System.out.println("weird source component");
            }
        } else if (mwe.getWheelRotation() == 1) {
            if (src == sb1) {
                sb1downevents++;
            } else if (src == sb2) {
                sb2downevents++;
            } else if (src == pnl) {
                pnldownevents++;
            } else {
                System.out.println("weird source component");
            }
        } else {
            System.out.println("weird wheel rotation");
        }
    }
}// class ScrollbarMouseWheelTest