1 /*
   2  * Copyright (c) 2007, 2017, 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  * @key headful
  27  * @bug 6452106 6606443 8161195
  28  * @author Peter Zhelezniakov
  29  * @library ../../regtesthelpers
  30  * @build Test JRobot SwingTestHelper
  31  * @run main/timeout=300 LayoutTest
  32  */
  33 
  34 import javax.swing.text.*;
  35 import javax.swing.*;
  36 import java.awt.event.*;
  37 import java.awt.*;
  38 
  39 public class LayoutTest extends SwingTestHelper {
  40     JTextPane text;
  41 
  42     public static void main(String[] args) throws Throwable {
  43         new LayoutTest().run(args);
  44     }
  45 
  46     protected Component createContentPane() {
  47         return text = new JTextPane();
  48     }
  49 
  50     @Test(value=10, onEDT=true)
  51     private void onEDT10() {
  52         requestAndWaitForFocus(text);
  53     }
  54 
  55 
  56     @Test(value=100, onEDT=true)
  57     private void prepare6452106() {
  58         text.setText("This is easily generated on my\nmachine");
  59         Document doc = text.getDocument();
  60 
  61         // wrap the long paragraph
  62         Dimension d = text.getPreferredSize();
  63         Dimension size = new Dimension(d.width * 2 / 3, d.height * 5);
  64         window.setSize(size);
  65 
  66         // place caret at the end of 2nd line
  67         Element p1 = doc.getDefaultRootElement().getElement(0);
  68         int pos = p1.getEndOffset();
  69         text.setCaretPosition(pos - 1);
  70     }
  71 
  72     @Test(value=110, onEDT=false)
  73     private void test6452106() {
  74         robot.setDelay(300);
  75         robot.hitKey(KeyEvent.VK_DELETE);
  76         robot.hitKey(KeyEvent.VK_SPACE);
  77         robot.hitKey(KeyEvent.VK_SPACE);
  78     }
  79 
  80 
  81     @Test(value=200, onEDT=true)
  82     private void prepare6606443() {
  83         text.setText("This is easily\ngenerated\non my machine");
  84         text.setSelectionStart(15);
  85         text.setSelectionEnd(24);
  86     }
  87 
  88     @Test(value=210, onEDT=false)
  89     private void test6606443() {
  90         robot.hitKey(KeyEvent.VK_ENTER);
  91     }
  92 }