1/*
2 * Copyright (c) 2014, 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
26  @key headful
27  @bug 8013116
28  @summary Robot moves mouse to point which differs from set in mouseMove on
29 Unity shell
30  @author Oleg Pekhovskiy
31  @library ../../regtesthelpers
32  @build Util
33  @run main MultiScreenLocationTest
34 */
35
36import java.awt.AWTException;
37import java.awt.Color;
38import java.awt.Frame;
39import java.awt.GraphicsConfiguration;
40import java.awt.GraphicsDevice;
41import java.awt.GraphicsEnvironment;
42import java.awt.MouseInfo;
43import java.awt.Point;
44import java.awt.Rectangle;
45import java.awt.Robot;
46import java.awt.image.BufferedImage;
47import test.java.awt.regtesthelpers.Util;
48
49public class MultiScreenLocationTest {
50    private static final Point mouseOffset = new Point(150, 150);
51    private static final Point frameOffset = new Point(100, 100);
52    private static final Color color = Color.YELLOW;
53
54    private static String getErrorText(final String name, int screen)
55    {
56        return name + " test failed on Screen #" + screen + "!";
57    }
58
59    public static void main(String[] args) throws AWTException
60    {
61        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
62        GraphicsDevice[] gds = ge.getScreenDevices();
63        if (gds.length < 2) {
64            System.out.println("It's a multiscreen test... skipping!");
65            return;
66        }
67
68        for (int i = 0; i < gds.length; ++i) {
69            GraphicsDevice gd = gds[i];
70            GraphicsConfiguration gc = gd.getDefaultConfiguration();
71            Rectangle screen = gc.getBounds();
72            Robot robot = new Robot(gd);
73
74            // check Robot.mouseMove()
75            robot.mouseMove(screen.x + mouseOffset.x, screen.y + mouseOffset.y);
76            Point mouse = MouseInfo.getPointerInfo().getLocation();
77            Point point = screen.getLocation();
78            point.translate(mouseOffset.x, mouseOffset.y);
79            if (!point.equals(mouse)) {
80                throw new RuntimeException(getErrorText("Robot.mouseMove", i));
81            }
82
83            // check Robot.getPixelColor()
84            Frame frame = new Frame(gc);
85            frame.setUndecorated(true);
86            frame.setSize(100, 100);
87            frame.setLocation(screen.x + frameOffset.x, screen.y + frameOffset.y);
88            frame.setBackground(color);
89            frame.setVisible(true);
90            robot.waitForIdle();
91            Rectangle bounds = frame.getBounds();
92            if (!Util.testBoundsColor(bounds, color, 5, 1000, robot)) {
93                throw new RuntimeException(getErrorText("Robot.getPixelColor", i));
94            }
95
96            // check Robot.createScreenCapture()
97            BufferedImage image = robot.createScreenCapture(bounds);
98            int rgb = color.getRGB();
99            if (image.getRGB(0, 0) != rgb
100                || image.getRGB(image.getWidth() - 1, 0) != rgb
101                || image.getRGB(image.getWidth() - 1, image.getHeight() - 1) != rgb
102                || image.getRGB(0, image.getHeight() - 1) != rgb) {
103                    throw new RuntimeException(
104                            getErrorText("Robot.createScreenCapture", i));
105            }
106            frame.dispose();
107        }
108
109        System.out.println("Test PASSED!");
110    }
111}
112