1 /*
   2  * Copyright (c) 2011, 2013, 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 /* @test
  25    @bug 6596966
  26    @summary Some JFileChooser mnemonics do not work with sticky keys
  27    @library ../../regtesthelpers
  28    @build Util
  29    @run main bug6596966
  30    @author Pavel Porvatov
  31 */
  32 
  33 import java.awt.*;
  34 import java.awt.event.KeyEvent;
  35 import java.util.ArrayList;
  36 import javax.swing.*;
  37 import sun.awt.SunToolkit;
  38 
  39 public class bug6596966 {
  40     private static JFrame frame;
  41 
  42     private static JLabel label;
  43     private static JButton button;
  44     private static JComboBox comboBox;
  45 
  46     public static void main(String[] args) throws Exception {
  47         Robot robot = new Robot();
  48         SunToolkit toolkit = (SunToolkit) SunToolkit.getDefaultToolkit();
  49 
  50         SwingUtilities.invokeAndWait(new Runnable() {
  51             public void run() {
  52                 button = new JButton("Button");
  53                 comboBox = new JComboBox();
  54 
  55                 label = new JLabel("Label");
  56                 label.setDisplayedMnemonic('L');
  57                 label.setLabelFor(comboBox);
  58 
  59                 JPanel pnContent = new JPanel();
  60 
  61                 pnContent.add(button);
  62                 pnContent.add(label);
  63                 pnContent.add(comboBox);
  64 
  65                 frame = new JFrame();
  66 
  67                 frame.add(pnContent);
  68                 frame.pack();
  69                 frame.setVisible(true);
  70             }
  71         });
  72 
  73         toolkit.realSync();
  74 
  75         ArrayList<Integer> keys = Util.getSystemMnemonicKeyCodes();
  76         for (int i = 0; i < keys.size(); ++i) {
  77             robot.keyPress(keys.get(i));
  78         }
  79 
  80         robot.keyPress(KeyEvent.VK_L);
  81 
  82         toolkit.realSync();
  83         toolkit.getSystemEventQueue().postEvent(new KeyEvent(label, KeyEvent.KEY_RELEASED,
  84                 EventQueue.getMostRecentEventTime(), 0, KeyEvent.VK_L, 'L'));
  85 
  86         toolkit.realSync();
  87 
  88         try {
  89             SwingUtilities.invokeAndWait(new Runnable() {
  90                 public void run() {
  91                     if (!comboBox.isFocusOwner()) {
  92                         throw new RuntimeException("comboBox isn't focus owner");
  93                     }
  94                 }
  95             });
  96         } finally {
  97             robot.keyRelease(KeyEvent.VK_L);
  98             for (int i = 0; i < keys.size(); ++i) {
  99                 robot.keyRelease(keys.get(i));
 100             }
 101             toolkit.realSync();
 102         }
 103     }
 104 }