e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
if(!dojo._hasResource["dojox.encoding.tests.ascii85"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
|
|
dojo._hasResource["dojox.encoding.tests.ascii85"] = true;
|
|
dojo.provide("dojox.encoding.tests.ascii85");
|
|
dojo.require("dojox.encoding.ascii85");
|
|
|
|
(function(){
|
|
var msg1 = "The rain in Spain falls mainly on the plain.";
|
|
var msg2 = "The rain in Spain falls mainly on the plain.1";
|
|
var msg3 = "The rain in Spain falls mainly on the plain.ab";
|
|
var msg4 = "The rain in Spain falls mainly on the plain.!@#";
|
|
var dca = dojox.encoding.ascii85;
|
|
|
|
var s2b = function(s){
|
|
var b = [];
|
|
for(var i = 0; i < s.length; ++i){
|
|
b.push(s.charCodeAt(i));
|
|
}
|
|
return b;
|
|
};
|
|
|
|
var b2s = function(b){
|
|
var s = [];
|
|
dojo.forEach(b, function(c){ s.push(String.fromCharCode(c)); });
|
|
return s.join("");
|
|
};
|
|
|
|
tests.register("dojox.encoding.tests.ascii85", [
|
|
function testMsg1(t){ t.assertEqual(msg1, b2s(dca.decode(dca.encode(s2b(msg1))))); },
|
|
function testMsg2(t){ t.assertEqual(msg2, b2s(dca.decode(dca.encode(s2b(msg2))))); },
|
|
function testMsg3(t){ t.assertEqual(msg3, b2s(dca.decode(dca.encode(s2b(msg3))))); },
|
|
function testMsg4(t){ t.assertEqual(msg4, b2s(dca.decode(dca.encode(s2b(msg4))))); }
|
|
]);
|
|
})();
|
|
|
|
}
|