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   @bug       6396785
  27   @summary   Action key pressed on a button should be swallowed.
  28   @author    anton.tarasov@...: area=awt.focus
  29   @run       applet ButtonActionKeyTest.html
  30 */
  31 
  32 import java.awt.*;
  33 import java.awt.event.*;
  34 import javax.swing.*;
  35 import java.applet.Applet;
  36 import java.util.concurrent.atomic.AtomicBoolean;
  37 import java.lang.reflect.InvocationTargetException;
  38 import test.java.awt.regtesthelpers.Util;
  39 
  40 public class ButtonActionKeyTest extends Applet {
  41     Robot robot;
  42     JFrame frame = new JFrame("Frame");
  43     JButton button = new JButton("button");
  44     JTextField text = new JTextField("text");
  45     AtomicBoolean gotEvent = new AtomicBoolean(false);
  46 
  47     public static void main(String[] args) {
  48         ButtonActionKeyTest app = new ButtonActionKeyTest();
  49         app.init();
  50         app.start();
  51     }
  52 
  53     public void init() {
  54         robot = Util.createRobot();
  55 
  56         // Create instructions for the user here, as well as set up
  57         // the environment -- set the layout manager, add buttons,
  58         // etc.
  59         this.setLayout (new BorderLayout ());
  60     }
  61 
  62     public void start() {
  63         frame.setLayout(new FlowLayout());
  64         frame.add(button);
  65         frame.add(text);
  66         frame.pack();
  67 
  68         button.getInputMap().put(KeyStroke.getKeyStroke("A"), "GO!");
  69         button.getActionMap().put("GO!", new AbstractAction() {
  70             public void actionPerformed(ActionEvent e) {
  71                 System.out.println("Action performed!");
  72                 text.requestFocusInWindow();
  73             }
  74         });
  75 
  76         text.addKeyListener(new KeyAdapter() {
  77                 public void keyTyped(KeyEvent e) {
  78                     if (e.getKeyChar() == 'a') {
  79                         System.out.println(e.toString());
  80                         synchronized (gotEvent) {
  81                             gotEvent.set(true);
  82                             gotEvent.notifyAll();
  83                         }
  84                     }
  85                 }
  86             });
  87 
  88         frame.setVisible(true);
  89         Util.waitForIdle(robot);
  90 
  91         Util.clickOnComp(button, robot);
  92         Util.waitForIdle(robot);
  93 
  94         if (!button.isFocusOwner()) {
  95             throw new Error("Test error: a button didn't gain focus.");
  96         }
  97 
  98         robot.keyPress(KeyEvent.VK_A);
  99         robot.delay(20);
 100         robot.keyRelease(KeyEvent.VK_A);
 101 
 102         if (Util.waitForCondition(gotEvent, 2000)) {
 103             throw new TestFailedException("an action key went into the text field!");
 104         }
 105 
 106         System.out.println("Test passed.");
 107     }
 108 }
 109 
 110 class TestFailedException extends RuntimeException {
 111     TestFailedException(String msg) {
 112         super("Test failed: " + msg);
 113     }
 114 }