2011-01-09 21:52:33 +00:00
|
|
|
module("data", { teardown: moduleTeardown });
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
test("expando", function(){
|
2011-01-09 21:52:33 +00:00
|
|
|
expect(1);
|
2010-09-07 16:51:57 +00:00
|
|
|
|
2012-07-05 19:52:13 +00:00
|
|
|
equal(jQuery.expando !== undefined, true, "jQuery is exposing the expando");
|
2011-01-09 21:52:33 +00:00
|
|
|
});
|
2010-09-07 16:51:57 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
function dataTests (elem) {
|
2011-09-19 20:13:14 +00:00
|
|
|
// expect(31)
|
2010-01-28 19:12:44 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
function getCacheLength() {
|
|
|
|
var cacheLength = 0;
|
|
|
|
for (var i in jQuery.cache) {
|
|
|
|
++cacheLength;
|
|
|
|
}
|
2010-01-28 19:12:44 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
return cacheLength;
|
|
|
|
}
|
2009-11-25 17:09:53 +00:00
|
|
|
|
2012-06-21 19:30:24 +00:00
|
|
|
var oldCacheLength, dataObj, internalDataObj, expected, actual;
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.data(elem, "foo"), undefined, "No data exists initially" );
|
2011-01-09 21:52:33 +00:00
|
|
|
strictEqual( jQuery.hasData(elem), false, "jQuery.hasData agrees no data exists initially" );
|
2010-09-24 20:24:07 +00:00
|
|
|
|
2012-06-21 19:30:24 +00:00
|
|
|
dataObj = jQuery.data(elem);
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( typeof dataObj, "object", "Calling data with no args gives us a data object reference" );
|
2011-01-09 21:52:33 +00:00
|
|
|
strictEqual( jQuery.data(elem), dataObj, "Calling jQuery.data returns the same data object when called multiple times" );
|
2010-09-24 20:24:07 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
strictEqual( jQuery.hasData(elem), false, "jQuery.hasData agrees no data exists even when an empty data obj exists" );
|
2010-09-24 20:24:07 +00:00
|
|
|
|
2012-07-05 19:52:13 +00:00
|
|
|
dataObj["foo"] = "bar";
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.data(elem, "foo"), "bar", "Data is readable by jQuery.data when set directly on a returned data object" );
|
2010-09-24 20:24:07 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
strictEqual( jQuery.hasData(elem), true, "jQuery.hasData agrees data exists when data exists" );
|
2010-02-26 17:35:04 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.data(elem, "foo", "baz");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.data(elem, "foo"), "baz", "Data can be changed by jQuery.data" );
|
2012-07-05 19:52:13 +00:00
|
|
|
equal( dataObj["foo"], "baz", "Changes made through jQuery.data propagate to referenced data object" );
|
2010-09-07 16:51:57 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.data(elem, "foo", undefined);
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.data(elem, "foo"), "baz", "Data is not unset by passing undefined to jQuery.data" );
|
2010-02-26 17:35:04 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.data(elem, "foo", null);
|
|
|
|
strictEqual( jQuery.data(elem, "foo"), null, "Setting null using jQuery.data works OK" );
|
2010-09-07 16:51:57 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.data(elem, "foo", "foo1");
|
2010-09-07 16:51:57 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.data(elem, { "bar" : "baz", "boom" : "bloz" });
|
|
|
|
strictEqual( jQuery.data(elem, "foo"), "foo1", "Passing an object extends the data object instead of replacing it" );
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.data(elem, "boom"), "bloz", "Extending the data object works" );
|
2010-09-07 16:51:57 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery._data(elem, "foo", "foo2");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery._data(elem, "foo"), "foo2", "Setting internal data works" );
|
|
|
|
equal( jQuery.data(elem, "foo"), "foo1", "Setting internal data does not override user data" );
|
2010-09-07 16:51:57 +00:00
|
|
|
|
2012-06-21 19:30:24 +00:00
|
|
|
internalDataObj = jQuery._data( elem );
|
2011-09-19 20:13:14 +00:00
|
|
|
ok( internalDataObj, "Internal data object exists" );
|
2011-01-09 21:52:33 +00:00
|
|
|
notStrictEqual( dataObj, internalDataObj, "Internal data object is not the same as user data object" );
|
2009-12-09 21:16:18 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
strictEqual( elem.boom, undefined, "Data is never stored directly on the object" );
|
2010-02-27 14:49:58 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.removeData(elem, "foo");
|
|
|
|
strictEqual( jQuery.data(elem, "foo"), undefined, "jQuery.removeData removes single properties" );
|
2010-02-27 14:49:58 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.removeData(elem);
|
2011-09-19 20:13:14 +00:00
|
|
|
strictEqual( jQuery._data(elem), internalDataObj, "jQuery.removeData does not remove internal data if it exists" );
|
2010-10-11 21:52:00 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.removeData(elem, undefined, true);
|
2009-11-25 17:09:53 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
strictEqual( jQuery.data(elem, jQuery.expando), undefined, "jQuery.removeData on internal data works" );
|
|
|
|
strictEqual( jQuery.hasData(elem), false, "jQuery.hasData agrees all data has been removed from object" );
|
|
|
|
|
|
|
|
jQuery._data(elem, "foo", "foo2");
|
|
|
|
strictEqual( jQuery.hasData(elem), true, "jQuery.hasData shows data exists even if it is only internal data" );
|
|
|
|
|
|
|
|
jQuery.data(elem, "foo", "foo1");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery._data(elem, "foo"), "foo2", "Setting user data does not override internal data" );
|
2011-01-09 21:52:33 +00:00
|
|
|
|
2011-09-19 20:13:14 +00:00
|
|
|
// delete the last private data key so we can test removing public data
|
|
|
|
// will destroy the cache
|
|
|
|
jQuery.removeData( elem, "foo", true );
|
2011-01-09 21:52:33 +00:00
|
|
|
|
|
|
|
if (elem.nodeType) {
|
2012-06-21 19:30:24 +00:00
|
|
|
oldCacheLength = getCacheLength();
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.removeData(elem, "foo");
|
2010-12-22 21:03:01 +00:00
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( getCacheLength(), oldCacheLength - 1, "Removing the last item in the data object destroys it" );
|
2010-12-22 21:03:01 +00:00
|
|
|
}
|
2011-01-09 21:52:33 +00:00
|
|
|
else {
|
|
|
|
jQuery.removeData(elem, "foo");
|
2012-06-21 19:30:24 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
|
|
|
|
if (jQuery.support.deleteExpando) {
|
|
|
|
expected = false;
|
|
|
|
actual = jQuery.expando in elem;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
expected = null;
|
|
|
|
actual = elem[ jQuery.expando ];
|
|
|
|
}
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( actual, expected, "Removing the last item in the data object destroys it" );
|
2011-01-09 21:52:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jQuery.data(elem, "foo", "foo1");
|
|
|
|
jQuery._data(elem, "foo", "foo2");
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.data(elem, "foo"), "foo1", "(sanity check) Ensure data is set in user data object" );
|
|
|
|
equal( jQuery._data(elem, "foo"), "foo2", "(sanity check) Ensure data is set in internal data object" );
|
2011-01-09 21:52:33 +00:00
|
|
|
|
|
|
|
jQuery.removeData(elem, "foo", true);
|
|
|
|
|
|
|
|
strictEqual( jQuery.data(elem, jQuery.expando), undefined, "Removing the last item in internal data destroys the internal data object" );
|
|
|
|
|
|
|
|
jQuery._data(elem, "foo", "foo2");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery._data(elem, "foo"), "foo2", "(sanity check) Ensure data is set in internal data object" );
|
2010-12-22 21:03:01 +00:00
|
|
|
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery.removeData(elem, "foo");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery._data(elem, "foo"), "foo2", "(sanity check) jQuery.removeData for user data does not remove internal data" );
|
2011-01-09 21:52:33 +00:00
|
|
|
|
2012-06-21 19:30:24 +00:00
|
|
|
if ( elem.nodeType ) {
|
2011-01-09 21:52:33 +00:00
|
|
|
oldCacheLength = getCacheLength();
|
|
|
|
jQuery.removeData(elem, "foo", true);
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( getCacheLength(), oldCacheLength - 1, "Removing the last item in the internal data object also destroys the user data object when it is empty" );
|
2011-01-09 21:52:33 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
jQuery.removeData(elem, "foo", true);
|
|
|
|
|
|
|
|
if (jQuery.support.deleteExpando) {
|
|
|
|
expected = false;
|
|
|
|
actual = jQuery.expando in elem;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
expected = null;
|
|
|
|
actual = elem[ jQuery.expando ];
|
|
|
|
}
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( actual, expected, "Removing the last item in the internal data object also destroys the user data object when it is empty" );
|
2011-01-09 21:52:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test("jQuery.data", function() {
|
2011-09-19 20:13:14 +00:00
|
|
|
expect(124);
|
2011-01-09 21:52:33 +00:00
|
|
|
|
|
|
|
var div = document.createElement("div");
|
|
|
|
|
|
|
|
dataTests(div);
|
|
|
|
dataTests({});
|
|
|
|
|
|
|
|
// remove bound handlers from window object to stop potential false positives caused by fix for #5280 in
|
|
|
|
// transports/xhr.js
|
|
|
|
jQuery(window).unbind("unload");
|
|
|
|
|
|
|
|
dataTests(window);
|
|
|
|
dataTests(document);
|
|
|
|
|
|
|
|
// clean up unattached element
|
|
|
|
jQuery(div).remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
test("jQuery.acceptData", function() {
|
|
|
|
expect(7);
|
|
|
|
|
|
|
|
ok( jQuery.acceptData( document ), "document" );
|
|
|
|
ok( jQuery.acceptData( document.documentElement ), "documentElement" );
|
|
|
|
ok( jQuery.acceptData( {} ), "object" );
|
|
|
|
ok( !jQuery.acceptData( document.createElement("embed") ), "embed" );
|
|
|
|
ok( !jQuery.acceptData( document.createElement("applet") ), "applet" );
|
|
|
|
|
|
|
|
var flash = document.createElement("object");
|
|
|
|
flash.setAttribute("classid", "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000");
|
|
|
|
ok( jQuery.acceptData( flash ), "flash" );
|
|
|
|
|
|
|
|
var applet = document.createElement("object");
|
|
|
|
applet.setAttribute("classid", "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93");
|
|
|
|
ok( !jQuery.acceptData( applet ), "applet" );
|
2010-12-22 20:54:37 +00:00
|
|
|
});
|
|
|
|
|
2009-11-25 17:09:53 +00:00
|
|
|
test(".data()", function() {
|
2010-12-03 07:19:39 +00:00
|
|
|
expect(5);
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
var div = jQuery("#foo");
|
2010-09-24 20:30:57 +00:00
|
|
|
strictEqual( div.data("foo"), undefined, "Make sure that missing result is undefined" );
|
2009-11-25 17:09:53 +00:00
|
|
|
div.data("test", "success");
|
2011-02-14 22:22:23 +00:00
|
|
|
|
|
|
|
var dataObj = div.data();
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
deepEqual( dataObj, {test: "success"}, "data() get the entire data object" );
|
2010-09-24 20:30:57 +00:00
|
|
|
strictEqual( div.data("foo"), undefined, "Make sure that missing result is still undefined" );
|
2010-09-07 16:51:57 +00:00
|
|
|
|
|
|
|
var nodiv = jQuery("#unfound");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( nodiv.data(), null, "data() on empty set returns null" );
|
2010-12-03 07:19:39 +00:00
|
|
|
|
|
|
|
var obj = { foo: "bar" };
|
2011-02-07 16:48:38 +00:00
|
|
|
jQuery(obj).data("foo", "baz");
|
|
|
|
|
2011-02-14 22:22:23 +00:00
|
|
|
dataObj = jQuery.extend(true, {}, jQuery(obj).data());
|
|
|
|
|
2012-07-05 19:52:13 +00:00
|
|
|
deepEqual( dataObj, { "foo": "baz" }, "Retrieve data object from a wrapped JS object (#7524)" );
|
2011-02-07 16:48:38 +00:00
|
|
|
});
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
test(".data(String) and .data(String, Object)", function() {
|
2010-09-29 13:46:25 +00:00
|
|
|
expect(29);
|
2010-07-27 17:45:32 +00:00
|
|
|
var parent = jQuery("<div><div></div></div>"),
|
|
|
|
div = parent.children();
|
|
|
|
|
|
|
|
parent
|
2012-06-21 19:30:24 +00:00
|
|
|
.bind("getData", function(){ ok( false, "getData bubbled." ); })
|
|
|
|
.bind("setData", function(){ ok( false, "setData bubbled." ); })
|
|
|
|
.bind("changeData", function(){ ok( false, "changeData bubbled." ); });
|
2010-02-26 17:35:04 +00:00
|
|
|
|
|
|
|
ok( div.data("test") === undefined, "Check for no data exists" );
|
|
|
|
|
2009-11-25 17:09:53 +00:00
|
|
|
div.data("test", "success");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test"), "success", "Check for added data" );
|
2010-02-26 17:35:04 +00:00
|
|
|
|
2009-11-25 17:09:53 +00:00
|
|
|
div.data("test", "overwritten");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test"), "overwritten", "Check for overwritten data" );
|
2010-02-26 17:35:04 +00:00
|
|
|
|
2011-12-06 20:25:38 +00:00
|
|
|
equal( div.data("test", undefined).data("test"), "overwritten", "Check that .data('key',undefined) does nothing but is chainable (#5571)");
|
2010-02-26 17:35:04 +00:00
|
|
|
|
2009-11-25 17:09:53 +00:00
|
|
|
div.data("test", null);
|
|
|
|
ok( div.data("test") === null, "Check for null data");
|
|
|
|
|
2010-02-26 17:35:04 +00:00
|
|
|
ok( div.data("notexist") === undefined, "Check for no data exists" );
|
|
|
|
|
2009-11-25 17:09:53 +00:00
|
|
|
div.data("test", "overwritten");
|
2010-07-19 23:22:25 +00:00
|
|
|
var hits = {test:0}, gets = {test:0}, changes = {test:0, value:null};
|
|
|
|
|
|
|
|
|
|
|
|
function logChangeData(e,key,value) {
|
|
|
|
var dataKey = key;
|
|
|
|
if ( e.namespace ) {
|
|
|
|
dataKey = dataKey + "." + e.namespace;
|
|
|
|
}
|
|
|
|
changes[key] += value;
|
|
|
|
changes.value = jQuery.data(e.target, dataKey);
|
|
|
|
}
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
div
|
|
|
|
.bind("setData",function(e,key,value){ hits[key] += value; })
|
|
|
|
.bind("setData.foo",function(e,key,value){ hits[key] += value; })
|
2010-07-19 23:22:25 +00:00
|
|
|
.bind("changeData",logChangeData)
|
|
|
|
.bind("changeData.foo",logChangeData)
|
2009-11-25 17:09:53 +00:00
|
|
|
.bind("getData",function(e,key){ gets[key] += 1; })
|
|
|
|
.bind("getData.foo",function(e,key){ gets[key] += 3; });
|
|
|
|
|
|
|
|
div.data("test.foo", 2);
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test"), "overwritten", "Check for original data" );
|
|
|
|
equal( div.data("test.foo"), 2, "Check for namespaced data" );
|
|
|
|
equal( div.data("test.bar"), "overwritten", "Check for unmatched namespace" );
|
|
|
|
equal( hits.test, 2, "Check triggered setter functions" );
|
|
|
|
equal( gets.test, 5, "Check triggered getter functions" );
|
|
|
|
equal( changes.test, 2, "Check sets raise changeData");
|
|
|
|
equal( changes.value, 2, "Check changeData after data has been set" );
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
hits.test = 0;
|
|
|
|
gets.test = 0;
|
2010-07-19 23:22:25 +00:00
|
|
|
changes.test = 0;
|
|
|
|
changes.value = null;
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
div.data("test", 1);
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test"), 1, "Check for original data" );
|
|
|
|
equal( div.data("test.foo"), 2, "Check for namespaced data" );
|
|
|
|
equal( div.data("test.bar"), 1, "Check for unmatched namespace" );
|
|
|
|
equal( hits.test, 1, "Check triggered setter functions" );
|
|
|
|
equal( gets.test, 5, "Check triggered getter functions" );
|
|
|
|
equal( changes.test, 1, "Check sets raise changeData" );
|
|
|
|
equal( changes.value, 1, "Check changeData after data has been set" );
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
div
|
|
|
|
.bind("getData",function(e,key){ return key + "root"; })
|
|
|
|
.bind("getData.foo",function(e,key){ return key + "foo"; });
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test"), "testroot", "Check for original data" );
|
|
|
|
equal( div.data("test.foo"), "testfoo", "Check for namespaced data" );
|
|
|
|
equal( div.data("test.bar"), "testroot", "Check for unmatched namespace" );
|
2010-09-07 16:51:57 +00:00
|
|
|
|
2009-11-25 17:09:53 +00:00
|
|
|
// #3748
|
2010-09-29 13:46:25 +00:00
|
|
|
var $elem = jQuery({exists:true});
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( $elem.data("nothing"), undefined, "Non-existent data returns undefined");
|
|
|
|
equal( $elem.data("null", null).data("null"), null, "null's are preserved");
|
|
|
|
equal( $elem.data("emptyString", "").data("emptyString"), "", "Empty strings are preserved");
|
|
|
|
equal( $elem.data("false", false).data("false"), false, "false's are preserved");
|
|
|
|
equal( $elem.data("exists"), undefined, "Existing data is not returned" );
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2009-11-25 17:09:53 +00:00
|
|
|
// Clean up
|
|
|
|
$elem.removeData();
|
2011-01-09 21:52:33 +00:00
|
|
|
deepEqual( $elem[0], {exists:true}, "removeData does not clear the object" );
|
|
|
|
|
|
|
|
// manually clean up detached elements
|
|
|
|
parent.remove();
|
2009-11-25 17:09:53 +00:00
|
|
|
});
|
|
|
|
|
2010-09-20 21:47:41 +00:00
|
|
|
test("data-* attributes", function() {
|
2012-07-25 14:19:09 +00:00
|
|
|
expect(40);
|
2010-09-20 21:47:41 +00:00
|
|
|
var div = jQuery("<div>"),
|
2010-10-17 18:48:24 +00:00
|
|
|
child = jQuery("<div data-myobj='old data' data-ignored=\"DOM\" data-other='test'></div>"),
|
|
|
|
dummy = jQuery("<div data-myobj='old data' data-ignored=\"DOM\" data-other='test'></div>");
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("attr"), undefined, "Check for non-existing data-attr attribute" );
|
2010-09-20 21:47:41 +00:00
|
|
|
|
|
|
|
div.attr("data-attr", "exists");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("attr"), "exists", "Check for existing data-attr attribute" );
|
2010-10-17 15:42:53 +00:00
|
|
|
|
|
|
|
div.attr("data-attr", "exists2");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("attr"), "exists", "Check that updates to data- don't update .data()" );
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2010-09-20 21:47:41 +00:00
|
|
|
div.data("attr", "internal").attr("data-attr", "external");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("attr"), "internal", "Check for .data('attr') precedence (internal > external data-* attribute)" );
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2011-01-09 21:58:47 +00:00
|
|
|
div.remove();
|
|
|
|
|
2011-04-17 06:43:57 +00:00
|
|
|
child.appendTo("#qunit-fixture");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( child.data("myobj"), "old data", "Value accessed from data-* attribute");
|
2010-09-20 21:47:41 +00:00
|
|
|
|
|
|
|
child.data("myobj", "replaced");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( child.data("myobj"), "replaced", "Original data overwritten");
|
2010-09-20 21:47:41 +00:00
|
|
|
|
|
|
|
child.data("ignored", "cache");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( child.data("ignored"), "cache", "Cached data used before DOM data-* fallback");
|
2010-09-20 21:47:41 +00:00
|
|
|
|
2012-06-21 19:30:24 +00:00
|
|
|
var prop,
|
|
|
|
obj = child.data(),
|
|
|
|
obj2 = dummy.data(),
|
|
|
|
check = [ "myobj", "ignored", "other" ],
|
|
|
|
num = 0,
|
|
|
|
num2 = 0;
|
2010-10-17 15:42:53 +00:00
|
|
|
|
2011-01-09 21:58:47 +00:00
|
|
|
dummy.remove();
|
|
|
|
|
2010-10-17 15:42:53 +00:00
|
|
|
for ( var i = 0, l = check.length; i < l; i++ ) {
|
|
|
|
ok( obj[ check[i] ], "Make sure data- property exists when calling data-." );
|
2010-10-17 18:48:24 +00:00
|
|
|
ok( obj2[ check[i] ], "Make sure data- property exists when calling data-." );
|
2010-10-17 15:42:53 +00:00
|
|
|
}
|
|
|
|
|
2012-06-21 19:30:24 +00:00
|
|
|
for ( prop in obj ) {
|
2010-10-17 15:42:53 +00:00
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( num, check.length, "Make sure that the right number of properties came through." );
|
2010-10-17 18:48:24 +00:00
|
|
|
|
2012-06-21 19:30:24 +00:00
|
|
|
for ( prop in obj2 ) {
|
2010-10-17 18:48:24 +00:00
|
|
|
num2++;
|
|
|
|
}
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( num2, check.length, "Make sure that the right number of properties came through." );
|
2010-10-17 15:42:53 +00:00
|
|
|
|
|
|
|
child.attr("data-other", "newvalue");
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( child.data("other"), "test", "Make sure value was pulled in properly from a .data()." );
|
2010-10-17 15:42:53 +00:00
|
|
|
|
2010-09-20 21:47:41 +00:00
|
|
|
child
|
|
|
|
.attr("data-true", "true")
|
|
|
|
.attr("data-false", "false")
|
|
|
|
.attr("data-five", "5")
|
2010-09-21 00:08:57 +00:00
|
|
|
.attr("data-point", "5.5")
|
2010-09-21 12:30:12 +00:00
|
|
|
.attr("data-pointe", "5.5E3")
|
2012-07-25 14:19:09 +00:00
|
|
|
.attr("data-grande", "5.574E9")
|
2012-02-10 01:25:43 +00:00
|
|
|
.attr("data-hexadecimal", "0x42")
|
2010-09-21 04:38:26 +00:00
|
|
|
.attr("data-pointbad", "5..5")
|
|
|
|
.attr("data-pointbad2", "-.")
|
2012-07-25 14:19:09 +00:00
|
|
|
.attr("data-bigassnum", "123456789123456789123456789")
|
2010-09-21 04:51:45 +00:00
|
|
|
.attr("data-badjson", "{123}")
|
2010-09-21 12:20:31 +00:00
|
|
|
.attr("data-badjson2", "[abc]")
|
2010-09-22 11:34:31 +00:00
|
|
|
.attr("data-empty", "")
|
|
|
|
.attr("data-space", " ")
|
2010-09-20 21:47:41 +00:00
|
|
|
.attr("data-null", "null")
|
|
|
|
.attr("data-string", "test");
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2011-04-11 20:33:29 +00:00
|
|
|
strictEqual( child.data("true"), true, "Primitive true read from attribute");
|
|
|
|
strictEqual( child.data("false"), false, "Primitive false read from attribute");
|
|
|
|
strictEqual( child.data("five"), 5, "Primitive number read from attribute");
|
|
|
|
strictEqual( child.data("point"), 5.5, "Primitive number read from attribute");
|
2012-07-25 14:19:09 +00:00
|
|
|
strictEqual( child.data("pointe"), "5.5E3", "Floating point exponential number read from attribute");
|
|
|
|
strictEqual( child.data("grande"), "5.574E9", "Big exponential number read from attribute");
|
|
|
|
strictEqual( child.data("hexadecimal"), "0x42", "Hexadecimal number read from attribute");
|
2011-04-11 20:33:29 +00:00
|
|
|
strictEqual( child.data("pointbad"), "5..5", "Bad number read from attribute");
|
|
|
|
strictEqual( child.data("pointbad2"), "-.", "Bad number read from attribute");
|
2012-07-25 14:19:09 +00:00
|
|
|
strictEqual( child.data("bigassnum"), "123456789123456789123456789", "Bad bigass number read from attribute");
|
2011-04-11 20:33:29 +00:00
|
|
|
strictEqual( child.data("badjson"), "{123}", "Bad number read from attribute");
|
|
|
|
strictEqual( child.data("badjson2"), "[abc]", "Bad number read from attribute");
|
|
|
|
strictEqual( child.data("empty"), "", "Empty string read from attribute");
|
|
|
|
strictEqual( child.data("space"), " ", "Empty string read from attribute");
|
|
|
|
strictEqual( child.data("null"), null, "Primitive null read from attribute");
|
|
|
|
strictEqual( child.data("string"), "test", "Typical string read from attribute");
|
2010-09-20 21:47:41 +00:00
|
|
|
|
|
|
|
child.remove();
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2010-09-20 21:47:41 +00:00
|
|
|
// tests from metadata plugin
|
|
|
|
function testData(index, elem) {
|
|
|
|
switch (index) {
|
|
|
|
case 0:
|
2011-11-06 20:27:42 +00:00
|
|
|
equal(jQuery(elem).data("foo"), "bar", "Check foo property");
|
|
|
|
equal(jQuery(elem).data("bar"), "baz", "Check baz property");
|
2010-09-20 21:47:41 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2011-11-06 20:27:42 +00:00
|
|
|
equal(jQuery(elem).data("test"), "bar", "Check test property");
|
|
|
|
equal(jQuery(elem).data("bar"), "baz", "Check bar property");
|
2010-09-20 21:47:41 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2011-11-06 20:27:42 +00:00
|
|
|
equal(jQuery(elem).data("zoooo"), "bar", "Check zoooo property");
|
|
|
|
deepEqual(jQuery(elem).data("bar"), {"test":"baz"}, "Check bar property");
|
2010-09-20 21:47:41 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2011-11-06 20:27:42 +00:00
|
|
|
equal(jQuery(elem).data("number"), true, "Check number property");
|
|
|
|
deepEqual(jQuery(elem).data("stuff"), [2,8], "Check stuff property");
|
2010-09-20 21:47:41 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-06-21 19:30:24 +00:00
|
|
|
ok(false, ["Assertion failed on index ", index, ", with data"].join(""));
|
2010-09-20 21:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2011-04-11 20:33:29 +00:00
|
|
|
var metadata = "<ol><li class='test test2' data-foo='bar' data-bar='baz' data-arr='[1,2]'>Some stuff</li><li class='test test2' data-test='bar' data-bar='baz'>Some stuff</li><li class='test test2' data-zoooo='bar' data-bar='{\"test\":\"baz\"}'>Some stuff</li><li class='test test2' data-number=true data-stuff='[2,8]'>Some stuff</li></ol>",
|
2011-04-17 06:43:57 +00:00
|
|
|
elem = jQuery(metadata).appendTo("#qunit-fixture");
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2010-09-20 21:47:41 +00:00
|
|
|
elem.find("li").each(testData);
|
|
|
|
elem.remove();
|
|
|
|
});
|
|
|
|
|
2009-12-09 21:16:18 +00:00
|
|
|
test(".data(Object)", function() {
|
2010-09-29 13:46:25 +00:00
|
|
|
expect(4);
|
2009-12-09 21:16:18 +00:00
|
|
|
|
|
|
|
var div = jQuery("<div/>");
|
|
|
|
|
|
|
|
div.data({ "test": "in", "test2": "in2" });
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test"), "in", "Verify setting an object in data" );
|
|
|
|
equal( div.data("test2"), "in2", "Verify setting an object in data" );
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2010-09-29 13:46:25 +00:00
|
|
|
var obj = {test:"unset"},
|
|
|
|
jqobj = jQuery(obj);
|
2011-01-09 21:52:33 +00:00
|
|
|
jqobj.data("test", "unset");
|
2010-09-29 13:46:25 +00:00
|
|
|
jqobj.data({ "test": "in", "test2": "in2" });
|
2012-07-05 19:52:13 +00:00
|
|
|
equal( jQuery.data(obj)["test"], "in", "Verify setting an object on an object extends the data object" );
|
|
|
|
equal( obj["test2"], undefined, "Verify setting an object on an object does not extend the object" );
|
2011-01-09 21:52:33 +00:00
|
|
|
|
|
|
|
// manually clean up detached elements
|
|
|
|
div.remove();
|
2009-12-09 21:16:18 +00:00
|
|
|
});
|
|
|
|
|
2009-11-25 17:09:53 +00:00
|
|
|
test("jQuery.removeData", function() {
|
2011-09-20 01:16:20 +00:00
|
|
|
expect(10);
|
2009-11-25 17:09:53 +00:00
|
|
|
var div = jQuery("#foo")[0];
|
|
|
|
jQuery.data(div, "test", "testing");
|
|
|
|
jQuery.removeData(div, "test");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.data(div, "test"), undefined, "Check removal of data" );
|
2010-10-17 14:56:01 +00:00
|
|
|
|
|
|
|
jQuery.data(div, "test2", "testing");
|
|
|
|
jQuery.removeData( div );
|
|
|
|
ok( !jQuery.data(div, "test2"), "Make sure that the data property no longer exists." );
|
|
|
|
ok( !div[ jQuery.expando ], "Make sure the expando no longer exists, as well." );
|
2010-12-22 20:54:37 +00:00
|
|
|
|
2011-09-20 01:16:20 +00:00
|
|
|
jQuery.data(div, {
|
|
|
|
test3: "testing",
|
|
|
|
test4: "testing"
|
|
|
|
});
|
|
|
|
jQuery.removeData( div, "test3 test4" );
|
|
|
|
ok( !jQuery.data(div, "test3") || jQuery.data(div, "test4"), "Multiple delete with spaces." );
|
|
|
|
|
|
|
|
jQuery.data(div, {
|
|
|
|
test3: "testing",
|
|
|
|
test4: "testing"
|
|
|
|
});
|
|
|
|
jQuery.removeData( div, [ "test3", "test4" ] );
|
|
|
|
ok( !jQuery.data(div, "test3") || jQuery.data(div, "test4"), "Multiple delete by array." );
|
|
|
|
|
|
|
|
jQuery.data(div, {
|
|
|
|
"test3 test4": "testing",
|
2012-07-05 19:52:13 +00:00
|
|
|
"test3": "testing"
|
2011-09-20 01:16:20 +00:00
|
|
|
});
|
|
|
|
jQuery.removeData( div, "test3 test4" );
|
|
|
|
ok( !jQuery.data(div, "test3 test4"), "Multiple delete with spaces deleted key with exact name" );
|
|
|
|
ok( jQuery.data(div, "test3"), "Left the partial matched key alone" );
|
|
|
|
|
2010-09-29 13:46:25 +00:00
|
|
|
var obj = {};
|
|
|
|
jQuery.data(obj, "test", "testing");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery(obj).data("test"), "testing", "verify data on plain object");
|
2010-09-29 13:46:25 +00:00
|
|
|
jQuery.removeData(obj, "test");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.data(obj, "test"), undefined, "Check removal of data on plain object" );
|
2010-10-11 21:52:00 +00:00
|
|
|
|
|
|
|
jQuery.data( window, "BAD", true );
|
|
|
|
jQuery.removeData( window, "BAD" );
|
|
|
|
ok( !jQuery.data( window, "BAD" ), "Make sure that the value was not still set." );
|
2009-11-25 17:09:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test(".removeData()", function() {
|
|
|
|
expect(6);
|
|
|
|
var div = jQuery("#foo");
|
|
|
|
div.data("test", "testing");
|
|
|
|
div.removeData("test");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test"), undefined, "Check removal of data" );
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
div.data("test", "testing");
|
|
|
|
div.data("test.foo", "testing2");
|
|
|
|
div.removeData("test.bar");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test.foo"), "testing2", "Make sure data is intact" );
|
|
|
|
equal( div.data("test"), "testing", "Make sure data is intact" );
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
div.removeData("test");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test.foo"), "testing2", "Make sure data is intact" );
|
|
|
|
equal( div.data("test"), undefined, "Make sure data is intact" );
|
2009-11-25 17:09:53 +00:00
|
|
|
|
|
|
|
div.removeData("test.foo");
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( div.data("test.foo"), undefined, "Make sure data is intact" );
|
2011-02-14 22:22:23 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (window.JSON && window.JSON.stringify) {
|
|
|
|
test("JSON serialization (#8108)", function () {
|
|
|
|
expect(1);
|
|
|
|
|
2012-07-05 19:52:13 +00:00
|
|
|
var obj = { "foo": "bar" };
|
2011-02-14 22:22:23 +00:00
|
|
|
jQuery.data(obj, "hidden", true);
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( JSON.stringify(obj), "{\"foo\":\"bar\"}", "Expando is hidden from JSON.stringify" );
|
2011-02-14 22:22:23 +00:00
|
|
|
});
|
2011-04-10 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test("jQuery.data should follow html5 specification regarding camel casing", function() {
|
2011-09-07 14:13:22 +00:00
|
|
|
expect(10);
|
2011-04-10 19:17:00 +00:00
|
|
|
|
2011-09-07 14:13:22 +00:00
|
|
|
var div = jQuery("<div id='myObject' data-w-t-f='ftw' data-big-a-little-a='bouncing-b' data-foo='a' data-foo-bar='b' data-foo-bar-baz='c'></div>")
|
2011-04-10 19:17:00 +00:00
|
|
|
.prependTo("body");
|
|
|
|
|
2012-07-05 19:52:13 +00:00
|
|
|
equal( div.data()["wTF"], "ftw", "Verify single letter data-* key" );
|
|
|
|
equal( div.data()["bigALittleA"], "bouncing-b", "Verify single letter mixed data-* key" );
|
2011-04-10 19:17:00 +00:00
|
|
|
|
2012-07-05 19:52:13 +00:00
|
|
|
equal( div.data()["foo"], "a", "Verify single word data-* key" );
|
|
|
|
equal( div.data()["fooBar"], "b", "Verify multiple word data-* key" );
|
|
|
|
equal( div.data()["fooBarBaz"], "c", "Verify multiple word data-* key" );
|
2011-09-07 14:13:22 +00:00
|
|
|
|
|
|
|
equal( div.data("foo"), "a", "Verify single word data-* key" );
|
|
|
|
equal( div.data("fooBar"), "b", "Verify multiple word data-* key" );
|
|
|
|
equal( div.data("fooBarBaz"), "c", "Verify multiple word data-* key" );
|
2011-04-10 19:17:00 +00:00
|
|
|
|
2011-05-10 15:56:42 +00:00
|
|
|
div.data("foo-bar", "d");
|
|
|
|
|
2011-09-07 14:13:22 +00:00
|
|
|
equal( div.data("fooBar"), "d", "Verify updated data-* key" );
|
|
|
|
equal( div.data("foo-bar"), "d", "Verify updated data-* key" );
|
2011-05-10 15:56:42 +00:00
|
|
|
|
2011-04-10 19:17:00 +00:00
|
|
|
div.remove();
|
2011-05-10 15:56:42 +00:00
|
|
|
});
|
2011-06-07 00:18:36 +00:00
|
|
|
|
|
|
|
test("jQuery.data should not miss data with preset hyphenated property names", function() {
|
|
|
|
|
|
|
|
expect(2);
|
|
|
|
|
|
|
|
var div = jQuery("<div/>", { id: "hyphened" }).appendTo("#qunit-fixture"),
|
|
|
|
test = {
|
|
|
|
"camelBar": "camelBar",
|
|
|
|
"hyphen-foo": "hyphen-foo"
|
|
|
|
};
|
|
|
|
|
|
|
|
div.data( test );
|
|
|
|
|
|
|
|
jQuery.each( test , function(i, k) {
|
|
|
|
equal( div.data(k), k, "data with property '"+k+"' was correctly found");
|
|
|
|
});
|
|
|
|
});
|
2011-07-11 01:42:40 +00:00
|
|
|
|
|
|
|
test("jQuery.data supports interoperable hyphenated/camelCase get/set of properties with arbitrary non-null|NaN|undefined values", function() {
|
|
|
|
|
|
|
|
var div = jQuery("<div/>", { id: "hyphened" }).appendTo("#qunit-fixture"),
|
|
|
|
datas = {
|
|
|
|
"non-empty": "a string",
|
|
|
|
"empty-string": "",
|
|
|
|
"one-value": 1,
|
|
|
|
"zero-value": 0,
|
|
|
|
"an-array": [],
|
|
|
|
"an-object": {},
|
|
|
|
"bool-true": true,
|
|
|
|
"bool-false": false,
|
2011-08-05 14:17:02 +00:00
|
|
|
"some-json": '{ "foo": "bar" }',
|
|
|
|
"num-1-middle": true,
|
|
|
|
"num-end-2": true,
|
|
|
|
"2-num-start": true
|
2011-07-11 01:42:40 +00:00
|
|
|
};
|
|
|
|
|
2011-08-05 14:17:02 +00:00
|
|
|
expect( 24 );
|
2011-07-11 01:42:40 +00:00
|
|
|
|
|
|
|
jQuery.each( datas, function( key, val ) {
|
|
|
|
div.data( key, val );
|
|
|
|
|
|
|
|
deepEqual( div.data( key ), val, "get: " + key );
|
|
|
|
deepEqual( div.data( jQuery.camelCase( key ) ), val, "get: " + jQuery.camelCase( key ) );
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2011-08-05 13:43:15 +00:00
|
|
|
test("jQuery.data supports interoperable removal of hyphenated/camelCase properties", function() {
|
|
|
|
var div = jQuery("<div/>", { id: "hyphened" }).appendTo("#qunit-fixture"),
|
|
|
|
datas = {
|
|
|
|
"non-empty": "a string",
|
|
|
|
"empty-string": "",
|
|
|
|
"one-value": 1,
|
|
|
|
"zero-value": 0,
|
|
|
|
"an-array": [],
|
|
|
|
"an-object": {},
|
|
|
|
"bool-true": true,
|
|
|
|
"bool-false": false,
|
|
|
|
"some-json": '{ "foo": "bar" }'
|
|
|
|
};
|
|
|
|
|
|
|
|
expect( 27 );
|
|
|
|
|
|
|
|
jQuery.each( datas, function( key, val ) {
|
|
|
|
div.data( key, val );
|
|
|
|
|
|
|
|
deepEqual( div.data( key ), val, "get: " + key );
|
|
|
|
deepEqual( div.data( jQuery.camelCase( key ) ), val, "get: " + jQuery.camelCase( key ) );
|
|
|
|
|
|
|
|
div.removeData( key );
|
|
|
|
|
|
|
|
equal( div.data( key ), undefined, "get: " + key );
|
|
|
|
|
|
|
|
});
|
2011-08-05 14:45:05 +00:00
|
|
|
});
|
2011-08-18 14:17:12 +00:00
|
|
|
|
|
|
|
// Test originally by Moschel
|
|
|
|
test("Triggering the removeData should not throw exceptions. (#10080)", function() {
|
|
|
|
expect(1);
|
|
|
|
stop();
|
|
|
|
var frame = jQuery("#loadediframe");
|
|
|
|
jQuery(frame[0].contentWindow).bind("unload", function() {
|
|
|
|
ok(true, "called unload");
|
|
|
|
start();
|
|
|
|
});
|
|
|
|
// change the url to trigger unload
|
|
|
|
frame.attr("src", "data/iframe.html?param=true");
|
|
|
|
});
|
2011-09-19 20:13:57 +00:00
|
|
|
|
|
|
|
test( "Only check element attributes once when calling .data() - #8909", function() {
|
|
|
|
expect( 2 );
|
|
|
|
var testing = {
|
2012-07-05 19:52:13 +00:00
|
|
|
"test": "testing",
|
|
|
|
"test2": "testing"
|
2011-09-19 20:13:57 +00:00
|
|
|
},
|
|
|
|
element = jQuery( "<div data-test='testing'>" ),
|
|
|
|
node = element[ 0 ];
|
|
|
|
|
|
|
|
// set an attribute using attr to ensure it
|
|
|
|
node.setAttribute( "data-test2", "testing" );
|
|
|
|
deepEqual( element.data(), testing, "Sanity Check" );
|
|
|
|
|
|
|
|
node.setAttribute( "data-test3", "testing" );
|
|
|
|
deepEqual( element.data(), testing, "The data didn't change even though the data-* attrs did" );
|
|
|
|
|
|
|
|
// clean up data cache
|
|
|
|
element.remove();
|
|
|
|
|
|
|
|
});
|