1 /*
   2  * Copyright (c) 2011, 2014, 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 6470128
  28  * @summary Escape Key causes JMenu Selection to Disappear
  29  * @author Alexander Potochkin
  30  * @library /test/lib
  31  * @build jdk.test.lib.Platform
  32  * @run main bug6470128
  33  */
  34 
  35 import javax.swing.*;
  36 import java.awt.*;
  37 import java.awt.event.KeyEvent;
  38 
  39 import jdk.test.lib.Platform;
  40 
  41 public class bug6470128 {
  42     static JFrame frame;
  43     static JMenu subMenu;
  44 
  45     public static void main(String[] args) throws Exception {
  46         SwingUtilities.invokeAndWait(new Runnable() {
  47             public void run() {
  48                 frame = new JFrame();
  49                 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  50 
  51                 JMenuBar bar = new JMenuBar();
  52                 JMenu menu = new JMenu("Menu");
  53                 menu.setMnemonic('m');
  54                 subMenu = new JMenu("SubMenu");
  55                 JMenuItem item = new JMenuItem("Item");
  56 
  57                 frame.setJMenuBar(bar);
  58                 bar.add(menu);
  59                 menu.add(subMenu);
  60                 subMenu.add(item);
  61 
  62                 frame.setSize(200, 200);
  63                 frame.setLocationRelativeTo(null);
  64                 frame.setVisible(true);
  65             }
  66         });
  67         Robot robot = new Robot();
  68         robot.setAutoDelay(10);
  69         robot.waitForIdle();
  70         if (Platform.isOSX()) {
  71             robot.keyPress(KeyEvent.VK_CONTROL);
  72         }
  73         robot.keyPress(KeyEvent.VK_ALT);
  74         robot.keyPress(KeyEvent.VK_M);
  75         robot.keyRelease(KeyEvent.VK_M);
  76         robot.keyRelease(KeyEvent.VK_ALT);
  77         if (Platform.isOSX()) {
  78             robot.keyRelease(KeyEvent.VK_CONTROL);
  79         }
  80         robot.keyPress(KeyEvent.VK_ENTER);
  81         robot.keyRelease(KeyEvent.VK_ENTER);
  82         robot.keyPress(KeyEvent.VK_ESCAPE);
  83         robot.keyRelease(KeyEvent.VK_ESCAPE);
  84         robot.waitForIdle();
  85         if (!subMenu.isSelected()) {
  86             throw new RuntimeException("Submenu is unexpectedly unselected");
  87         }
  88     }
  89 }