Skip to content

Commit 1861655

Browse files
Sonia Zaldana Callesshipilev
Sonia Zaldana Calles
authored andcommittedApr 23, 2024
8316154: Opensource JTextArea manual tests
Backport-of: 33c62e4fffe33a7593fd0c01de53507bfd01dc3b
1 parent a36d3de commit 1861655

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Copyright (c) 1999, 2023, 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 4265784 4267291
27+
* @summary Tests work of TAB key in JTextArea
28+
* @key headful
29+
* @run main bug4265784
30+
*/
31+
32+
import javax.swing.JFrame;
33+
import javax.swing.JTextArea;
34+
import javax.swing.SwingUtilities;
35+
import java.awt.Point;
36+
import java.awt.Robot;
37+
import java.awt.event.InputEvent;
38+
import java.awt.event.KeyEvent;
39+
40+
public class bug4265784 {
41+
static JFrame frame;
42+
static JTextArea ta;
43+
static volatile Point p;
44+
static volatile int pos;
45+
static volatile int pos1;
46+
47+
public static void main(String[] args) throws Exception {
48+
Robot robot = new Robot();
49+
robot.setAutoDelay(100);
50+
try {
51+
SwingUtilities.invokeAndWait(() -> {
52+
frame = new JFrame("bug4265784");
53+
ta = new JTextArea();
54+
frame.getContentPane().add(ta);
55+
frame.pack();
56+
frame.setLocationRelativeTo(null);
57+
frame.setVisible(true);
58+
});
59+
robot.waitForIdle();
60+
robot.delay(1000);
61+
SwingUtilities.invokeAndWait(() -> {
62+
p = ta.getLocationOnScreen();
63+
});
64+
robot.mouseMove(p.x + 10, p.y + 10);
65+
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
66+
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
67+
SwingUtilities.invokeAndWait(() -> {
68+
pos = ta.getCaretPosition();
69+
});
70+
System.out.println(pos);
71+
robot.keyPress(KeyEvent.VK_TAB);
72+
robot.keyRelease(KeyEvent.VK_TAB);
73+
robot.waitForIdle();
74+
robot.delay(1000);
75+
SwingUtilities.invokeAndWait(() -> {
76+
pos1 = ta.getCaretPosition();
77+
});
78+
System.out.println(pos1);
79+
if (pos == pos1) {
80+
throw new RuntimeException("TAB ignored");
81+
}
82+
} finally {
83+
SwingUtilities.invokeAndWait(() -> {
84+
if (frame != null) {
85+
frame.dispose();
86+
}
87+
});
88+
}
89+
}
90+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Apr 23, 2024

@openjdk-notifier[bot]
Please sign in to comment.