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 8020443
28  @summary Frame is not created on the specified GraphicsDevice with two
29monitors
30  @author Oleg Pekhovskiy
31  @library ../../../../lib/testlibrary
32  @build jdk.testlibrary.OSInfo
33  @run main MultiScreenInsetsTest
34 */
35
36import java.awt.Frame;
37import java.awt.GraphicsConfiguration;
38import java.awt.GraphicsDevice;
39import java.awt.GraphicsEnvironment;
40import java.awt.Insets;
41import java.awt.Rectangle;
42import java.awt.Toolkit;
43import jdk.testlibrary.OSInfo;
44
45public class MultiScreenInsetsTest {
46    private static final int SIZE = 100;
47
48    public static void main(String[] args) throws InterruptedException {
49        OSInfo.OSType type = OSInfo.getOSType();
50        if (type != OSInfo.OSType.LINUX && type != OSInfo.OSType.SOLARIS) {
51            System.out.println("This test is for Solaris and Linux only..." +
52                               "skipping!");
53            return;
54        }
55
56        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
57        GraphicsDevice[] gds = ge.getScreenDevices();
58        if (gds.length < 2) {
59            System.out.println("It's a multi-screen test... skipping!");
60            return;
61        }
62
63        for (int screen = 0; screen < gds.length; ++screen) {
64            GraphicsDevice gd = gds[screen];
65            GraphicsConfiguration gc = gd.getDefaultConfiguration();
66            Rectangle bounds = gc.getBounds();
67            Insets insets = Toolkit.getDefaultToolkit().getScreenInsets(gc);
68
69            Frame frame = new Frame(gc);
70            frame.setLocation(bounds.x + (bounds.width - SIZE) / 2,
71                              bounds.y + (bounds.height - SIZE) / 2);
72            frame.setSize(SIZE, SIZE);
73            frame.setUndecorated(true);
74            frame.setVisible(true);
75
76            // Maximize Frame to reach the struts
77            frame.setExtendedState(java.awt.Frame.MAXIMIZED_BOTH);
78            Thread.sleep(2000);
79
80            Rectangle frameBounds = frame.getBounds();
81            frame.dispose();
82            if (bounds.x + insets.left != frameBounds.x
83                || bounds.y + insets.top != frameBounds.y
84                || bounds.width - insets.right - insets.left != frameBounds.width
85                || bounds.height - insets.bottom - insets.top != frameBounds.height) {
86                throw new RuntimeException("Test FAILED! Wrong screen #" +
87                                           screen + " insets: " + insets);
88            }
89        }
90        System.out.println("Test PASSED!");
91    }
92}
93