X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fdata.js;h=9d43cb59af1b369d53bf75c59293d63e789ed291;hb=4a46f3d7fbbaa0b7dab49ac815ccec78f1c45d2b;hp=872bbb753067dced760af96bc28fd8f5051cae0c;hpb=c4b4df469161ed3c3d372ebed342261efd413ac1;p=jquery.git diff --git a/test/unit/data.js b/test/unit/data.js index 872bbb7..9d43cb5 100644 --- a/test/unit/data.js +++ b/test/unit/data.js @@ -157,6 +157,76 @@ test(".data(String) and .data(String, Object)", function() { $elem.removeData(); }); +test("data-* attributes", function() { + expect(20); + var div = jQuery("
"), + child = jQuery("
"); + + equals( div.data("attr"), undefined, "Check for non-existing data-attr attribute" ); + + div.attr("data-attr", "exists"); + equals( div.data("attr"), "exists", "Check for existing data-attr attribute" ); + + div.data("attr", "internal").attr("data-attr", "external"); + equals( div.data("attr"), "internal", "Check for .data('attr') precedence (internal > external data-* attribute)" ); + + child.appendTo('#main'); + equals( child.data("myobj"), "old data", "Value accessed from data-* attribute"); + + child.data("myobj", "replaced"); + equals( child.data("myobj"), "replaced", "Original data overwritten"); + + child.data("ignored", "cache"); + equals( child.data("ignored"), "cache", "Cached data used before DOM data-* fallback"); + + child + .attr("data-true", "true") + .attr("data-false", "false") + .attr("data-five", "5") + .attr("data-point", "5.5") + .attr("data-null", "null") + .attr("data-string", "test"); + + equals( child.data('true'), true, "Primitive true read from attribute"); + equals( child.data('false'), false, "Primitive false read from attribute"); + equals( child.data('five'), 5, "Primitive number read from attribute"); + equals( child.data('point'), 5.5, "Primitive number read from attribute"); + equals( child.data('null'), null, "Primitive null read from attribute"); + equals( child.data('string'), "test", "Typical string read from attribute"); + + child.remove(); + + // tests from metadata plugin + function testData(index, elem) { + switch (index) { + case 0: + equals(jQuery(elem).data("foo"), "bar", "Check foo property"); + equals(jQuery(elem).data("bar"), "baz", "Check baz property"); + break; + case 1: + equals(jQuery(elem).data("test"), "bar", "Check test property"); + equals(jQuery(elem).data("bar"), "baz", "Check bar property"); + break; + case 2: + equals(jQuery(elem).data("zoooo"), "bar", "Check zoooo property"); + equals(jQuery(elem).data("bar"), '{"test":"baz"}', "Check bar property"); + break; + case 3: + equals(jQuery(elem).data("number"), true, "Check number property"); + equals(jQuery(elem).data("stuff"), "[2,8]", "Check stuff property"); + break; + default: + ok(false, ["Assertion failed on index ", index, ", with data ", data].join('')); + } + } + + var metadata = '
  1. Some stuff
  2. Some stuff
  3. Some stuff
  4. Some stuff
', + elem = jQuery(metadata).appendTo('#main'); + + elem.find("li").each(testData); + elem.remove(); +}); + test(".data(Object)", function() { expect(2);