1/*
2 * Copyright (c) 2008, 2016, 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 %I% %E%
26  @key headful
27  @bug 6315717
28  @summary verifies that robot could accept extra buttons
29  @author Andrei Dmitriev : area=awt.mouse
30  @library ../../regtesthelpers
31  @build Util
32  @run main RobotExtraButton
33 */
34
35import java.awt.*;
36import java.awt.event.*;
37import test.java.awt.regtesthelpers.Util;
38
39public class RobotExtraButton extends Frame {
40    static Robot robot;
41    public static void main(String []s){
42        RobotExtraButton frame = new RobotExtraButton();
43        frame.setSize(300, 300);
44        frame.setVisible(true);
45        frame.addMouseListener(new MouseAdapter() {
46                public void mousePressed(MouseEvent e) {
47                    System.out.println("PRESSED "+e);
48                }
49                public void mouseReleased(MouseEvent e) {
50                    System.out.println("RELEASED "+e);
51                }
52                public void mouseClicked(MouseEvent e) {
53                    System.out.println("CLICKED "+e);
54                }
55            });
56        Util.waitForIdle(robot);
57        int [] buttonMask = new int[MouseInfo.getNumberOfButtons()]; // = InputEvent.getButtonDownMasks();
58        for (int i = 0; i < MouseInfo.getNumberOfButtons(); i++){
59            buttonMask[i] = InputEvent.getMaskForButton(i+1);
60            System.out.println("TEST: "+buttonMask[i]);
61        }
62
63        try {
64            robot = new Robot();
65            robot.mouseMove(frame.getLocationOnScreen().x + frame.getWidth()/2, frame.getLocationOnScreen().y + frame.getHeight()/2);
66            /*
67            if (MouseInfo.getNumberOfButtons() <= 3) {
68                System.out.println("Number Of Buttons = "+ MouseInfo.getNumberOfButtons() +". Finish!");
69                return;
70                }*/
71
72            System.out.println("TEST: press 1");
73            robot.mousePress(InputEvent.BUTTON1_MASK);
74            robot.delay(50);
75            robot.mouseRelease(InputEvent.BUTTON1_MASK);
76            Util.waitForIdle(robot);
77
78            System.out.println("TEST: press 2");
79
80            robot.mousePress(InputEvent.BUTTON2_MASK);
81            robot.delay(50);
82            robot.mouseRelease(InputEvent.BUTTON2_MASK);
83            Util.waitForIdle(robot);
84            System.out.println("TEST: press 3");
85
86            robot.mousePress(InputEvent.BUTTON3_MASK);
87            robot.delay(50);
88            robot.mouseRelease(InputEvent.BUTTON3_MASK);
89            Util.waitForIdle(robot);
90            System.out.println("--------------------------------------------------");
91            for (int i = 0; i < buttonMask.length; i++){
92                System.out.println("button would = " +i + " : value = " +buttonMask[i]);
93                robot.mousePress(buttonMask[i]);
94                robot.delay(50);
95                robot.mouseRelease(buttonMask[i]);
96                Util.waitForIdle(robot);
97            }
98        } catch (Exception e){
99            e.printStackTrace();
100            throw new RuntimeException("Test failed.", e);
101        }
102    }
103}
104