You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
package de.anomic.plasma;
|
|
|
|
import java.nio.charset.Charset;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
public class plasmaParserTest extends TestCase {
|
|
|
|
public void testGetRealCharsetEncoding() {
|
|
String[][] testStrings = new String[][] {
|
|
new String[]{null,"ISO-8859-1"},
|
|
new String[]{"windows1250","windows-1250"},
|
|
new String[]{"windows_1250","windows-1250"},
|
|
new String[]{"ISO-8859-1","ISO-8859-1"},
|
|
new String[]{"ISO8859-1","ISO-8859-1"},
|
|
new String[]{"ISO-88591","ISO-8859-1"},
|
|
new String[]{"ISO88591","ISO-8859-1"},
|
|
new String[]{"iso_8859_1","ISO-8859-1"},
|
|
new String[]{"cp-1252","windows-1252"},
|
|
new String[]{"gb_2312","x-EUC-CN"},
|
|
new String[]{"gb_2312-80","x-EUC-CN"},
|
|
new String[]{"UTF-8;","UTF-8"}
|
|
};
|
|
|
|
for (int i=0; i < testStrings.length; i++) {
|
|
// desired conversion result
|
|
String shouldBe = testStrings[i][1].toLowerCase();
|
|
|
|
// conversion result
|
|
String charset = plasmaParser.getRealCharsetEncoding(testStrings[i][0]).toLowerCase();
|
|
|
|
// test if equal
|
|
assertEquals(charset,shouldBe);
|
|
System.out.println("testGetRealCharsetEncoding: " + testStrings[i][0] + " -> " + charset + " | Supported: " + Charset.isSupported(charset));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|