Bug 414064 part 2. Add some tests.

This commit is contained in:
Simon Montagu 2011-03-28 23:32:11 -04:00
parent 93e981814b
commit 72394837e1
4 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// Tests conversion from UTF-7 to Unicode. The conversion should fail!
load('CharsetConversionTests.js');
const inString = "+LGI--+ITIipSIp- +AocCeQ-oddns +Ad0CjQ- s+ATECZQKH- p+AlAB3QJ5- u+AlACVA- no+Ao4- +Al8-I";
const expectedString = "+LGI--+ITIipSIp- +AocCeQ-oddns +Ad0CjQ- s+ATECZQKH- p+AlAB3QJ5- u+AlACVA- no+Ao4- +Al8-I";
const aliases = [ "UTF-7", "utf-7", "x-unicode-2-0-utf-7", "unicode-2-0-utf-7",
"unicode-1-1-utf-7", "csunicode11utf7" ];
function run_test() {
testDecodeAliases();
}

View File

@ -0,0 +1,14 @@
// Tests conversion from UTF-7 to Unicode.
load('CharsetConversionTests.js');
const inString = "+LGI--+ITIipSIp- +AocCeQ-oddns +Ad0CjQ- s+ATECZQKH- p+AlAB3QJ5- u+AlACVA- no+Ao4- +Al8-I";
const expectedString = "\u2C62-\u2132\u22A5\u2229 \u0287\u0279oddns \u01DD\u028D s\u0131\u0265\u0287 p\u0250\u01DD\u0279 u\u0250\u0254 no\u028E \u025FI";
const aliases = [ "UTF-7", "utf-7", "x-unicode-2-0-utf-7", "unicode-2-0-utf-7",
"unicode-1-1-utf-7", "csunicode11utf7" ];
function run_test() {
testDecodeAliasesInternal();
}

View File

@ -0,0 +1,14 @@
// Tests conversion from Unicode to UTF-7. The conversion should fail!
load('CharsetConversionTests.js');
const inString = "\u2C62-\u2132\u22A5\u2229 \u0287\u0279oddns \u01DD\u028D s\u0131\u0265\u0287 p\u0250\u01DD\u0279 u\u0250\u0254 no\u028E \u025FI";
const expectedString = "?-??? ??oddns ?? s??? p??? u?? no? ?I";
const aliases = [ "UTF-7", "utf-7", "x-unicode-2-0-utf-7", "unicode-2-0-utf-7",
"unicode-1-1-utf-7", "csunicode11utf7" ];
function run_test() {
testEncodeAliases();
}

View File

@ -0,0 +1,14 @@
// Tests conversion from Unicode to UTF-7.
load('CharsetConversionTests.js');
const inString = "\u2C62-\u2132\u22A5\u2229 \u0287\u0279oddns \u01DD\u028D s\u0131\u0265\u0287 p\u0250\u01DD\u0279 u\u0250\u0254 no\u028E \u025FI";
const expectedString = "+LGI--+ITIipSIp- +AocCeQ-oddns +Ad0CjQ- s+ATECZQKH- p+AlAB3QJ5- u+AlACVA- no+Ao4- +Al8-I";
const aliases = [ "UTF-7", "utf-7", "x-unicode-2-0-utf-7", "unicode-2-0-utf-7",
"unicode-1-1-utf-7", "csunicode11utf7" ];
function run_test() {
testEncodeAliasesInternal();
}