< prev index next >

test/jdk/java/awt/KeyboardFocusmanager/TypeAhead/ButtonActionKeyTest/ButtonActionKeyTest.java

Print this page




   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     }


   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        6396785
  28   @summary    Action key pressed on a button should be swallowed.
  29   @library    ../../../regtesthelpers
  30   @build      Util
  31   @run        main ButtonActionKeyTest
  32 */
  33 
  34 import java.awt.*;
  35 import java.awt.event.*;
  36 import javax.swing.*;

  37 import java.util.concurrent.atomic.AtomicBoolean;

  38 import test.java.awt.regtesthelpers.Util;
  39 
  40 public class ButtonActionKeyTest {
  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 
  57     public void start() {
  58         frame.setLayout(new FlowLayout());
  59         frame.add(button);
  60         frame.add(text);
  61         frame.pack();
  62 
  63         button.getInputMap().put(KeyStroke.getKeyStroke("A"), "GO!");
  64         button.getActionMap().put("GO!", new AbstractAction() {
  65             public void actionPerformed(ActionEvent e) {
  66                 System.out.println("Action performed!");
  67                 text.requestFocusInWindow();
  68             }
  69         });
  70 
  71         text.addKeyListener(new KeyAdapter() {
  72                 public void keyTyped(KeyEvent e) {
  73                     if (e.getKeyChar() == 'a') {
  74                         System.out.println(e.toString());
  75                         synchronized (gotEvent) {
  76                             gotEvent.set(true);
  77                             gotEvent.notifyAll();
  78                         }
  79                     }
  80                 }
  81             });
  82         frame.setLocationRelativeTo(null);
  83         frame.setVisible(true);
  84         Util.waitForIdle(robot);
  85 
  86         Util.clickOnComp(button, robot);
  87         Util.waitForIdle(robot);
  88 
  89         if (!button.isFocusOwner()) {
  90             throw new Error("Test error: a button didn't gain focus.");
  91         }
  92 
  93         robot.keyPress(KeyEvent.VK_A);
  94         robot.delay(20);
  95         robot.keyRelease(KeyEvent.VK_A);
  96 
  97         if (Util.waitForCondition(gotEvent, 2000)) {
  98             throw new TestFailedException("an action key went into the text field!");
  99         }
 100 
 101         System.out.println("Test passed.");
 102     }
< prev index next >