1 /*
   2  * Copyright (c) 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 /* @test
  25  * @bug 8080729
  26  * @summary Dialogs on multiscreen jump to parent frame on focus gain
  27  * @author Dmitry Markov
  28  * @library ../../regtesthelpers
  29  * @build Util
  30  * @run main WindowJumpingTest
  31  */
  32 import java.awt.*;
  33 
  34 import test.java.awt.regtesthelpers.Util;
  35 
  36 public class WindowJumpingTest {
  37     public static void main(String[] args) throws AWTException {
  38         Robot r = Util.createRobot();
  39 
  40         GraphicsEnvironment graphicsEnvironment = GraphicsEnvironment.getLocalGraphicsEnvironment();
  41         GraphicsDevice[] graphicsDevices = graphicsEnvironment.getScreenDevices();
  42         if (graphicsDevices.length < 2) {
  43             System.out.println("This is multi-screen test... Skipping!");
  44             return;
  45         }
  46 
  47         Frame frame = new Frame("Frame", graphicsDevices[0].getDefaultConfiguration());
  48         frame.setSize(400, 300);
  49         frame.setVisible(true);
  50         Util.waitForIdle(r);
  51 
  52         Dialog dialog = new Dialog(frame, "Dialog", false, graphicsDevices[1].getDefaultConfiguration());
  53         dialog.setSize(400, 300);
  54         dialog.setVisible(true);
  55         Util.waitForIdle(r);
  56 
  57         checkGraphicsDevice(frame, graphicsDevices[0]);
  58         checkGraphicsDevice(dialog, graphicsDevices[1]);
  59 
  60         Util.clickOnComp(frame, r);
  61         Util.waitForIdle(r);
  62 
  63         checkGraphicsDevice(frame, graphicsDevices[0]);
  64         checkGraphicsDevice(dialog, graphicsDevices[1]);
  65 
  66         Util.clickOnComp(dialog, r);
  67         Util.waitForIdle(r);
  68 
  69         checkGraphicsDevice(frame, graphicsDevices[0]);
  70         checkGraphicsDevice(dialog, graphicsDevices[1]);
  71 
  72         dialog.dispose();
  73         frame.dispose();
  74     }
  75 
  76     private static void checkGraphicsDevice(Window window, GraphicsDevice graphicsDevice) {
  77         GraphicsDevice actualGraphicsDevice = window.getGraphicsConfiguration().getDevice();
  78 
  79         if (!actualGraphicsDevice.equals(graphicsDevice)) {
  80             System.err.println("Expected screen: " + graphicsDevice);
  81             System.err.println("Actual screen: "+ actualGraphicsDevice);
  82             throw new RuntimeException("Test FAILED: " + window + " is displayed on wrong screen");
  83         }
  84     }
  85 }
  86