aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/encoding/tests/easy64.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dojox/encoding/tests/easy64.js')
-rw-r--r--includes/js/dojox/encoding/tests/easy64.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/includes/js/dojox/encoding/tests/easy64.js b/includes/js/dojox/encoding/tests/easy64.js
new file mode 100644
index 0000000..93876b1
--- /dev/null
+++ b/includes/js/dojox/encoding/tests/easy64.js
@@ -0,0 +1,35 @@
+if(!dojo._hasResource["dojox.encoding.tests.easy64"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.encoding.tests.easy64"] = true;
+dojo.provide("dojox.encoding.tests.easy64");
+dojo.require("dojox.encoding.easy64");
+
+(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 dce = dojox.encoding.easy64;
+
+ 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.easy64", [
+ function testEasyMsg1(t){ t.assertEqual(msg1, b2s(dce.decode(dce.encode(s2b(msg1))))); },
+ function testEasyMsg2(t){ t.assertEqual(msg2, b2s(dce.decode(dce.encode(s2b(msg2))))); },
+ function testEasyMsg3(t){ t.assertEqual(msg3, b2s(dce.decode(dce.encode(s2b(msg3))))); },
+ function testEasyMsg4(t){ t.assertEqual(msg4, b2s(dce.decode(dce.encode(s2b(msg4))))); }
+ ]);
+})();
+
+}