X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fdata.js;h=46e46ed5a79326c340b03ca90e208f9f4bd79434;hb=a2731202917f8e90cad94ee574241d1626dc7fb6;hp=5d390e1a20dc65363595a10d7a99407c66869d6c;hpb=d857315967a1cc07b73924bbdf2eb12f4f910c45;p=jquery.git diff --git a/test/unit/data.js b/test/unit/data.js index 5d390e1..46e46ed 100644 --- a/test/unit/data.js +++ b/test/unit/data.js @@ -1,5 +1,21 @@ module("data"); +test("expando", function(){ + expect(4); + + equals("expando" in jQuery, true, "jQuery is exposing the expando"); + + var obj = {}; + jQuery.data(obj, "foo", "bar"); + + equals(jQuery.expando in obj, true, "jQuery.data added an expando to the object"); + + var id = obj[jQuery.expando]; + equals( id in jQuery.cache, true, "jQuery.data added an entry to jQuery.cache"); + + equals( jQuery.cache[id].foo, "bar", "jQuery.data worked correctly"); +}); + test("jQuery.data", function() { expect(5); var div = jQuery("#foo")[0]; @@ -15,6 +31,14 @@ test("jQuery.data", function() { }); test(".data()", function() { + expect(1); + + var div = jQuery("#foo"); + div.data("test", "success"); + isObj( div.data(), {test: "success"}, "data() get the entire data object" ) +}) + +test(".data(String) and .data(String, Object)", function() { expect(22); var div = jQuery("#foo"); equals( div.data("test"), undefined, "Check for no data exists" ); @@ -105,20 +129,23 @@ test(".removeData()", function() { }); test("queue() defaults to 'fx' type", function () { - expect(2); + expect(1); stop(); + var counter = 0; + var $foo = jQuery("#foo"); - $foo.queue("fx", [ "sample", "array" ]); - var arr = $foo.queue(); - isSet(arr, [ "sample", "array" ], "queue() got an array set with type 'fx'"); - $foo.queue([ "another", "one" ]); - var arr = $foo.queue("fx"); - isSet(arr, [ "another", "one" ], "queue('fx') got an array set with no type"); - // clean up after test - $foo.queue([]); - start(); + $foo.queue(function() { + var self = this; + setTimeout(function() { + jQuery(self).dequeue("fx"); + start(); + }, 200); + }).queue(function() { + ok( "dequeuing 'fx' calls queues created with no name" ) + }); + }); test("queue() with other types",function() { @@ -154,9 +181,6 @@ test("queue() with other types",function() { equals( counter, 4, "Testing previous call to dequeue" ); equals( $div.queue('foo').length, 0, "Testing queue length" ); - - // Clean up - $div.removeData(); }); test("queue(name) passes in the next item in the queue as a parameter", function() { @@ -176,26 +200,8 @@ test("queue(name) passes in the next item in the queue as a parameter", function }); div.dequeue("foo"); - - div.removeData(); }); - expect(1); - - var div = jQuery({}); - var counter = 0; - - div.queue("foo", function(next) { - counter++; - jQuery(this).clearQueue("foo"); - next(); - }).queue("foo", function(next) { - counter++; - }); - - div.dequeue("foo"); - - equals(counter, 1, "the queue was cleared"); test("queue(name) passes in the next item in the queue as a parameter", function() { expect(2); @@ -213,29 +219,27 @@ test("queue(name) passes in the next item in the queue as a parameter", function }); div.dequeue("foo"); - - div.removeData(); }); test("queue() passes in the next item in the queue as a parameter to fx queues", function() { expect(2); + stop(); var div = jQuery({}); var counter = 0; div.queue(function(next) { equals(++counter, 1, "Dequeueing"); - next(); + var self = this; + setTimeout(function() { next() }, 500); }).queue(function(next) { equals(++counter, 2, "Next was called"); next(); - }).queue(function() { + start(); + }).queue("bar", function() { equals(++counter, 3, "Other queues are not triggered by next()") }); - - div.dequeue(); - - div.removeData(); + }); test("clearQueue(name) clears the queue", function() { @@ -265,13 +269,13 @@ test("clearQueue() clears the fx queue", function() { div.queue(function(next) { counter++; - jQuery(this).clearQueue(); - next(); + var self = this; + setTimeout(function() { jQuery(self).clearQueue(); next(); }, 50); }).queue(function(next) { counter++; }); - div.dequeue(); - equals(counter, 1, "the queue was cleared"); -}) + + div.removeData(); +});