core.js 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249
  1. module("core", { teardown: moduleTeardown });
  2. test("Basic requirements", function() {
  3. expect(7);
  4. ok( Array.prototype.push, "Array.push()" );
  5. ok( Function.prototype.apply, "Function.apply()" );
  6. ok( document.getElementById, "getElementById" );
  7. ok( document.getElementsByTagName, "getElementsByTagName" );
  8. ok( RegExp, "RegExp" );
  9. ok( jQuery, "jQuery" );
  10. ok( $, "$" );
  11. });
  12. test("jQuery()", function() {
  13. expect(29);
  14. // Basic constructor's behavior
  15. equal( jQuery().length, 0, "jQuery() === jQuery([])" );
  16. equal( jQuery(undefined).length, 0, "jQuery(undefined) === jQuery([])" );
  17. equal( jQuery(null).length, 0, "jQuery(null) === jQuery([])" );
  18. equal( jQuery("").length, 0, "jQuery('') === jQuery([])" );
  19. equal( jQuery("#").length, 0, "jQuery('#') === jQuery([])" );
  20. var obj = jQuery("div");
  21. equal( jQuery(obj).selector, "div", "jQuery(jQueryObj) == jQueryObj" );
  22. // can actually yield more than one, when iframes are included, the window is an array as well
  23. equal( jQuery(window).length, 1, "Correct number of elements generated for jQuery(window)" );
  24. var main = jQuery("#qunit-fixture");
  25. deepEqual( jQuery("div p", main).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" );
  26. /*
  27. // disabled since this test was doing nothing. i tried to fix it but i'm not sure
  28. // what the expected behavior should even be. FF returns "\n" for the text node
  29. // make sure this is handled
  30. var crlfContainer = jQuery('<p>\r\n</p>');
  31. var x = crlfContainer.contents().get(0).nodeValue;
  32. equal( x, what???, "Check for \\r and \\n in jQuery()" );
  33. */
  34. /* // Disabled until we add this functionality in
  35. var pass = true;
  36. try {
  37. jQuery("<div>Testing</div>").appendTo(document.getElementById("iframe").contentDocument.body);
  38. } catch(e){
  39. pass = false;
  40. }
  41. ok( pass, "jQuery('&lt;tag&gt;') needs optional document parameter to ease cross-frame DOM wrangling, see #968" );*/
  42. var code = jQuery("<code/>");
  43. equal( code.length, 1, "Correct number of elements generated for code" );
  44. equal( code.parent().length, 0, "Make sure that the generated HTML has no parent." );
  45. var img = jQuery("<img/>");
  46. equal( img.length, 1, "Correct number of elements generated for img" );
  47. equal( img.parent().length, 0, "Make sure that the generated HTML has no parent." );
  48. var div = jQuery("<div/><hr/><code/><b/>");
  49. equal( div.length, 4, "Correct number of elements generated for div hr code b" );
  50. equal( div.parent().length, 0, "Make sure that the generated HTML has no parent." );
  51. equal( jQuery([1,2,3]).get(1), 2, "Test passing an array to the factory" );
  52. equal( jQuery(document.body).get(0), jQuery("body").get(0), "Test passing an html node to the factory" );
  53. var exec = false;
  54. var elem = jQuery("<div/>", {
  55. width: 10,
  56. css: { paddingLeft:1, paddingRight:1 },
  57. click: function(){ ok(exec, "Click executed."); },
  58. text: "test",
  59. "class": "test2",
  60. id: "test3"
  61. });
  62. equal( elem[0].style.width, "10px", "jQuery() quick setter width");
  63. equal( elem[0].style.paddingLeft, "1px", "jQuery quick setter css");
  64. equal( elem[0].style.paddingRight, "1px", "jQuery quick setter css");
  65. equal( elem[0].childNodes.length, 1, "jQuery quick setter text");
  66. equal( elem[0].firstChild.nodeValue, "test", "jQuery quick setter text");
  67. equal( elem[0].className, "test2", "jQuery() quick setter class");
  68. equal( elem[0].id, "test3", "jQuery() quick setter id");
  69. exec = true;
  70. elem.click();
  71. // manually clean up detached elements
  72. elem.remove();
  73. for ( var i = 0; i < 3; ++i ) {
  74. elem = jQuery("<input type='text' value='TEST' />");
  75. }
  76. equal( elem[0].defaultValue, "TEST", "Ensure cached nodes are cloned properly (Bug #6655)" );
  77. // manually clean up detached elements
  78. elem.remove();
  79. equal( jQuery(" <div/> ").length, 1, "Make sure whitespace is trimmed." );
  80. equal( jQuery(" a<div/>b ").length, 1, "Make sure whitespace and other characters are trimmed." );
  81. var long = "";
  82. for ( var i = 0; i < 128; i++ ) {
  83. long += "12345678";
  84. }
  85. equal( jQuery(" <div>" + long + "</div> ").length, 1, "Make sure whitespace is trimmed on long strings." );
  86. equal( jQuery(" a<div>" + long + "</div>b ").length, 1, "Make sure whitespace and other characters are trimmed on long strings." );
  87. });
  88. test("selector state", function() {
  89. expect(31);
  90. var test;
  91. test = jQuery(undefined);
  92. equal( test.selector, "", "Empty jQuery Selector" );
  93. equal( test.context, undefined, "Empty jQuery Context" );
  94. test = jQuery(document);
  95. equal( test.selector, "", "Document Selector" );
  96. equal( test.context, document, "Document Context" );
  97. test = jQuery(document.body);
  98. equal( test.selector, "", "Body Selector" );
  99. equal( test.context, document.body, "Body Context" );
  100. test = jQuery("#qunit-fixture");
  101. equal( test.selector, "#qunit-fixture", "#qunit-fixture Selector" );
  102. equal( test.context, document, "#qunit-fixture Context" );
  103. test = jQuery("#notfoundnono");
  104. equal( test.selector, "#notfoundnono", "#notfoundnono Selector" );
  105. equal( test.context, document, "#notfoundnono Context" );
  106. test = jQuery("#qunit-fixture", document);
  107. equal( test.selector, "#qunit-fixture", "#qunit-fixture Selector" );
  108. equal( test.context, document, "#qunit-fixture Context" );
  109. test = jQuery("#qunit-fixture", document.body);
  110. equal( test.selector, "#qunit-fixture", "#qunit-fixture Selector" );
  111. equal( test.context, document.body, "#qunit-fixture Context" );
  112. // Test cloning
  113. test = jQuery(test);
  114. equal( test.selector, "#qunit-fixture", "#qunit-fixture Selector" );
  115. equal( test.context, document.body, "#qunit-fixture Context" );
  116. test = jQuery(document.body).find("#qunit-fixture");
  117. equal( test.selector, "#qunit-fixture", "#qunit-fixture find Selector" );
  118. equal( test.context, document.body, "#qunit-fixture find Context" );
  119. test = jQuery("#qunit-fixture").filter("div");
  120. equal( test.selector, "#qunit-fixture.filter(div)", "#qunit-fixture filter Selector" );
  121. equal( test.context, document, "#qunit-fixture filter Context" );
  122. test = jQuery("#qunit-fixture").not("div");
  123. equal( test.selector, "#qunit-fixture.not(div)", "#qunit-fixture not Selector" );
  124. equal( test.context, document, "#qunit-fixture not Context" );
  125. test = jQuery("#qunit-fixture").filter("div").not("div");
  126. equal( test.selector, "#qunit-fixture.filter(div).not(div)", "#qunit-fixture filter, not Selector" );
  127. equal( test.context, document, "#qunit-fixture filter, not Context" );
  128. test = jQuery("#qunit-fixture").filter("div").not("div").end();
  129. equal( test.selector, "#qunit-fixture.filter(div)", "#qunit-fixture filter, not, end Selector" );
  130. equal( test.context, document, "#qunit-fixture filter, not, end Context" );
  131. test = jQuery("#qunit-fixture").parent("body");
  132. equal( test.selector, "#qunit-fixture.parent(body)", "#qunit-fixture parent Selector" );
  133. equal( test.context, document, "#qunit-fixture parent Context" );
  134. test = jQuery("#qunit-fixture").eq(0);
  135. equal( test.selector, "#qunit-fixture.slice(0,1)", "#qunit-fixture eq Selector" );
  136. equal( test.context, document, "#qunit-fixture eq Context" );
  137. var d = "<div />";
  138. equal(
  139. jQuery(d).appendTo(jQuery(d)).selector,
  140. jQuery(d).appendTo(d).selector,
  141. "manipulation methods make same selector for jQuery objects"
  142. );
  143. });
  144. test( "globalEval", function() {
  145. expect( 3 );
  146. jQuery.globalEval( "var globalEvalTest = true;" );
  147. ok( window.globalEvalTest, "Test variable declarations are global" );
  148. window.globalEvalTest = false;
  149. jQuery.globalEval( "globalEvalTest = true;" );
  150. ok( window.globalEvalTest, "Test variable assignments are global" );
  151. window.globalEvalTest = false;
  152. jQuery.globalEval( "this.globalEvalTest = true;" );
  153. ok( window.globalEvalTest, "Test context (this) is the window object" );
  154. window.globalEvalTest = undefined;
  155. });
  156. test("noConflict", function() {
  157. expect(7);
  158. var $$ = jQuery;
  159. equal( jQuery, jQuery.noConflict(), "noConflict returned the jQuery object" );
  160. equal( jQuery, $$, "Make sure jQuery wasn't touched." );
  161. equal( $, original$, "Make sure $ was reverted." );
  162. jQuery = $ = $$;
  163. equal( jQuery.noConflict(true), $$, "noConflict returned the jQuery object" );
  164. equal( jQuery, originaljQuery, "Make sure jQuery was reverted." );
  165. equal( $, original$, "Make sure $ was reverted." );
  166. ok( $$("#qunit-fixture").html("test"), "Make sure that jQuery still works." );
  167. jQuery = $$;
  168. });
  169. test("trim", function() {
  170. expect(9);
  171. var nbsp = String.fromCharCode(160);
  172. equal( jQuery.trim("hello "), "hello", "trailing space" );
  173. equal( jQuery.trim(" hello"), "hello", "leading space" );
  174. equal( jQuery.trim(" hello "), "hello", "space on both sides" );
  175. equal( jQuery.trim(" " + nbsp + "hello " + nbsp + " "), "hello", "&nbsp;" );
  176. equal( jQuery.trim(), "", "Nothing in." );
  177. equal( jQuery.trim( undefined ), "", "Undefined" );
  178. equal( jQuery.trim( null ), "", "Null" );
  179. equal( jQuery.trim( 5 ), "5", "Number" );
  180. equal( jQuery.trim( false ), "false", "Boolean" );
  181. });
  182. test("type", function() {
  183. expect(23);
  184. equal( jQuery.type(null), "null", "null" );
  185. equal( jQuery.type(undefined), "undefined", "undefined" );
  186. equal( jQuery.type(true), "boolean", "Boolean" );
  187. equal( jQuery.type(false), "boolean", "Boolean" );
  188. equal( jQuery.type(Boolean(true)), "boolean", "Boolean" );
  189. equal( jQuery.type(0), "number", "Number" );
  190. equal( jQuery.type(1), "number", "Number" );
  191. equal( jQuery.type(Number(1)), "number", "Number" );
  192. equal( jQuery.type(""), "string", "String" );
  193. equal( jQuery.type("a"), "string", "String" );
  194. equal( jQuery.type(String("a")), "string", "String" );
  195. equal( jQuery.type({}), "object", "Object" );
  196. equal( jQuery.type(/foo/), "regexp", "RegExp" );
  197. equal( jQuery.type(new RegExp("asdf")), "regexp", "RegExp" );
  198. equal( jQuery.type([1]), "array", "Array" );
  199. equal( jQuery.type(new Date()), "date", "Date" );
  200. equal( jQuery.type(new Function("return;")), "function", "Function" );
  201. equal( jQuery.type(function(){}), "function", "Function" );
  202. equal( jQuery.type(window), "object", "Window" );
  203. equal( jQuery.type(document), "object", "Document" );
  204. equal( jQuery.type(document.body), "object", "Element" );
  205. equal( jQuery.type(document.createTextNode("foo")), "object", "TextNode" );
  206. equal( jQuery.type(document.getElementsByTagName("*")), "object", "NodeList" );
  207. });
  208. test("isPlainObject", function() {
  209. expect(15);
  210. stop();
  211. // The use case that we want to match
  212. ok(jQuery.isPlainObject({}), "{}");
  213. // Not objects shouldn't be matched
  214. ok(!jQuery.isPlainObject(""), "string");
  215. ok(!jQuery.isPlainObject(0) && !jQuery.isPlainObject(1), "number");
  216. ok(!jQuery.isPlainObject(true) && !jQuery.isPlainObject(false), "boolean");
  217. ok(!jQuery.isPlainObject(null), "null");
  218. ok(!jQuery.isPlainObject(undefined), "undefined");
  219. // Arrays shouldn't be matched
  220. ok(!jQuery.isPlainObject([]), "array");
  221. // Instantiated objects shouldn't be matched
  222. ok(!jQuery.isPlainObject(new Date), "new Date");
  223. var fn = function(){};
  224. // Functions shouldn't be matched
  225. ok(!jQuery.isPlainObject(fn), "fn");
  226. // Again, instantiated objects shouldn't be matched
  227. ok(!jQuery.isPlainObject(new fn), "new fn (no methods)");
  228. // Makes the function a little more realistic
  229. // (and harder to detect, incidentally)
  230. fn.prototype = {someMethod: function(){}};
  231. // Again, instantiated objects shouldn't be matched
  232. ok(!jQuery.isPlainObject(new fn), "new fn");
  233. // DOM Element
  234. ok(!jQuery.isPlainObject(document.createElement("div")), "DOM Element");
  235. // Window
  236. ok(!jQuery.isPlainObject(window), "window");
  237. try {
  238. jQuery.isPlainObject( window.location );
  239. ok( true, "Does not throw exceptions on host objects");
  240. } catch ( e ) {
  241. ok( false, "Does not throw exceptions on host objects -- FAIL");
  242. }
  243. try {
  244. var iframe = document.createElement("iframe");
  245. document.body.appendChild(iframe);
  246. window.iframeDone = function(otherObject){
  247. // Objects from other windows should be matched
  248. ok(jQuery.isPlainObject(new otherObject), "new otherObject");
  249. document.body.removeChild( iframe );
  250. start();
  251. };
  252. var doc = iframe.contentDocument || iframe.contentWindow.document;
  253. doc.open();
  254. doc.write("<body onload='window.parent.iframeDone(Object);'>");
  255. doc.close();
  256. } catch(e) {
  257. document.body.removeChild( iframe );
  258. ok(true, "new otherObject - iframes not supported");
  259. start();
  260. }
  261. });
  262. test("isFunction", function() {
  263. expect(19);
  264. // Make sure that false values return false
  265. ok( !jQuery.isFunction(), "No Value" );
  266. ok( !jQuery.isFunction( null ), "null Value" );
  267. ok( !jQuery.isFunction( undefined ), "undefined Value" );
  268. ok( !jQuery.isFunction( "" ), "Empty String Value" );
  269. ok( !jQuery.isFunction( 0 ), "0 Value" );
  270. // Check built-ins
  271. // Safari uses "(Internal Function)"
  272. ok( jQuery.isFunction(String), "String Function("+String+")" );
  273. ok( jQuery.isFunction(Array), "Array Function("+Array+")" );
  274. ok( jQuery.isFunction(Object), "Object Function("+Object+")" );
  275. ok( jQuery.isFunction(Function), "Function Function("+Function+")" );
  276. // When stringified, this could be misinterpreted
  277. var mystr = "function";
  278. ok( !jQuery.isFunction(mystr), "Function String" );
  279. // When stringified, this could be misinterpreted
  280. var myarr = [ "function" ];
  281. ok( !jQuery.isFunction(myarr), "Function Array" );
  282. // When stringified, this could be misinterpreted
  283. var myfunction = { "function": "test" };
  284. ok( !jQuery.isFunction(myfunction), "Function Object" );
  285. // Make sure normal functions still work
  286. var fn = function(){};
  287. ok( jQuery.isFunction(fn), "Normal Function" );
  288. var obj = document.createElement("object");
  289. // Firefox says this is a function
  290. ok( !jQuery.isFunction(obj), "Object Element" );
  291. // IE says this is an object
  292. // Since 1.3, this isn't supported (#2968)
  293. //ok( jQuery.isFunction(obj.getAttribute), "getAttribute Function" );
  294. var nodes = document.body.childNodes;
  295. // Safari says this is a function
  296. ok( !jQuery.isFunction(nodes), "childNodes Property" );
  297. var first = document.body.firstChild;
  298. // Normal elements are reported ok everywhere
  299. ok( !jQuery.isFunction(first), "A normal DOM Element" );
  300. var input = document.createElement("input");
  301. input.type = "text";
  302. document.body.appendChild( input );
  303. // IE says this is an object
  304. // Since 1.3, this isn't supported (#2968)
  305. //ok( jQuery.isFunction(input.focus), "A default function property" );
  306. document.body.removeChild( input );
  307. var a = document.createElement("a");
  308. a.href = "some-function";
  309. document.body.appendChild( a );
  310. // This serializes with the word 'function' in it
  311. ok( !jQuery.isFunction(a), "Anchor Element" );
  312. document.body.removeChild( a );
  313. // Recursive function calls have lengths and array-like properties
  314. function callme(callback){
  315. function fn(response){
  316. callback(response);
  317. }
  318. ok( jQuery.isFunction(fn), "Recursive Function Call" );
  319. fn({ some: "data" });
  320. };
  321. callme(function(){
  322. callme(function(){});
  323. });
  324. });
  325. test( "isNumeric", function() {
  326. expect( 37 );
  327. var t = jQuery.isNumeric,
  328. Traditionalists = function(n) {
  329. this.value = n;
  330. this.toString = function(){
  331. return String(this.value);
  332. };
  333. },
  334. answer = new Traditionalists( "42" ),
  335. rong = new Traditionalists( "Devo" );
  336. ok( t("-10"), "Negative integer string");
  337. ok( t("0"), "Zero string");
  338. ok( t("5"), "Positive integer string");
  339. ok( t(-16), "Negative integer number");
  340. ok( t(0), "Zero integer number");
  341. ok( t(32), "Positive integer number");
  342. ok( t("040"), "Octal integer literal string");
  343. ok( t(0144), "Octal integer literal");
  344. ok( t("0xFF"), "Hexadecimal integer literal string");
  345. ok( t(0xFFF), "Hexadecimal integer literal");
  346. ok( t("-1.6"), "Negative floating point string");
  347. ok( t("4.536"), "Positive floating point string");
  348. ok( t(-2.6), "Negative floating point number");
  349. ok( t(3.1415), "Positive floating point number");
  350. ok( t(8e5), "Exponential notation");
  351. ok( t("123e-2"), "Exponential notation string");
  352. ok( t(answer), "Custom .toString returning number");
  353. equal( t(""), false, "Empty string");
  354. equal( t(" "), false, "Whitespace characters string");
  355. equal( t("\t\t"), false, "Tab characters string");
  356. equal( t("abcdefghijklm1234567890"), false, "Alphanumeric character string");
  357. equal( t("xabcdefx"), false, "Non-numeric character string");
  358. equal( t(true), false, "Boolean true literal");
  359. equal( t(false), false, "Boolean false literal");
  360. equal( t("bcfed5.2"), false, "Number with preceding non-numeric characters");
  361. equal( t("7.2acdgs"), false, "Number with trailling non-numeric characters");
  362. equal( t(undefined), false, "Undefined value");
  363. equal( t(null), false, "Null value");
  364. equal( t(NaN), false, "NaN value");
  365. equal( t(Infinity), false, "Infinity primitive");
  366. equal( t(Number.POSITIVE_INFINITY), false, "Positive Infinity");
  367. equal( t(Number.NEGATIVE_INFINITY), false, "Negative Infinity");
  368. equal( t(rong), false, "Custom .toString returning non-number");
  369. equal( t({}), false, "Empty object");
  370. equal( t(function(){} ), false, "Instance of a function");
  371. equal( t( new Date ), false, "Instance of a Date");
  372. equal( t(function(){} ), false, "Instance of a function");
  373. });
  374. test("isXMLDoc - HTML", function() {
  375. expect(4);
  376. ok( !jQuery.isXMLDoc( document ), "HTML document" );
  377. ok( !jQuery.isXMLDoc( document.documentElement ), "HTML documentElement" );
  378. ok( !jQuery.isXMLDoc( document.body ), "HTML Body Element" );
  379. var iframe = document.createElement("iframe");
  380. document.body.appendChild( iframe );
  381. try {
  382. var body = jQuery(iframe).contents()[0];
  383. try {
  384. ok( !jQuery.isXMLDoc( body ), "Iframe body element" );
  385. } catch(e) {
  386. ok( false, "Iframe body element exception" );
  387. }
  388. } catch(e) {
  389. ok( true, "Iframe body element - iframe not working correctly" );
  390. }
  391. document.body.removeChild( iframe );
  392. });
  393. test("XSS via location.hash", function() {
  394. expect(1);
  395. stop();
  396. jQuery._check9521 = function(x){
  397. ok( x, "script called from #id-like selector with inline handler" );
  398. jQuery("#check9521").remove();
  399. delete jQuery._check9521;
  400. start();
  401. };
  402. try {
  403. // This throws an error because it's processed like an id
  404. jQuery( '#<img id="check9521" src="no-such-.gif" onerror="jQuery._check9521(false)">' ).appendTo("#qunit-fixture");
  405. } catch (err) {
  406. jQuery._check9521(true);
  407. };
  408. });
  409. if ( !isLocal ) {
  410. test("isXMLDoc - XML", function() {
  411. expect(3);
  412. stop();
  413. jQuery.get("data/dashboard.xml", function(xml) {
  414. ok( jQuery.isXMLDoc( xml ), "XML document" );
  415. ok( jQuery.isXMLDoc( xml.documentElement ), "XML documentElement" );
  416. ok( jQuery.isXMLDoc( jQuery("tab", xml)[0] ), "XML Tab Element" );
  417. start();
  418. });
  419. });
  420. }
  421. test("isWindow", function() {
  422. expect( 12 );
  423. ok( jQuery.isWindow(window), "window" );
  424. ok( !jQuery.isWindow(), "empty" );
  425. ok( !jQuery.isWindow(null), "null" );
  426. ok( !jQuery.isWindow(undefined), "undefined" );
  427. ok( !jQuery.isWindow(document), "document" );
  428. ok( !jQuery.isWindow(document.documentElement), "documentElement" );
  429. ok( !jQuery.isWindow(""), "string" );
  430. ok( !jQuery.isWindow(1), "number" );
  431. ok( !jQuery.isWindow(true), "boolean" );
  432. ok( !jQuery.isWindow({}), "object" );
  433. // HMMM
  434. // ok( !jQuery.isWindow({ setInterval: function(){} }), "fake window" );
  435. ok( !jQuery.isWindow(/window/), "regexp" );
  436. ok( !jQuery.isWindow(function(){}), "function" );
  437. });
  438. test("jQuery('html')", function() {
  439. expect(18);
  440. QUnit.reset();
  441. jQuery.foo = false;
  442. var s = jQuery("<script>jQuery.foo='test';</script>")[0];
  443. ok( s, "Creating a script" );
  444. ok( !jQuery.foo, "Make sure the script wasn't executed prematurely" );
  445. jQuery("body").append("<script>jQuery.foo='test';</script>");
  446. ok( jQuery.foo, "Executing a scripts contents in the right context" );
  447. // Test multi-line HTML
  448. var div = jQuery("<div>\r\nsome text\n<p>some p</p>\nmore text\r\n</div>")[0];
  449. equal( div.nodeName.toUpperCase(), "DIV", "Make sure we're getting a div." );
  450. equal( div.firstChild.nodeType, 3, "Text node." );
  451. equal( div.lastChild.nodeType, 3, "Text node." );
  452. equal( div.childNodes[1].nodeType, 1, "Paragraph." );
  453. equal( div.childNodes[1].firstChild.nodeType, 3, "Paragraph text." );
  454. QUnit.reset();
  455. ok( jQuery("<link rel='stylesheet'/>")[0], "Creating a link" );
  456. ok( !jQuery("<script/>")[0].parentNode, "Create a script" );
  457. ok( jQuery("<input/>").attr("type", "hidden"), "Create an input and set the type." );
  458. var j = jQuery("<span>hi</span> there <!-- mon ami -->");
  459. ok( j.length >= 2, "Check node,textnode,comment creation (some browsers delete comments)" );
  460. ok( !jQuery("<option>test</option>")[0].selected, "Make sure that options are auto-selected #2050" );
  461. ok( jQuery("<div></div>")[0], "Create a div with closing tag." );
  462. ok( jQuery("<table></table>")[0], "Create a table with closing tag." );
  463. // Test very large html string #7990
  464. var i;
  465. var li = "<li>very large html string</li>";
  466. var html = ["<ul>"];
  467. for ( i = 0; i < 50000; i += 1 ) {
  468. html.push(li);
  469. }
  470. html.push("</ul>");
  471. html = jQuery(html.join(""))[0];
  472. equal( html.nodeName.toUpperCase(), "UL");
  473. equal( html.firstChild.nodeName.toUpperCase(), "LI");
  474. equal( html.childNodes.length, 50000 );
  475. });
  476. test("jQuery('html', context)", function() {
  477. expect(1);
  478. var $div = jQuery("<div/>")[0];
  479. var $span = jQuery("<span/>", $div);
  480. equal($span.length, 1, "Verify a span created with a div context works, #1763");
  481. });
  482. if ( !isLocal ) {
  483. test("jQuery(selector, xml).text(str) - Loaded via XML document", function() {
  484. expect(2);
  485. stop();
  486. jQuery.get("data/dashboard.xml", function(xml) {
  487. // tests for #1419 where IE was a problem
  488. var tab = jQuery("tab", xml).eq(0);
  489. equal( tab.text(), "blabla", "Verify initial text correct" );
  490. tab.text("newtext");
  491. equal( tab.text(), "newtext", "Verify new text correct" );
  492. start();
  493. });
  494. });
  495. }
  496. test("end()", function() {
  497. expect(3);
  498. equal( "Yahoo", jQuery("#yahoo").parent().end().text(), "Check for end" );
  499. ok( jQuery("#yahoo").end(), "Check for end with nothing to end" );
  500. var x = jQuery("#yahoo");
  501. x.parent();
  502. equal( "Yahoo", jQuery("#yahoo").text(), "Check for non-destructive behaviour" );
  503. });
  504. test("length", function() {
  505. expect(1);
  506. equal( jQuery("#qunit-fixture p").length, 6, "Get Number of Elements Found" );
  507. });
  508. test("size()", function() {
  509. expect(1);
  510. equal( jQuery("#qunit-fixture p").size(), 6, "Get Number of Elements Found" );
  511. });
  512. test("get()", function() {
  513. expect(1);
  514. deepEqual( jQuery("#qunit-fixture p").get(), q("firstp","ap","sndp","en","sap","first"), "Get All Elements" );
  515. });
  516. test("toArray()", function() {
  517. expect(1);
  518. deepEqual( jQuery("#qunit-fixture p").toArray(),
  519. q("firstp","ap","sndp","en","sap","first"),
  520. "Convert jQuery object to an Array" )
  521. })
  522. test("inArray()", function() {
  523. expect(19);
  524. var selections = {
  525. p: q("firstp", "sap", "ap", "first"),
  526. em: q("siblingnext", "siblingfirst"),
  527. div: q("qunit-testrunner-toolbar", "nothiddendiv", "nothiddendivchild", "foo"),
  528. a: q("mark", "groups", "google", "simon1"),
  529. empty: []
  530. },
  531. tests = {
  532. p: { elem: jQuery("#ap")[0], index: 2 },
  533. em: { elem: jQuery("#siblingfirst")[0], index: 1 },
  534. div: { elem: jQuery("#nothiddendiv")[0], index: 1 },
  535. a: { elem: jQuery("#simon1")[0], index: 3 }
  536. },
  537. falseTests = {
  538. p: jQuery("#liveSpan1")[0],
  539. em: jQuery("#nothiddendiv")[0],
  540. empty: ""
  541. };
  542. jQuery.each( tests, function( key, obj ) {
  543. equal( jQuery.inArray( obj.elem, selections[ key ] ), obj.index, "elem is in the array of selections of its tag" );
  544. // Third argument (fromIndex)
  545. equal( !!~jQuery.inArray( obj.elem, selections[ key ], 5 ), false, "elem is NOT in the array of selections given a starting index greater than its position" );
  546. equal( !!~jQuery.inArray( obj.elem, selections[ key ], 1 ), true, "elem is in the array of selections given a starting index less than or equal to its position" );
  547. equal( !!~jQuery.inArray( obj.elem, selections[ key ], -3 ), true, "elem is in the array of selections given a negative index" );
  548. });
  549. jQuery.each( falseTests, function( key, elem ) {
  550. equal( !!~jQuery.inArray( elem, selections[ key ] ), false, "elem is NOT in the array of selections" );
  551. });
  552. });
  553. test("get(Number)", function() {
  554. expect(2);
  555. equal( jQuery("#qunit-fixture p").get(0), document.getElementById("firstp"), "Get A Single Element" );
  556. strictEqual( jQuery("#firstp").get(1), undefined, "Try get with index larger elements count" );
  557. });
  558. test("get(-Number)",function() {
  559. expect(2);
  560. equal( jQuery("p").get(-1), document.getElementById("first"), "Get a single element with negative index" );
  561. strictEqual( jQuery("#firstp").get(-2), undefined, "Try get with index negative index larger then elements count" );
  562. })
  563. test("each(Function)", function() {
  564. expect(1);
  565. var div = jQuery("div");
  566. div.each(function(){this.foo = "zoo";});
  567. var pass = true;
  568. for ( var i = 0; i < div.size(); i++ ) {
  569. if ( div.get(i).foo != "zoo" ) pass = false;
  570. }
  571. ok( pass, "Execute a function, Relative" );
  572. });
  573. test("slice()", function() {
  574. expect(7);
  575. var $links = jQuery("#ap a");
  576. deepEqual( $links.slice(1,2).get(), q("groups"), "slice(1,2)" );
  577. deepEqual( $links.slice(1).get(), q("groups", "anchor1", "mark"), "slice(1)" );
  578. deepEqual( $links.slice(0,3).get(), q("google", "groups", "anchor1"), "slice(0,3)" );
  579. deepEqual( $links.slice(-1).get(), q("mark"), "slice(-1)" );
  580. deepEqual( $links.eq(1).get(), q("groups"), "eq(1)" );
  581. deepEqual( $links.eq("2").get(), q("anchor1"), "eq('2')" );
  582. deepEqual( $links.eq(-1).get(), q("mark"), "eq(-1)" );
  583. });
  584. test("first()/last()", function() {
  585. expect(4);
  586. var $links = jQuery("#ap a"), $none = jQuery("asdf");
  587. deepEqual( $links.first().get(), q("google"), "first()" );
  588. deepEqual( $links.last().get(), q("mark"), "last()" );
  589. deepEqual( $none.first().get(), [], "first() none" );
  590. deepEqual( $none.last().get(), [], "last() none" );
  591. });
  592. test("map()", function() {
  593. expect(8);
  594. deepEqual(
  595. jQuery("#ap").map(function(){
  596. return jQuery(this).find("a").get();
  597. }).get(),
  598. q("google", "groups", "anchor1", "mark"),
  599. "Array Map"
  600. );
  601. deepEqual(
  602. jQuery("#ap > a").map(function(){
  603. return this.parentNode;
  604. }).get(),
  605. q("ap","ap","ap"),
  606. "Single Map"
  607. );
  608. //for #2616
  609. var keys = jQuery.map( {a:1,b:2}, function( v, k ){
  610. return k;
  611. });
  612. equal( keys.join(""), "ab", "Map the keys from a hash to an array" );
  613. var values = jQuery.map( {a:1,b:2}, function( v, k ){
  614. return v;
  615. });
  616. equal( values.join(""), "12", "Map the values from a hash to an array" );
  617. // object with length prop
  618. var values = jQuery.map( {a:1,b:2, length:3}, function( v, k ){
  619. return v;
  620. });
  621. equal( values.join(""), "123", "Map the values from a hash with a length property to an array" );
  622. var scripts = document.getElementsByTagName("script");
  623. var mapped = jQuery.map( scripts, function( v, k ){
  624. return v;
  625. });
  626. equal( mapped.length, scripts.length, "Map an array(-like) to a hash" );
  627. var nonsense = document.getElementsByTagName("asdf");
  628. var mapped = jQuery.map( nonsense, function( v, k ){
  629. return v;
  630. });
  631. equal( mapped.length, nonsense.length, "Map an empty array(-like) to a hash" );
  632. var flat = jQuery.map( Array(4), function( v, k ){
  633. return k % 2 ? k : [k,k,k];//try mixing array and regular returns
  634. });
  635. equal( flat.join(""), "00012223", "try the new flatten technique(#2616)" );
  636. });
  637. test("jQuery.merge()", function() {
  638. expect(8);
  639. var parse = jQuery.merge;
  640. deepEqual( parse([],[]), [], "Empty arrays" );
  641. deepEqual( parse([1],[2]), [1,2], "Basic" );
  642. deepEqual( parse([1,2],[3,4]), [1,2,3,4], "Basic" );
  643. deepEqual( parse([1,2],[]), [1,2], "Second empty" );
  644. deepEqual( parse([],[1,2]), [1,2], "First empty" );
  645. // Fixed at [5998], #3641
  646. deepEqual( parse([-2,-1], [0,1,2]), [-2,-1,0,1,2], "Second array including a zero (falsy)");
  647. // After fixing #5527
  648. deepEqual( parse([], [null, undefined]), [null, undefined], "Second array including null and undefined values");
  649. deepEqual( parse({length:0}, [1,2]), {length:2, 0:1, 1:2}, "First array like");
  650. });
  651. test("jQuery.extend(Object, Object)", function() {
  652. expect(28);
  653. var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
  654. options = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
  655. optionsCopy = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
  656. merged = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "x", xxx: "newstring" },
  657. deep1 = { foo: { bar: true } },
  658. deep1copy = { foo: { bar: true } },
  659. deep2 = { foo: { baz: true }, foo2: document },
  660. deep2copy = { foo: { baz: true }, foo2: document },
  661. deepmerged = { foo: { bar: true, baz: true }, foo2: document },
  662. arr = [1, 2, 3],
  663. nestedarray = { arr: arr };
  664. jQuery.extend(settings, options);
  665. deepEqual( settings, merged, "Check if extended: settings must be extended" );
  666. deepEqual( options, optionsCopy, "Check if not modified: options must not be modified" );
  667. jQuery.extend(settings, null, options);
  668. deepEqual( settings, merged, "Check if extended: settings must be extended" );
  669. deepEqual( options, optionsCopy, "Check if not modified: options must not be modified" );
  670. jQuery.extend(true, deep1, deep2);
  671. deepEqual( deep1.foo, deepmerged.foo, "Check if foo: settings must be extended" );
  672. deepEqual( deep2.foo, deep2copy.foo, "Check if not deep2: options must not be modified" );
  673. equal( deep1.foo2, document, "Make sure that a deep clone was not attempted on the document" );
  674. ok( jQuery.extend(true, {}, nestedarray).arr !== arr, "Deep extend of object must clone child array" );
  675. // #5991
  676. ok( jQuery.isArray( jQuery.extend(true, { arr: {} }, nestedarray).arr ), "Cloned array heve to be an Array" );
  677. ok( jQuery.isPlainObject( jQuery.extend(true, { arr: arr }, { arr: {} }).arr ), "Cloned object heve to be an plain object" );
  678. var empty = {};
  679. var optionsWithLength = { foo: { length: -1 } };
  680. jQuery.extend(true, empty, optionsWithLength);
  681. deepEqual( empty.foo, optionsWithLength.foo, "The length property must copy correctly" );
  682. empty = {};
  683. var optionsWithDate = { foo: { date: new Date } };
  684. jQuery.extend(true, empty, optionsWithDate);
  685. deepEqual( empty.foo, optionsWithDate.foo, "Dates copy correctly" );
  686. var myKlass = function() {};
  687. var customObject = new myKlass();
  688. var optionsWithCustomObject = { foo: { date: customObject } };
  689. empty = {};
  690. jQuery.extend(true, empty, optionsWithCustomObject);
  691. ok( empty.foo && empty.foo.date === customObject, "Custom objects copy correctly (no methods)" );
  692. // Makes the class a little more realistic
  693. myKlass.prototype = { someMethod: function(){} };
  694. empty = {};
  695. jQuery.extend(true, empty, optionsWithCustomObject);
  696. ok( empty.foo && empty.foo.date === customObject, "Custom objects copy correctly" );
  697. var ret = jQuery.extend(true, { foo: 4 }, { foo: new Number(5) } );
  698. ok( ret.foo == 5, "Wrapped numbers copy correctly" );
  699. var nullUndef;
  700. nullUndef = jQuery.extend({}, options, { xnumber2: null });
  701. ok( nullUndef.xnumber2 === null, "Check to make sure null values are copied");
  702. nullUndef = jQuery.extend({}, options, { xnumber2: undefined });
  703. ok( nullUndef.xnumber2 === options.xnumber2, "Check to make sure undefined values are not copied");
  704. nullUndef = jQuery.extend({}, options, { xnumber0: null });
  705. ok( nullUndef.xnumber0 === null, "Check to make sure null values are inserted");
  706. var target = {};
  707. var recursive = { foo:target, bar:5 };
  708. jQuery.extend(true, target, recursive);
  709. deepEqual( target, { bar:5 }, "Check to make sure a recursive obj doesn't go never-ending loop by not copying it over" );
  710. var ret = jQuery.extend(true, { foo: [] }, { foo: [0] } ); // 1907
  711. equal( ret.foo.length, 1, "Check to make sure a value with coersion 'false' copies over when necessary to fix #1907" );
  712. var ret = jQuery.extend(true, { foo: "1,2,3" }, { foo: [1, 2, 3] } );
  713. ok( typeof ret.foo != "string", "Check to make sure values equal with coersion (but not actually equal) overwrite correctly" );
  714. var ret = jQuery.extend(true, { foo:"bar" }, { foo:null } );
  715. ok( typeof ret.foo !== "undefined", "Make sure a null value doesn't crash with deep extend, for #1908" );
  716. var obj = { foo:null };
  717. jQuery.extend(true, obj, { foo:"notnull" } );
  718. equal( obj.foo, "notnull", "Make sure a null value can be overwritten" );
  719. function func() {}
  720. jQuery.extend(func, { key: "value" } );
  721. equal( func.key, "value", "Verify a function can be extended" );
  722. var defaults = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
  723. defaultsCopy = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
  724. options1 = { xnumber2: 1, xstring2: "x" },
  725. options1Copy = { xnumber2: 1, xstring2: "x" },
  726. options2 = { xstring2: "xx", xxx: "newstringx" },
  727. options2Copy = { xstring2: "xx", xxx: "newstringx" },
  728. merged2 = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "xx", xxx: "newstringx" };
  729. var settings = jQuery.extend({}, defaults, options1, options2);
  730. deepEqual( settings, merged2, "Check if extended: settings must be extended" );
  731. deepEqual( defaults, defaultsCopy, "Check if not modified: options1 must not be modified" );
  732. deepEqual( options1, options1Copy, "Check if not modified: options1 must not be modified" );
  733. deepEqual( options2, options2Copy, "Check if not modified: options2 must not be modified" );
  734. });
  735. test("jQuery.each(Object,Function)", function() {
  736. expect(14);
  737. jQuery.each( [0,1,2], function(i, n){
  738. equal( i, n, "Check array iteration" );
  739. });
  740. jQuery.each( [5,6,7], function(i, n){
  741. equal( i, n - 5, "Check array iteration" );
  742. });
  743. jQuery.each( { name: "name", lang: "lang" }, function(i, n){
  744. equal( i, n, "Check object iteration" );
  745. });
  746. var total = 0;
  747. jQuery.each([1,2,3], function(i,v){ total += v; });
  748. equal( total, 6, "Looping over an array" );
  749. total = 0;
  750. jQuery.each([1,2,3], function(i,v){ total += v; if ( i == 1 ) return false; });
  751. equal( total, 3, "Looping over an array, with break" );
  752. total = 0;
  753. jQuery.each({"a":1,"b":2,"c":3}, function(i,v){ total += v; });
  754. equal( total, 6, "Looping over an object" );
  755. total = 0;
  756. jQuery.each({"a":3,"b":3,"c":3}, function(i,v){ total += v; return false; });
  757. equal( total, 3, "Looping over an object, with break" );
  758. var f = function(){};
  759. f.foo = "bar";
  760. jQuery.each(f, function(i){
  761. f[i] = "baz";
  762. });
  763. equal( "baz", f.foo, "Loop over a function" );
  764. var stylesheet_count = 0;
  765. jQuery.each(document.styleSheets, function(i){
  766. stylesheet_count++;
  767. });
  768. //html5shiv may add 1-2 stylesheets
  769. ok(stylesheet_count > 1 && stylesheet_count < 5, "should not throw an error in IE while looping over document.styleSheets and return proper amount");
  770. });
  771. test("jQuery.makeArray", function(){
  772. expect(17);
  773. equal( jQuery.makeArray(jQuery("html>*"))[0].nodeName.toUpperCase(), "HEAD", "Pass makeArray a jQuery object" );
  774. equal( jQuery.makeArray(document.getElementsByName("PWD")).slice(0,1)[0].name, "PWD", "Pass makeArray a nodelist" );
  775. equal( (function(){ return jQuery.makeArray(arguments); })(1,2).join(""), "12", "Pass makeArray an arguments array" );
  776. equal( jQuery.makeArray([1,2,3]).join(""), "123", "Pass makeArray a real array" );
  777. equal( jQuery.makeArray().length, 0, "Pass nothing to makeArray and expect an empty array" );
  778. equal( jQuery.makeArray( 0 )[0], 0 , "Pass makeArray a number" );
  779. equal( jQuery.makeArray( "foo" )[0], "foo", "Pass makeArray a string" );
  780. equal( jQuery.makeArray( true )[0].constructor, Boolean, "Pass makeArray a boolean" );
  781. equal( jQuery.makeArray( document.createElement("div") )[0].nodeName.toUpperCase(), "DIV", "Pass makeArray a single node" );
  782. equal( jQuery.makeArray( {length:2, 0:"a", 1:"b"} ).join(""), "ab", "Pass makeArray an array like map (with length)" );
  783. ok( !!jQuery.makeArray( document.documentElement.childNodes ).slice(0,1)[0].nodeName, "Pass makeArray a childNodes array" );
  784. // function, is tricky as it has length
  785. equal( jQuery.makeArray( function(){ return 1;} )[0](), 1, "Pass makeArray a function" );
  786. //window, also has length
  787. equal( jQuery.makeArray(window)[0], window, "Pass makeArray the window" );
  788. equal( jQuery.makeArray(/a/)[0].constructor, RegExp, "Pass makeArray a regex" );
  789. ok( jQuery.makeArray(document.getElementById("form")).length >= 13, "Pass makeArray a form (treat as elements)" );
  790. // For #5610
  791. deepEqual( jQuery.makeArray({length: "0"}), [], "Make sure object is coerced properly.");
  792. deepEqual( jQuery.makeArray({length: "5"}), [], "Make sure object is coerced properly.");
  793. });
  794. test("jQuery.inArray", function(){
  795. expect(3);
  796. equal( jQuery.inArray( 0, false ), -1 , "Search in 'false' as array returns -1 and doesn't throw exception" );
  797. equal( jQuery.inArray( 0, null ), -1 , "Search in 'null' as array returns -1 and doesn't throw exception" );
  798. equal( jQuery.inArray( 0, undefined ), -1 , "Search in 'undefined' as array returns -1 and doesn't throw exception" );
  799. });
  800. test("jQuery.isEmptyObject", function(){
  801. expect(2);
  802. equal(true, jQuery.isEmptyObject({}), "isEmptyObject on empty object literal" );
  803. equal(false, jQuery.isEmptyObject({a:1}), "isEmptyObject on non-empty object literal" );
  804. // What about this ?
  805. // equal(true, jQuery.isEmptyObject(null), "isEmptyObject on null" );
  806. });
  807. test("jQuery.proxy", function(){
  808. expect(7);
  809. var test = function(){ equal( this, thisObject, "Make sure that scope is set properly." ); };
  810. var thisObject = { foo: "bar", method: test };
  811. // Make sure normal works
  812. test.call( thisObject );
  813. // Basic scoping
  814. jQuery.proxy( test, thisObject )();
  815. // Another take on it
  816. jQuery.proxy( thisObject, "method" )();
  817. // Make sure it doesn't freak out
  818. equal( jQuery.proxy( null, thisObject ), undefined, "Make sure no function was returned." );
  819. // Partial application
  820. var test2 = function( a ){ equal( a, "pre-applied", "Ensure arguments can be pre-applied." ); };
  821. jQuery.proxy( test2, null, "pre-applied" )();
  822. // Partial application w/ normal arguments
  823. var test3 = function( a, b ){ equal( b, "normal", "Ensure arguments can be pre-applied and passed as usual." ); };
  824. jQuery.proxy( test3, null, "pre-applied" )( "normal" );
  825. // Test old syntax
  826. var test4 = { meth: function( a ){ equal( a, "boom", "Ensure old syntax works." ); } };
  827. jQuery.proxy( test4, "meth" )( "boom" );
  828. });
  829. test("jQuery.parseJSON", function(){
  830. expect(8);
  831. equal( jQuery.parseJSON(), null, "Nothing in, null out." );
  832. equal( jQuery.parseJSON( null ), null, "Nothing in, null out." );
  833. equal( jQuery.parseJSON( "" ), null, "Nothing in, null out." );
  834. deepEqual( jQuery.parseJSON("{}"), {}, "Plain object parsing." );
  835. deepEqual( jQuery.parseJSON("{\"test\":1}"), {"test":1}, "Plain object parsing." );
  836. deepEqual( jQuery.parseJSON("\n{\"test\":1}"), {"test":1}, "Make sure leading whitespaces are handled." );
  837. try {
  838. jQuery.parseJSON("{a:1}");
  839. ok( false, "Test malformed JSON string." );
  840. } catch( e ) {
  841. ok( true, "Test malformed JSON string." );
  842. }
  843. try {
  844. jQuery.parseJSON("{'a':1}");
  845. ok( false, "Test malformed JSON string." );
  846. } catch( e ) {
  847. ok( true, "Test malformed JSON string." );
  848. }
  849. });
  850. test("jQuery.parseXML", 4, function(){
  851. var xml, tmp;
  852. try {
  853. xml = jQuery.parseXML( "<p>A <b>well-formed</b> xml string</p>" );
  854. tmp = xml.getElementsByTagName( "p" )[ 0 ];
  855. ok( !!tmp, "<p> present in document" );
  856. tmp = tmp.getElementsByTagName( "b" )[ 0 ];
  857. ok( !!tmp, "<b> present in document" );
  858. strictEqual( tmp.childNodes[ 0 ].nodeValue, "well-formed", "<b> text is as expected" );
  859. } catch (e) {
  860. strictEqual( e, undefined, "unexpected error" );
  861. }
  862. try {
  863. xml = jQuery.parseXML( "<p>Not a <<b>well-formed</b> xml string</p>" );
  864. ok( false, "invalid xml not detected" );
  865. } catch( e ) {
  866. strictEqual( e.message, "Invalid XML: <p>Not a <<b>well-formed</b> xml string</p>", "invalid xml detected" );
  867. }
  868. });
  869. test("jQuery.sub() - Static Methods", function(){
  870. expect(18);
  871. var Subclass = jQuery.sub();
  872. Subclass.extend({
  873. topLevelMethod: function() {return this.debug;},
  874. debug: false,
  875. config: {
  876. locale: "en_US"
  877. },
  878. setup: function(config) {
  879. this.extend(true, this.config, config);
  880. }
  881. });
  882. Subclass.fn.extend({subClassMethod: function() { return this;}});
  883. //Test Simple Subclass
  884. ok(Subclass.topLevelMethod() === false, "Subclass.topLevelMethod thought debug was true");
  885. ok(Subclass.config.locale == "en_US", Subclass.config.locale + " is wrong!");
  886. deepEqual(Subclass.config.test, undefined, "Subclass.config.test is set incorrectly");
  887. equal(jQuery.ajax, Subclass.ajax, "The subclass failed to get all top level methods");
  888. //Create a SubSubclass
  889. var SubSubclass = Subclass.sub();
  890. //Make Sure the SubSubclass inherited properly
  891. ok(SubSubclass.topLevelMethod() === false, "SubSubclass.topLevelMethod thought debug was true");
  892. ok(SubSubclass.config.locale == "en_US", SubSubclass.config.locale + " is wrong!");
  893. deepEqual(SubSubclass.config.test, undefined, "SubSubclass.config.test is set incorrectly");
  894. equal(jQuery.ajax, SubSubclass.ajax, "The subsubclass failed to get all top level methods");
  895. //Modify The Subclass and test the Modifications
  896. SubSubclass.fn.extend({subSubClassMethod: function() { return this;}});
  897. SubSubclass.setup({locale: "es_MX", test: "worked"});
  898. SubSubclass.debug = true;
  899. SubSubclass.ajax = function() {return false;};
  900. ok(SubSubclass.topLevelMethod(), "SubSubclass.topLevelMethod thought debug was false");
  901. deepEqual(SubSubclass(document).subClassMethod, Subclass.fn.subClassMethod, "Methods Differ!");
  902. ok(SubSubclass.config.locale == "es_MX", SubSubclass.config.locale + " is wrong!");
  903. ok(SubSubclass.config.test == "worked", "SubSubclass.config.test is set incorrectly");
  904. notEqual(jQuery.ajax, SubSubclass.ajax, "The subsubclass failed to get all top level methods");
  905. //This shows that the modifications to the SubSubClass did not bubble back up to it's superclass
  906. ok(Subclass.topLevelMethod() === false, "Subclass.topLevelMethod thought debug was true");
  907. ok(Subclass.config.locale == "en_US", Subclass.config.locale + " is wrong!");
  908. deepEqual(Subclass.config.test, undefined, "Subclass.config.test is set incorrectly");
  909. deepEqual(Subclass(document).subSubClassMethod, undefined, "subSubClassMethod set incorrectly");
  910. equal(jQuery.ajax, Subclass.ajax, "The subclass failed to get all top level methods");
  911. });
  912. test("jQuery.sub() - .fn Methods", function(){
  913. expect(378);
  914. var Subclass = jQuery.sub(),
  915. SubclassSubclass = Subclass.sub(),
  916. jQueryDocument = jQuery(document),
  917. selectors, contexts, methods, method, arg, description;
  918. jQueryDocument.toString = function(){ return "jQueryDocument"; };
  919. Subclass.fn.subclassMethod = function(){};
  920. SubclassSubclass.fn.subclassSubclassMethod = function(){};
  921. selectors = [
  922. "body",
  923. "html, body",
  924. "<div></div>"
  925. ];
  926. methods = [ // all methods that return a new jQuery instance
  927. ["eq", 1],
  928. ["add", document],
  929. ["end"],
  930. ["has"],
  931. ["closest", "div"],
  932. ["filter", document],
  933. ["find", "div"]
  934. ];
  935. contexts = [undefined, document, jQueryDocument];
  936. jQuery.each(selectors, function(i, selector){
  937. jQuery.each(methods, function(){
  938. method = this[0];
  939. arg = this[1];
  940. jQuery.each(contexts, function(i, context){
  941. description = "(\""+selector+"\", "+context+")."+method+"("+(arg||"")+")";
  942. deepEqual(
  943. jQuery(selector, context)[method](arg).subclassMethod, undefined,
  944. "jQuery"+description+" doesn't have Subclass methods"
  945. );
  946. deepEqual(
  947. jQuery(selector, context)[method](arg).subclassSubclassMethod, undefined,
  948. "jQuery"+description+" doesn't have SubclassSubclass methods"
  949. );
  950. deepEqual(
  951. Subclass(selector, context)[method](arg).subclassMethod, Subclass.fn.subclassMethod,
  952. "Subclass"+description+" has Subclass methods"
  953. );
  954. deepEqual(
  955. Subclass(selector, context)[method](arg).subclassSubclassMethod, undefined,
  956. "Subclass"+description+" doesn't have SubclassSubclass methods"
  957. );
  958. deepEqual(
  959. SubclassSubclass(selector, context)[method](arg).subclassMethod, Subclass.fn.subclassMethod,
  960. "SubclassSubclass"+description+" has Subclass methods"
  961. );
  962. deepEqual(
  963. SubclassSubclass(selector, context)[method](arg).subclassSubclassMethod, SubclassSubclass.fn.subclassSubclassMethod,
  964. "SubclassSubclass"+description+" has SubclassSubclass methods"
  965. );
  966. });
  967. });
  968. });
  969. });
  970. test("jQuery.camelCase()", function() {
  971. var tests = {
  972. "foo-bar": "fooBar",
  973. "foo-bar-baz": "fooBarBaz",
  974. "girl-u-want": "girlUWant",
  975. "the-4th-dimension": "the4thDimension",
  976. "-o-tannenbaum": "OTannenbaum",
  977. "-moz-illa": "MozIlla",
  978. "-ms-take": "msTake"
  979. };
  980. expect(7);
  981. jQuery.each( tests, function( key, val ) {
  982. equal( jQuery.camelCase( key ), val, "Converts: " + key + " => " + val );
  983. });
  984. });