1 /*
   2  * Copyright (c) 2007, 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   @bug       6516675
  27   @summary   Tests that EmbeddedFrame can be focused.
  28   @author    anton.tarasov: area=awt-focus
  29   @library   ../../regtesthelpers
  30   @build     Util
  31   @run       main FocusEmbeddedFrameTest
  32 */
  33 
  34 import java.awt.*;
  35 import java.awt.event.*;
  36 import java.applet.Applet;
  37 import java.util.concurrent.atomic.AtomicBoolean;
  38 import java.lang.reflect.InvocationTargetException;
  39 import test.java.awt.regtesthelpers.Util;
  40 
  41 public class FocusEmbeddedFrameTest extends Applet {
  42     static Frame embedder = new Frame("Embedder");
  43     static Frame ef = null;
  44     static volatile boolean passed;
  45 
  46     Robot robot;
  47 
  48     public static void main(String[] args) {
  49         FocusEmbeddedFrameTest app = new FocusEmbeddedFrameTest();
  50         app.init();
  51         app.start();
  52     }
  53 
  54     public void init() {
  55         robot = Util.createRobot();
  56     }
  57 
  58     public void start() {
  59 
  60         if (!"sun.awt.windows.WToolkit".equals(Toolkit.getDefaultToolkit().getClass().getName())) {
  61             System.out.println("The test is for WToolkit only!");
  62             return;
  63         }
  64 
  65         Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() {
  66                 public void eventDispatched(AWTEvent e) {
  67                    System.err.println("--> " + e);
  68                 }
  69             }, FocusEvent.FOCUS_EVENT_MASK | WindowEvent.WINDOW_EVENT_MASK);
  70 
  71         embedder.addNotify();
  72 
  73         try {
  74             ef = Util.createEmbeddedFrame(embedder);
  75         } catch (Throwable t) {
  76             t.printStackTrace();
  77             throw new Error("Test error: couldn't create an EmbeddedFrame!");
  78         }
  79 
  80         ef.setSize(100, 100);
  81         ef.setBackground(Color.blue);
  82 
  83         embedder.addFocusListener(new FocusAdapter() {
  84                 public void focusGained(FocusEvent e) {
  85                     FocusEmbeddedFrameTest.ef.requestFocus();
  86                 }
  87             });
  88 
  89         ef.addFocusListener(new FocusAdapter() {
  90                 public void focusGained(FocusEvent e) {
  91                     passed = true;
  92                 }
  93             });
  94 
  95         embedder.setSize(150, 150);
  96         embedder.setVisible(true);
  97 
  98         Util.waitForIdle(robot);
  99 
 100         if (!passed) {
 101             throw new TestFailedException("the EmbeddedFrame didn't get focus on request!");
 102         }
 103 
 104         System.out.println("Test passed.");
 105     }
 106 }
 107 
 108 class TestFailedException extends RuntimeException {
 109     TestFailedException(String msg) {
 110         super("Test failed: " + msg);
 111     }
 112 }