|
| 1 | +/* |
| 2 | + * Copyright (c) 2007, 2024, 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 | +import java.awt.event.KeyAdapter; |
| 25 | +import java.awt.event.KeyEvent; |
| 26 | +import javax.swing.JComponent; |
| 27 | +import javax.swing.JLabel; |
| 28 | +import javax.swing.JPanel; |
| 29 | +import javax.swing.JTextField; |
| 30 | + |
| 31 | +/* |
| 32 | + * @test |
| 33 | + * @bug 4490692 |
| 34 | + * @summary [Linux] Test for KEY_PRESS event for accented characters. |
| 35 | + * @requires (os.family == "linux") |
| 36 | + * @library /java/awt/regtesthelpers |
| 37 | + * @build PassFailJFrame |
| 38 | + * @run main/manual bug4490692 |
| 39 | + */ |
| 40 | + |
| 41 | +public class bug4490692 { |
| 42 | + private static final String INSTRUCTIONS = """ |
| 43 | + This test is for unix platforms only. |
| 44 | + Before the test, you need to modify the keyboard mapping for |
| 45 | + Tab by issuing the following command: |
| 46 | +
|
| 47 | + xmodmap -e 'keycode 23 = aacute' (this is for Linux) |
| 48 | + xmodmap -e 'keycode 60 = aacute' (this is for Solaris Sparc) |
| 49 | +
|
| 50 | + This command lets you type 'a with acute (à)' character when you press |
| 51 | + 'Tab' key in the JTextField provided below the logging area. |
| 52 | + After the test, please DO NOT fail to restore the original |
| 53 | + key mapping by doing the following. |
| 54 | +
|
| 55 | + xmodmap -e 'keycode 23 = Tab' (this is for Linux) |
| 56 | + xmodmap -e 'keycode 60 = Tab' (this is for Solaris Sparc) |
| 57 | +
|
| 58 | + CASE 1: This is a manual check and for SOLARIS SPARC keyboard |
| 59 | + only. Check whether the key sequence ("Compose", "a", " ' ") |
| 60 | + generates a-acute character in en_US locale. |
| 61 | +
|
| 62 | + CASE 2: This step is automated and applicable for both |
| 63 | + keyboards - LINUX & SOLARIS SPARC. |
| 64 | + When Tab key is pressed it should generate a-acute (à) |
| 65 | + character, this test automatically passes if the correct character |
| 66 | + is generated on keypress else fails. |
| 67 | + """; |
| 68 | + |
| 69 | + public static void main(String[] args) throws Exception { |
| 70 | + PassFailJFrame.builder() |
| 71 | + .title("Test Instructions") |
| 72 | + .instructions(INSTRUCTIONS) |
| 73 | + .rows((int) INSTRUCTIONS.lines().count() + 2) |
| 74 | + .columns(45) |
| 75 | + .testTimeOut(10) |
| 76 | + .splitUIBottom(bug4490692::createUI) |
| 77 | + .logArea(8) |
| 78 | + .build() |
| 79 | + .awaitAndCheck(); |
| 80 | + } |
| 81 | + |
| 82 | + private static JComponent createUI() { |
| 83 | + JPanel panel = new JPanel(); |
| 84 | + JTextField textField = new JTextField("", 20); |
| 85 | + panel.add(new JLabel("Text field:")); |
| 86 | + |
| 87 | + textField.addKeyListener(new KeyAdapter() { |
| 88 | + @Override |
| 89 | + public void keyPressed(KeyEvent e) { |
| 90 | + PassFailJFrame.log(e.paramString()); |
| 91 | + if (e.getKeyCode() == 23 || e.getKeyCode() == 60 |
| 92 | + || e.paramString().contains("rawCode=23") |
| 93 | + || e.paramString().contains("rawCode=60")) { |
| 94 | + if (e.getKeyChar() == 0x00e1) { |
| 95 | + PassFailJFrame.forcePass(); |
| 96 | + } else { |
| 97 | + PassFailJFrame.forceFail("Tab keypress DID NOT" |
| 98 | + + " produce the expected accented character - aacute"); |
| 99 | + } |
| 100 | + } |
| 101 | + } |
| 102 | + }); |
| 103 | + |
| 104 | + panel.add(textField); |
| 105 | + return panel; |
| 106 | + } |
| 107 | +} |
0 commit comments