1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-19 18:59:42 +00:00
TiddlyWiki5/tw2/source/tiddlywiki/test/js/FileSystem.js
Jeremy Ruston a1c8ac624f Added first pass at support for building TiddlyWiki 2.6.x with TW5
There are still some whitespace and attribute ordering issues, but the
result runs correctly.
2012-05-29 22:02:38 +01:00

56 lines
1.9 KiB
JavaScript
Executable File

jQuery(document).ready(function() {
module("File System");
test("convertUTF8ToUnicode", function() {
var actual, expected, str;
str = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
actual = convertUTF8ToUnicode(str);
expected = str;
same(actual, expected, "ASCII characters should remain unchanged when converted from UTF8 to Unicode using convert");
});
test("manualConvertUTF8ToUnicode", function() {
var actual, expected, str;
str = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
actual = manualConvertUTF8ToUnicode(str);
expected = str;
same(actual, expected, "ASCII characters should remain unchanged when converted from UTF8 to Unicode manually");
});
test("convertUnicodeToUTF8", function() {
var actual, expected, str;
str = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
actual = convertUnicodeToUTF8(str);
expected = str;
same(actual, expected, "ASCII characters should remain unchanged when converted from Unicode to UTF8 using convert");
});
test("manualConvertUnicodeToUTF8", function() {
var actual, expected, str;
str = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
actual = manualConvertUnicodeToUTF8(str);
expected = str;
same(actual, expected, "ASCII characters should remain unchanged when converted from Unicode to UTF8 manually");
});
/* XXX: this test does not work
test("round trip conversion from UTF8 to Unicode and back", function() {
var actual, expected, str;
str = "\u007f\u0080";
actual = convertUTF8ToUnicode(convertUnicodeToUTF8(str));
expected = str;
same(actual, expected, "characters should remain unchanged when converted from Unicode to UTF8 and back to Unicode");
});
*/
});