1 /*
   2  * Copyright (c) 2006, 2018, 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        6426132
  28   @summary    A Window should be focused upon start (XAWT bug).
  29   @library    ../../regtesthelpers
  30   @build      Util
  31   @run        main WindowInitialFocusTest
  32 */
  33 
  34 import java.awt.*;
  35 import java.awt.event.*;
  36 import java.util.concurrent.atomic.AtomicBoolean;
  37 import test.java.awt.regtesthelpers.Util;
  38 
  39 public class WindowInitialFocusTest {
  40     Frame frame = new Frame("Test Frame");
  41     Window window = new Window(frame);
  42     Button button = new Button("button");
  43     AtomicBoolean focused = new AtomicBoolean(false);
  44     Robot robot;
  45 
  46     public static void main(String[] args) {
  47         WindowInitialFocusTest app = new WindowInitialFocusTest();
  48         app.start();
  49     }
  50 
  51     public void start() {
  52         frame.setBounds(800, 0, 200, 100);
  53         window.setBounds(800, 200, 200, 100);
  54         window.setLayout(new FlowLayout());
  55         window.add(button);
  56 
  57         window.addWindowFocusListener(new WindowAdapter() {
  58                 public void windowGainedFocus(WindowEvent e) {
  59                     System.out.println(e.toString());
  60                     synchronized (focused) {
  61                         focused.set(true);
  62                         focused.notifyAll();
  63                     }
  64                 }});
  65 
  66         frame.setVisible(true);
  67         try {
  68             robot = new Robot();
  69         }catch(Exception ex) {
  70             ex.printStackTrace();
  71             throw new RuntimeException("Unexpected failure");
  72         }
  73         robot.waitForIdle();
  74 
  75         // Test 1. Show the window, check that it become focused.
  76 
  77         window.setVisible(true);
  78         robot.waitForIdle();
  79 
  80         if (!Util.waitForCondition(focused, 2000L)) {
  81             throw new TestFailedException("the window didn't get focused on its showing!");
  82         }
  83 
  84         // Test 2. Show unfocusable window, check that it doesn't become focused.
  85 
  86         window.setVisible(false);
  87         robot.waitForIdle();
  88 
  89         window.setFocusableWindowState(false);
  90         focused.set(false);
  91 
  92         window.setVisible(true);
  93         robot.waitForIdle();
  94 
  95         if (Util.waitForCondition(focused, 2000L)) {
  96             throw new TestFailedException("the unfocusable window got focused on its showing!");
  97         } else {
  98             System.out.println("Test passed");
  99         }
 100     }
 101 }
 102 
 103 class TestFailedException extends RuntimeException {
 104     TestFailedException(String msg) {
 105         super("Test failed: " + msg);
 106     }
 107 }