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
|
/*
* Copyright (c) 2002, 2023, 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 4701398 4652358 4659958 4697796 4666876
@summary REGRESSION: TextArea.append does not work consistently with \r.
@key headful
*/
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dialog;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Frame;
import java.awt.Panel;
import java.awt.TextArea;
public class TextAreaCRLFTest {
private static final char[] DIGITS = {
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
};
public static Dialog aDialog;
public static TextArea area;
public static boolean passed = true;
public static boolean res;
public static String atext = "";
public static void main(String[] args) throws Exception {
String atextCRLF = "row1\r\nrow2\r\nrow3";
try {
EventQueue.invokeAndWait(() -> {
aDialog = new Dialog(new Frame());
aDialog.setTitle("ADialog");
aDialog.setBackground(Color.lightGray);
aDialog.setLayout(new BorderLayout());
Panel mainPanel = new Panel();
mainPanel.setLayout(new BorderLayout(6, 6));
area = new TextArea(atextCRLF, 25, 68,
TextArea.SCROLLBARS_VERTICAL_ONLY);
area.setFont(new Font("Monospaced", Font.PLAIN, 11));
mainPanel.add(area, "Center");
aDialog.add(mainPanel, "Center");
aDialog.pack();
System.out.println("before: "+hexEncode(atextCRLF));
System.out.println(" after: "+hexEncode(area.getText()));
res = area.getText().equals(atextCRLF);
System.out.println("01: " + res + "\n");
passed = passed && res;
area.setText(atextCRLF);
System.out.println("before: "+hexEncode(atextCRLF));
System.out.println(" after: "+hexEncode(area.getText()));
res = area.getText().equals(atextCRLF);
System.out.println("02: " + res + "\n");
passed = passed && res;
area.setText("");
atext = "row1";
area.append(atext+"\r");
area.append(atext+"\r");
System.out.println("before: "
+hexEncode(atext+"\r" + atext+"\r"));
System.out.println(" after: "+hexEncode(area.getText()));
res = area.getText().equals(atext + atext);
System.out.println("03: " + res + "\n");
passed = passed && res;
area.setText("");
String atext1 = "fine.";
String atext2 = "messed up.";
atext = atext1 +"\r\n"+ atext2;
for (int i = 0; i < atext.length(); i++) {
area.append(atext.substring(i, i+1));
}
System.out.println("before: "
+hexEncode(atext1 +"\r\n"+ atext2));
System.out.println(" after: "+hexEncode(area.getText()));
String s = area.getText();
String t = s.substring(s.length()-atext2.length());
res = t.equals(atext2);
System.out.println("04: " + res);
passed = passed && res;
area.setText("");
atext = "\r";
area.append(atext);
System.out.println("before: "+hexEncode(atext));
System.out.println(" after: "+hexEncode(area.getText()));
res = area.getText().equals("");
System.out.println("05: " + res + "\n");
passed = passed && res;
if (System.getProperty("os.name").toUpperCase().
startsWith("WIN")) {
if (!passed) {
throw new RuntimeException("TextAreaCRLFTest FAILED.");
} else {
System.out.println("TextAreaCRLFTest PASSED");
}
} else {
System.out.println("This is a Windows oriented testcase.");
}
});
} finally {
EventQueue.invokeAndWait(() -> {
if (aDialog != null) {
aDialog.dispose();
}
});
}
}
private static String hexEncode(String str) {
return hexEncode(str.getBytes());
}
private static String hexEncode(byte[] bytes) {
StringBuffer buffer = new StringBuffer(bytes.length * 2);
for (int i = 0; i < bytes.length; i++) {
byte b = bytes[i];
buffer.append(DIGITS[(b & 0xF0) >> 4]);
buffer.append(DIGITS[b & 0x0F]);
}
return buffer.toString();
}
}
|