--- /dev/null Tue Oct 30 13:51:01 2012 +++ new/test/javax/swing/text/StyledEditorKit/4506788/bug4506788.html Tue Oct 30 13:51:01 2012 @@ -0,0 +1,28 @@ + + + + + + + --- /dev/null Tue Oct 30 13:51:02 2012 +++ new/test/javax/swing/text/StyledEditorKit/4506788/bug4506788.java Tue Oct 30 13:51:02 2012 @@ -0,0 +1,122 @@ +/* + * Copyright (c) 2012, 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 + @bug 4506788 + @summary Tests if cursor gets stuck after insertion a character + @author Denis Sharypov + @library ../../../regtesthelpers + @build Util + @run applet bug4506788.html +*/ + + +import java.awt.*; +import java.awt.event.*; + +import javax.swing.*; +import javax.swing.text.*; +import javax.swing.event.*; + +import java.util.Timer; +import java.util.TimerTask; + +public class bug4506788 extends JApplet { + + private Timer timer; + + private boolean passed = false; + private boolean finished = false; + + private JEditorPane jep = new JEditorPane(); + + public void init() { + String text = "abc"; + JFrame f = new JFrame(); + jep.setEditorKit(new StyledEditorKit()); + jep.setText(text); + jep.addCaretListener(new CaretListener() { + public void caretUpdate(CaretEvent e) { + passed = (e.getDot() == 3); + if (passed) { + synchronized (bug4506788.this) { + finished = true; + bug4506788.this.notifyAll(); + } + } + } + }); + + DefaultStyledDocument doc = (DefaultStyledDocument)jep.getDocument(); + MutableAttributeSet atr = new SimpleAttributeSet(); + StyleConstants.setBold(atr, true); + doc.setCharacterAttributes(1, 1, atr, false); + + f.getContentPane().add(jep); + f.setSize(100, 100); + f.setVisible(true); + } + + public void start() { + Util.blockTillDisplayed(jep); + timer = new Timer(); + timer.schedule(new RobotTask(), 3000); + synchronized (this) { + if (!finished) { + try { + wait(20000); + } catch (Exception e) { + } + } + } + } + + public void destroy() { + if(!passed) { + throw new RuntimeException("Test failed."); + } + } + + + class RobotTask extends TimerTask { + public void run() { + Robot robot; + try { + robot = new Robot(); + } catch (AWTException e) { + throw new RuntimeException("Robot could not be created"); + } + Point p = jep.getLocationOnScreen(); + robot.setAutoDelay(50); + robot.mouseMove(p.x ,p.y); + robot.mousePress(InputEvent.BUTTON1_MASK); + robot.mouseRelease(InputEvent.BUTTON1_MASK); + robot.keyPress(KeyEvent.VK_RIGHT); + robot.keyRelease(KeyEvent.VK_RIGHT); + robot.keyPress(KeyEvent.VK_X); + robot.keyRelease(KeyEvent.VK_X); + robot.keyPress(KeyEvent.VK_RIGHT); + robot.keyRelease(KeyEvent.VK_RIGHT); + } + } +}