1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
/*
* Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
/**
* @test
* @key headful
* @bug 6427244 8144240 8166003 8169879
* @summary Test that pressing HOME correctly moves caret in I18N document.
* @author Sergey Groznyh
* @library ../../../regtesthelpers
* @build JRobot
* @run main bug6427244
*/
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Point;
import java.awt.Shape;
import java.awt.event.KeyEvent;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JTextPane;
import javax.swing.SwingUtilities;
import javax.swing.text.Position;
public class bug6427244 {
private static final JRobot ROBOT = JRobot.getRobot();
final static int TP_SIZE = 200;
final static String[] SPACES = new String[] {
"\u0020", // ASCII space
"\u2002", // EN space
"\u2003", // EM space
"\u2004", // THREE-PER-EM space
"\u2005", // ... etc.
"\u2006",
//"\u2007",
"\u2008",
"\u2009",
"\u200a",
"\u200b",
"\u205f",
"\u3000",
};
final static String[] WORDS = new String[] {
"It", "is", "a", "long", "paragraph", "for", "testing", "GlyphPainter2\n\n",
};
public static void main(String[] args) {
bug6427244 t = new bug6427244();
for (String space: SPACES) {
t.init(space);
t.testCaretPosition();
}
System.out.println("OK");
// Dispose the test interface upon completion
t.destroyTestInterface();
}
void init(final String space) {
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
String text = null;
for (String word: WORDS) {
if (text == null) {
text = "";
} else {
text += space;
}
text += word;
}
tp = new JTextPane();
tp.setText(text +
"Some arabic: \u062a\u0641\u0627\u062d and some not.");
if (jf == null) {
jf = new JFrame();
jf.setTitle("bug6427244");
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setSize(TP_SIZE, TP_SIZE);
jf.setVisible(true);
}
Container c = jf.getContentPane();
c.removeAll();
c.add(tp);
c.invalidate();
c.validate();
dim = c.getSize();
}
});
blockTillDisplayed(tp);
ROBOT.waitForIdle();
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
void destroyTestInterface() {
try {
SwingUtilities.invokeAndWait(new Runnable() {
@Override
public void run() {
// Dispose the frame
jf.dispose();
}
});
} catch (Exception ex) {
// No-op
}
}
void blockTillDisplayed(JComponent comp) throws Exception {
while (comp != null && isCompVisible == false) {
try {
SwingUtilities.invokeAndWait(new Runnable() {
@Override
public void run() {
isCompVisible = comp.isVisible();
}
});
if (isCompVisible == false) {
// A short wait for component to be visible
Thread.sleep(1000);
}
} catch (InterruptedException ex) {
// No-op. Thread resumed from sleep
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
}
public void testCaretPosition() {
final Point p[] = new Point[1];
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
p[0] = tp.getLocationOnScreen();
// the right-top corner position
p[0].x += (dim.width - 5);
p[0].y += 5;
}
});
} catch (Exception ex) {
throw new RuntimeException(ex);
}
ROBOT.mouseMove(p[0].x, p[0].y);
ROBOT.clickMouse();
ROBOT.hitKey(KeyEvent.VK_HOME);
ROBOT.waitForIdle();
// this will fail if caret moves out of the 1st line.
if (getCaretOrdinate() != 0) {
// Dispose the test interface upon completion
destroyTestInterface();
throw new RuntimeException("Test Failed.");
}
}
int getCaretOrdinate() {
final int[] y = new int[1];
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
Shape s;
try {
s = tp.getUI().getRootView(tp).modelToView(
tp.getCaretPosition(), tp.getBounds(),
Position.Bias.Forward);
} catch (Exception e) {
throw new RuntimeException(e);
}
y[0] = s.getBounds().y;
}
});
} catch (Exception e) {
throw new RuntimeException(e);
}
return y[0];
}
private JFrame jf;
private JTextPane tp;
private Dimension dim;
private volatile boolean isCompVisible = false;
}
|