added punycode infrastructure
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@679321 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
114e1d22fe
commit
f87aaff0f1
|
@ -43,6 +43,7 @@ public class TestAllUtils extends TestCase {
|
|||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite();
|
||||
suite.addTest(TestURLEncodedUtils.suite());
|
||||
suite.addTest(TestRfc3492Idn.suite());
|
||||
return suite;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,65 @@
|
|||
package org.apache.http.client.utils;
|
||||
|
||||
import org.apache.http.client.utils.Rfc3492Idn;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
public class TestRfc3492Idn extends TestCase {
|
||||
public TestRfc3492Idn(String testName) {
|
||||
super(testName);
|
||||
}
|
||||
|
||||
public static void main(String args[]) {
|
||||
String[] testCaseName = { TestRfc3492Idn.class.getName() };
|
||||
junit.textui.TestRunner.main(testCaseName);
|
||||
}
|
||||
|
||||
public static Test suite() {
|
||||
return new TestSuite(TestRfc3492Idn.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Some of the sample strings from RFC 3492
|
||||
*/
|
||||
public void testDecode() throws Exception {
|
||||
Rfc3492Idn idn = new Rfc3492Idn();
|
||||
// (A) Arabic
|
||||
assertEquals("\u0644\u064A\u0647\u0645\u0627\u0628\u062A\u0643\u0644" +
|
||||
"\u0645\u0648\u0634\u0639\u0631\u0628\u064A\u061F",
|
||||
idn.decode("egbpdaj6bu4bxfgehfvwxn"));
|
||||
|
||||
// (B) Chinese (simplified)
|
||||
assertEquals("\u4ED6\u4EEC\u4E3A\u4EC0\u4E48\u4E0D\u8BF4\u4E2D\u6587",
|
||||
idn.decode("ihqwcrb4cv8a8dqg056pqjye"));
|
||||
|
||||
// (I) Russian (Cyrillic)
|
||||
assertEquals("\u043F\u043E\u0447\u0435\u043C\u0443\u0436\u0435\u043E"+
|
||||
"\u043D\u0438\u043D\u0435\u0433\u043E\u0432\u043E\u0440"+
|
||||
"\u044F\u0442\u043F\u043E\u0440\u0443\u0441\u0441\u043A"+
|
||||
"\u0438",
|
||||
idn.decode("b1abfaaepdrnnbgefbaDotcwatmq2g4l"));
|
||||
|
||||
// (P) Maji<de>Koi<suru>5<byou><mae>
|
||||
assertEquals("\u004D\u0061\u006A\u0069\u3067\u004B\u006F\u0069\u3059" +
|
||||
"\u308B\u0035\u79D2\u524D",
|
||||
idn.decode("MajiKoi5-783gue6qz075azm5e"));
|
||||
|
||||
}
|
||||
|
||||
public void testToUnicode() throws Exception {
|
||||
Rfc3492Idn idn = new Rfc3492Idn();
|
||||
// (A) Arabic
|
||||
assertEquals("\u0644\u064A\u0647\u0645\u0627\u0628\u062A\u0643\u0644" +
|
||||
"\u0645\u0648\u0634\u0639\u0631\u0628\u064A\u061F",
|
||||
idn.toUnicode("xn--egbpdaj6bu4bxfgehfvwxn"));
|
||||
|
||||
// some real-world domains
|
||||
assertEquals("www.z\u00fcrich.ch",
|
||||
idn.toUnicode("www.xn--zrich-kva.ch"));
|
||||
|
||||
assertEquals("www.g\u00e4ggelig\u00e4\u00e4l.ch",
|
||||
idn.toUnicode("www.xn--gggeligl-0zaga.ch"));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue