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
|
// Tags: JDK1.0
// Copyright (C) 1998 Cygnus Solutions
// 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.java.lang.String;
import gnu.testlet.Testlet;
import gnu.testlet.TestHarness;
import java.io.UnsupportedEncodingException;
public class decode implements Testlet
{
public void test (TestHarness harness)
{
char[] cstr = { 'a', 'b', 'c', '\t', 'A', 'B', 'C', ' ', '1', '2', '3' };
byte[] bstr = new byte [cstr.length];
for (int i = 0; i < cstr.length; ++i)
bstr[i] = (byte) cstr[i];
String a = new String(bstr);
String a_utf8 = "";
String b = new String(bstr, 3, 3);
String b_utf8 = "";
String c = "";
String d = "";
try
{
a_utf8 = new String(bstr, "UTF-8");
}
catch (UnsupportedEncodingException ex)
{
}
try
{
b_utf8 = new String(bstr, 3, 3, "UTF-8");
}
catch (UnsupportedEncodingException ex)
{
}
try
{
c = new String(bstr, "8859_1");
}
catch (UnsupportedEncodingException ex)
{
}
try
{
d = new String(bstr, 3, 3, "8859_1");
}
catch (UnsupportedEncodingException ex)
{
}
harness.check (a, "abc ABC 123");
harness.check (a_utf8, "abc ABC 123");
harness.check (b, " AB");
harness.check (b_utf8, " AB");
harness.check (c, "abc ABC 123");
harness.check (d, " AB");
boolean ok = false;
try
{
c = new String(bstr, "foobar8859_1");
}
catch (UnsupportedEncodingException ex)
{
ok = true;
}
harness.check (ok);
ok = false;
try
{
d = new String(bstr, 3, 3, "foobar8859_1");
}
catch (UnsupportedEncodingException ex)
{
ok = true;
}
harness.check (ok);
harness.check (String.copyValueOf(cstr), "abc ABC 123");
harness.check (String.copyValueOf(cstr, 3, 3), " AB");
byte[] leWithBOM = new byte[]
{(byte)0xFF, (byte)0xFE, (byte)'a', (byte)0x00};
byte[] leWithoutBOM = new byte[]
{(byte)'a', (byte)0x00};
byte[] beWithBOM = new byte[]
{(byte)0xFE, (byte)0xFF, (byte)0x00, (byte)'a'};
byte[] beWithoutBOM = new byte[]
{(byte)0x00, (byte)'a'};
// UTF-16: Big endian assumed without BOM
harness.check(decodeTest(leWithBOM, "UTF-16", "a"));
harness.check(!decodeTest(leWithoutBOM, "UTF-16", "a"));
harness.check(decodeTest(beWithBOM, "UTF-16", "a"));
harness.check(decodeTest(beWithoutBOM, "UTF-16", "a"));
// UTF-16LE: BOM should not be used
harness.check(!decodeTest(leWithBOM, "UTF-16LE", "a"));
harness.check(decodeTest(leWithoutBOM, "UTF-16LE", "a"));
harness.check(!decodeTest(beWithBOM, "UTF-16LE", "a"));
harness.check(!decodeTest(beWithoutBOM, "UTF-16LE", "a"));
// UTF-16BE: BOM should not be used
harness.check(!decodeTest(leWithBOM, "UTF-16BE", "a"));
harness.check(!decodeTest(leWithoutBOM, "UTF-16BE", "a"));
harness.check(!decodeTest(beWithBOM, "UTF-16BE", "a"));
harness.check(decodeTest(beWithoutBOM, "UTF-16BE", "a"));
// UnicodeLittle: Little endian assumed without BOM
harness.check(decodeTest(leWithBOM, "UnicodeLittle", "a"));
harness.check(decodeTest(leWithoutBOM, "UnicodeLittle", "a"));
harness.check(!decodeTest(beWithBOM, "UnicodeLittle", "a"));
harness.check(!decodeTest(beWithoutBOM, "UnicodeLittle", "a"));
}
public boolean decodeTest (byte[] bytes, String encoding, String expected)
{
try
{
String s = new String(bytes, encoding);
return s.equals(expected);
}
catch (UnsupportedEncodingException ex)
{
return false;
}
}
}
|