From 1c5685d68f1b73270fb814fe04cbb490eb90ba5f Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 14 Nov 2008 15:39:19 +0000 Subject: Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dojox/wire/tests/programmatic/Wire.js | 123 ---------------------- 1 file changed, 123 deletions(-) delete mode 100644 includes/js/dojox/wire/tests/programmatic/Wire.js (limited to 'includes/js/dojox/wire/tests/programmatic/Wire.js') diff --git a/includes/js/dojox/wire/tests/programmatic/Wire.js b/includes/js/dojox/wire/tests/programmatic/Wire.js deleted file mode 100644 index 25a82ec..0000000 --- a/includes/js/dojox/wire/tests/programmatic/Wire.js +++ /dev/null @@ -1,123 +0,0 @@ -if(!dojo._hasResource["dojox.wire.tests.programmatic.Wire"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.wire.tests.programmatic.Wire"] = true; -dojo.provide("dojox.wire.tests.programmatic.Wire"); -dojo.require("dojox.wire.Wire"); - -//Simple connverter class to try to use. -dojo.declare("dojox.wire.tests.programmatic.Wire.Converter", null, { - convert: function(v){ - return v + 1; - } -}); - -//Simple converter function to try to use. -//To get it in the global namespace, gotta assign it to the -//'window' toplevel object. Otherwise it ends up in the -//dojo NS and can't be found. -if (dojo.isBrowser) { - window["__wireTestConverterFunction"] = function(v){ - return v + 1; - }; -}else{ - var __wireTestConverterFunction = function(v){ - return v + 1; - }; -} - -tests.register("dojox.wire.tests.programmatic.Wire", [ - - function test_Wire_property(t){ - var source = {a: "A", b: {c: "B.C"}}; - var target = {a: "a", b: {c: "b.c"}}; - var value = new dojox.wire.Wire({object: source, property: "a"}).getValue(); - new dojox.wire.Wire({object: target, property: "a"}).setValue(value); - t.assertEqual(source.a, target.a); - - // child property - value = new dojox.wire.Wire({object: source, property: "b.c"}).getValue(); - new dojox.wire.Wire({object: target, property: "b.c"}).setValue(value); - t.assertEqual(source.b.c, target.b.c); - - // new property - target = {}; - value = new dojox.wire.Wire({object: source, property: "a"}).getValue(); - new dojox.wire.Wire({object: target, property: "a"}).setValue(value); - t.assertEqual(source.a, target.a); - - // new parent and child property - target.b = {}; - value = new dojox.wire.Wire({object: source, property: "b.c"}).getValue(); - new dojox.wire.Wire({object: target, property: "b.c"}).setValue(value); - t.assertEqual(source.b.c, target.b.c); - - // new parent and child property - target = {}; - value = new dojox.wire.Wire({object: source, property: "b.c"}).getValue(); - new dojox.wire.Wire({object: target, property: "b.c"}).setValue(value); - t.assertEqual(source.b.c, target.b.c); - - // new array property - source = {a: ["A"]}; - target = {}; - value = new dojox.wire.Wire({object: source, property: "a[0]"}).getValue(); - new dojox.wire.Wire({object: target, property: "a[0]"}).setValue(value); - t.assertEqual(source.a[0], target.a[0]); - - // by getter/setter - source = {getA: function() { return this._a; }, _a: "A"}; - target = {setA: function(a) { this._a = a; }}; - value = new dojox.wire.Wire({object: source, property: "a"}).getValue(); - new dojox.wire.Wire({object: target, property: "a"}).setValue(value); - t.assertEqual(source._a, target._a); - - // by get/setPropertyValue - source = {getPropertyValue: function(p) { return this["_" + p]; }, _a: "A"}; - target = {setPropertyValue: function(p, v) { this["_" + p] = v; }}; - value = new dojox.wire.Wire({object: source, property: "a"}).getValue(); - new dojox.wire.Wire({object: target, property: "a"}).setValue(value); - t.assertEqual(source._a, target._a); - }, - - function test_Wire_type(t){ - var source = {a: "1"}; - var string = new dojox.wire.Wire({object: source, property: "a"}).getValue(); - t.assertEqual("11", string + 1); - var number = new dojox.wire.Wire({object: source, property: "a", type: "number"}).getValue(); - t.assertEqual(2, number + 1); - }, - - function test_Wire_converterObject(t){ - var source = {a: "1"}; - var converter = {convert: function(v) { return v + 1; }}; - var string = new dojox.wire.Wire({object: source, property: "a", converter: converter}).getValue(); - t.assertEqual("11", string); - }, - - function test_Wire_converterFunction(t){ - var source = {a: "1"}; - var converter = {convert: function(v) { return v + 1; }}; - var number = new dojox.wire.Wire({object: source, property: "a", type: "number", converter: converter.convert}).getValue(); - t.assertEqual(2, number); - }, - - function test_Wire_converterObjectByString(t){ - var source = {a: "1"}; - var number = new dojox.wire.Wire({object: source, property: "a", type: "number", converter: "dojox.wire.tests.programmatic.Wire.Converter"}).getValue(); - t.assertEqual(2, number); - }, - - function test_Wire_converterFunctionByString(t){ - var source = {a: "1"}; - var number = new dojox.wire.Wire({object: source, property: "a", type: "number", converter: "__wireTestConverterFunction"}).getValue(); - t.assertEqual(2, number); - }, - - function test_Wire_converterObjectByStringDynamic(t){ - var source = {a: "1"}; - var number = new dojox.wire.Wire({object: source, property: "a", type: "number", converter: "dojox.wire.tests.programmatic.ConverterDynamic"}).getValue(); - t.assertEqual(2, number); - } - -]); - -} -- cgit v1.2.3-54-g00ecf