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   MenuItem activated with space should swallow this space.
  28   @author    anton.tarasov@...: area=awt.focus
  29   @run       applet MenuItemActivatedTest.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 MenuItemActivatedTest extends Applet {
  41     Robot robot;
  42     JFrame frame = new JFrame("Test Frame");
  43     JDialog dialog = new JDialog((Window)null, "Test Dialog", Dialog.ModalityType.DOCUMENT_MODAL);
  44     JTextField text = new JTextField();
  45     JMenuBar bar = new JMenuBar();
  46     JMenu menu = new JMenu("Menu");
  47     JMenuItem item = new JMenuItem("item");
  48     AtomicBoolean gotEvent = new AtomicBoolean(false);
  49 
  50     public static void main(String[] args) {
  51         MenuItemActivatedTest app = new MenuItemActivatedTest();
  52         app.init();
  53         app.start();
  54     }
  55 
  56     public void init() {
  57         robot = Util.createRobot();
  58 
  59         // Create instructions for the user here, as well as set up
  60         // the environment -- set the layout manager, add buttons,
  61         // etc.
  62         this.setLayout (new BorderLayout ());
  63     }
  64 
  65     public void start() {
  66         menu.setMnemonic('f');
  67         menu.add(item);
  68         bar.add(menu);
  69         frame.setJMenuBar(bar);
  70         frame.pack();
  71 
  72         item.addActionListener(new ActionListener() {
  73                 public void actionPerformed(ActionEvent ae) {
  74                     dialog.add(text);
  75                     dialog.pack();
  76                 dialog.setVisible(true);
  77                 }
  78             });
  79 
  80         text.addKeyListener(new KeyAdapter() {
  81                 public void keyTyped(KeyEvent e) {
  82                     if (e.getKeyChar() == ' ') {
  83                         System.out.println(e.toString());
  84                         synchronized (gotEvent) {
  85                             gotEvent.set(true);
  86                             gotEvent.notifyAll();
  87                         }
  88                     }
  89                 }
  90             });
  91 
  92         frame.setVisible(true);
  93         Util.waitForIdle(robot);
  94 
  95         robot.keyPress(KeyEvent.VK_ALT);
  96         robot.delay(20);
  97         robot.keyPress(KeyEvent.VK_F);
  98         robot.delay(20);
  99         robot.keyRelease(KeyEvent.VK_F);
 100         robot.delay(20);
 101         robot.keyRelease(KeyEvent.VK_ALT);
 102         Util.waitForIdle(robot);
 103 
 104         item.setSelected(true);
 105         Util.waitForIdle(robot);
 106 
 107         robot.keyPress(KeyEvent.VK_SPACE);
 108         robot.delay(20);
 109         robot.keyRelease(KeyEvent.VK_SPACE);
 110 
 111         if (Util.waitForCondition(gotEvent, 2000)) {
 112             throw new TestFailedException("a space went into the dialog's text field!");
 113         }
 114 
 115         System.out.println("Test passed.");
 116     }
 117 }
 118 
 119 class TestFailedException extends RuntimeException {
 120     TestFailedException(String msg) {
 121         super("Test failed: " + msg);
 122     }
 123 }