From e44a7e37b6c7b5961adaffc62b9042b8d442938e Mon Sep 17 00:00:00 2001 From: mensonge Date: Thu, 13 Nov 2008 09:49:11 +0000 Subject: New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dojo/tests/AdapterRegistry.js | 75 +++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 includes/js/dojo/tests/AdapterRegistry.js (limited to 'includes/js/dojo/tests/AdapterRegistry.js') diff --git a/includes/js/dojo/tests/AdapterRegistry.js b/includes/js/dojo/tests/AdapterRegistry.js new file mode 100644 index 0000000..4565e27 --- /dev/null +++ b/includes/js/dojo/tests/AdapterRegistry.js @@ -0,0 +1,75 @@ +if(!dojo._hasResource["tests.AdapterRegistry"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. +dojo._hasResource["tests.AdapterRegistry"] = true; +dojo.provide("tests.AdapterRegistry"); +dojo.require("dojo.AdapterRegistry"); + +doh.register("tests.AdapterRegistry", + [ + function ctor(t){ + var taa = new dojo.AdapterRegistry(); + t.is(0, taa.pairs.length); + t.f(taa.returnWrappers); + + var taa = new dojo.AdapterRegistry(true); + t.t(taa.returnWrappers); + }, + + function register(t){ + var taa = new dojo.AdapterRegistry(); + taa.register("blah", + function(str){ return str == "blah"; }, + function(){ return "blah"; } + ); + t.is(1, taa.pairs.length); + t.is("blah", taa.pairs[0][0]); + + taa.register("thinger"); + taa.register("prepend", null, null, true, true); + t.is("prepend", taa.pairs[0][0]); + t.t(taa.pairs[0][3]); + }, + + /* + function match(t){ + }, + */ + + function noMatch(t){ + var taa = new dojo.AdapterRegistry(); + var threw = false; + try{ + taa.match("blah"); + }catch(e){ + threw = true; + } + t.t(threw); + }, + + function returnWrappers(t){ + var taa = new dojo.AdapterRegistry(); + taa.register("blah", + function(str){ return str == "blah"; }, + function(){ return "blah"; } + ); + t.is("blah", taa.match("blah")); + + taa.returnWrappers = true; + t.is("blah", taa.match("blah")()); + }, + + function unregister(t){ + var taa = new dojo.AdapterRegistry(); + taa.register("blah", + function(str){ return str == "blah"; }, + function(){ return "blah"; } + ); + taa.register("thinger"); + taa.register("prepend", null, null, true, true); + taa.unregister("prepend"); + t.is(2, taa.pairs.length); + t.is("blah", taa.pairs[0][0]); + } + ] +); + +} -- cgit v1.2.3