Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 2149 → Rev 2150

/trunk/api/js/dojo1.0/dojox/lang/tests/misc.js
New file
0,0 → 1,36
if(!dojo._hasResource["dojox.lang.tests.misc"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.lang.tests.misc"] = true;
dojo.provide("dojox.lang.tests.misc");
dojo.require("dojox.lang.functional");
 
(function(){
var df = dojox.lang.functional, fun = df.lambda("100*a + 10*b + c"), result = [];
df.forIn({a: 1, b: 2}, function(v, i){ result.push("[" + i + "] = " + v); });
tests.register("dojox.lang.tests.misc", [
function testZip1(t){ t.assertEqual(df.zip([1, 2, 3], [4, 5, 6]), [[1, 4], [2, 5], [3, 6]]); },
function testZip2(t){ t.assertEqual(df.zip([1, 2], [3, 4], [5, 6]), [[1, 3, 5], [2, 4, 6]]); },
function testUnzip1(t){ t.assertEqual(df.unzip([[1, 4], [2, 5], [3, 6]]), [[1, 2, 3], [4, 5, 6]]); },
function testUnzip2(t){ t.assertEqual(df.unzip([[1, 3, 5], [2, 4, 6]]), [[1, 2], [3, 4], [5, 6]]); },
function testConst1(t){ t.assertEqual(df.constFun(5)(), 5); },
function testConst2(t){ t.assertEqual(df.constFun(8)(), 8); },
function testInvoke1(t){ t.assertEqual(df.invoke("max")(Math, 1, 2), 2); },
function testInvoke2(t){ t.assertEqual(df.invoke("min")(Math, 1, 2), 1); },
function testPluck1(t){ t.assertEqual(df.pluck("PI")(Math), Math.PI); },
function testPluck2(t){ t.assertEqual(df.pluck("E")(Math), Math.E); },
function testMixer(t){ t.assertEqual(df.mixer(fun, [1, 2, 0])(3, 1, 2), 123); },
function testFlip(t){ t.assertEqual(df.flip(fun)(3, 2, 1), 123); },
function testCompose1(t){ t.assertEqual(df.lambda(["+5", "*3"])(8), 8 * 3 + 5); },
function testCompose2(t){ t.assertEqual(df.lambda(["+5", "*3"].reverse())(8), (8 + 5) * 3); },
function testForIn(t){ t.assertEqual(result.sort().join(", "), "[a] = 1, [b] = 2"); }
]);
})();
 
}