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
|
// Tags: JDK1.2
// Uses: parsingTester
// Copyright (C) 2005 Audrius Meskauskas, AudriusA@Bluewin.ch
// // This file is part of Mauve.
// Mauve is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2, or (at your option)
// any later version.
// Mauve 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 for more details.
// You should have received a copy of the GNU General Public License
// along with Mauve; see the file COPYING. If not, write to
// the Free Software Foundation, 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA. */
package gnu.testlet.javax.swing.text.html.parser.ParserDelegator;
import gnu.testlet.TestHarness;
import gnu.testlet.Testlet;
import javax.swing.text.MutableAttributeSet;
import javax.swing.text.html.HTML;
/**
* Verifies if the \r, \n , \r\n and \t are handled correctly in normal
* and pre-formatted text sections.
* @author Audrius Meskauskas (AudriusA@Bluewin.ch)
*/
public class Text
extends parsingTester
implements Testlet
{
public void handleSimpleTag(HTML.Tag tag, MutableAttributeSet attributes,
int position
)
{
out.append("<" + tag + ">");
}
public void handleStartTag(HTML.Tag tag, MutableAttributeSet attributes,
int position
)
{
out.append("<" + tag + ">");
}
public void handleText(char chars[], int position)
{
for (int i = 0; i < chars.length; i++)
{
out.append(Integer.toHexString(chars [ i ]));
if (chars [ i ] > ' ')
out.append("'" + chars [ i ]);
out.append(" ");
}
}
public void handleEndTag(HTML.Tag tag, int position)
{
out.append("</" + tag + ">");
}
public void test(TestHarness a_harness)
{
harness = a_harness;
hideImplied = true;
/*
Non-preformatted text.
\t, \r and \n mutate into spaces, then multiple spaces mutate
into single one, all whitespace around tags is consumed.
*/
verify("\r \n \t {abc r\rn\nt}\t \r\n \r \t",
"<html><head></head><body>7b'{ 61'a 62'b 63'c 20 72'r 20" +
" 6e'n 20 74't 7d'} </body></html>", "normal"
);
verify(" abba ",
"<html><head></head><body>61'a 62'b 62'b 61'a </body></html>",
"single word"
);
verify(" \r ab \t \r \n ba ",
"<html><head></head><body>61'a 62'b 20 62'b 61'a </body></html>",
"line breaks"
);
/*
Pre-formatted text.
Heading/closing spaces and tabs preserved.
ONE bounding \r, \n or \r\n is removed.
\r or \r\n mutate into \n. Tabs are
preserved.
*/
verify("<pre>\n\n\n\n abba \r\t \r\n</pre>",
"<html><head></head><body><pre>a a a 20 20 20 61'a 62'b 62'b" +
" 61'a 20 20 20 a 9 20 </pre></body></html>", "pre"
);
verify("<pre> abba </pre>",
"<html><head></head><body><pre>20 20 20 61'a 62'b 62'b 61'a 20 " +
"20 20 </pre></body></html>", "pre"
);
verify("<pre>\r\n abba </pre>",
"<html><head></head><body><pre>20 20 20 61'a 62'b 62'b 61'a 20 " +
"20 20 </pre></body></html>", "pre, single word"
);
verify("<pre>\r\n\r\n abba \r\n</pre>",
"<html><head></head><body><pre>a 20 20 20 61'a 62'b 62'b 61'a 20 20" +
" 20 </pre></body></html>",
"pre, single word with line breaks around"
);
verify("<pre> \r ab \t \r \n ba </pre>",
"<html><head></head><body><pre>20 a 20 61'a 62'b 20 20 9 20 a" +
" 20 a 20 20 62'b 61'a 20 20 20 </pre></body></html>",
"pre, line breaks"
);
verify("<pre> \r\n ab \t \r\n \n ba </pre>",
"<html><head></head><body><pre>20 a 20 61'a 62'b 20 20 9 20 a" +
" 20 a 20 20 62'b 61'a 20 20 20 </pre></body></html>", "pre"
);
// In TEXTAREA tag, same.
verify("<textarea>\n\n\n\n abba \r\n</textarea>",
"<html><head></head><body><textarea>a a a 20 20 20 61'a " +
"62'b 62'b 61'a 20 </textarea></body></html>",
"textarea, single word with line breaks around"
);
verify("<textarea> abba </textarea>",
"<html><head></head><body><textarea>20 20 20 61'a 62'b 62'b 61'a 20 " +
"20 20 </textarea></body></html>", "textarea, singe word"
);
verify("<textarea> \r ab \t \r \n ba </textarea>",
"<html><head></head><body><textarea>20 a 20 61'a 62'b 20 20 9 20 a" +
" 20 a 20 20 62'b 61'a 20 20 20 </textarea></body></html>",
" textarea"
);
}
}
|