qunit.js 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597
  1. /**
  2. * QUnit v1.2.0 - A JavaScript Unit Testing Framework
  3. *
  4. * http://docs.jquery.com/QUnit
  5. *
  6. * Copyright (c) 2011 John Resig, Jörn Zaefferer
  7. * Dual licensed under the MIT (MIT-LICENSE.txt)
  8. * or GPL (GPL-LICENSE.txt) licenses.
  9. */
  10. (function(window) {
  11. var defined = {
  12. setTimeout: typeof window.setTimeout !== "undefined",
  13. sessionStorage: (function() {
  14. try {
  15. return !!sessionStorage.getItem;
  16. } catch(e) {
  17. return false;
  18. }
  19. })()
  20. };
  21. var testId = 0,
  22. toString = Object.prototype.toString,
  23. hasOwn = Object.prototype.hasOwnProperty;
  24. var Test = function(name, testName, expected, testEnvironmentArg, async, callback) {
  25. this.name = name;
  26. this.testName = testName;
  27. this.expected = expected;
  28. this.testEnvironmentArg = testEnvironmentArg;
  29. this.async = async;
  30. this.callback = callback;
  31. this.assertions = [];
  32. };
  33. Test.prototype = {
  34. init: function() {
  35. var tests = id("qunit-tests");
  36. if (tests) {
  37. var b = document.createElement("strong");
  38. b.innerHTML = "Running " + this.name;
  39. var li = document.createElement("li");
  40. li.appendChild( b );
  41. li.className = "running";
  42. li.id = this.id = "test-output" + testId++;
  43. tests.appendChild( li );
  44. }
  45. },
  46. setup: function() {
  47. if (this.module != config.previousModule) {
  48. if ( config.previousModule ) {
  49. runLoggingCallbacks('moduleDone', QUnit, {
  50. name: config.previousModule,
  51. failed: config.moduleStats.bad,
  52. passed: config.moduleStats.all - config.moduleStats.bad,
  53. total: config.moduleStats.all
  54. } );
  55. }
  56. config.previousModule = this.module;
  57. config.moduleStats = { all: 0, bad: 0 };
  58. runLoggingCallbacks( 'moduleStart', QUnit, {
  59. name: this.module
  60. } );
  61. }
  62. config.current = this;
  63. this.testEnvironment = extend({
  64. setup: function() {},
  65. teardown: function() {}
  66. }, this.moduleTestEnvironment);
  67. if (this.testEnvironmentArg) {
  68. extend(this.testEnvironment, this.testEnvironmentArg);
  69. }
  70. runLoggingCallbacks( 'testStart', QUnit, {
  71. name: this.testName,
  72. module: this.module
  73. });
  74. // allow utility functions to access the current test environment
  75. // TODO why??
  76. QUnit.current_testEnvironment = this.testEnvironment;
  77. try {
  78. if ( !config.pollution ) {
  79. saveGlobal();
  80. }
  81. this.testEnvironment.setup.call(this.testEnvironment);
  82. } catch(e) {
  83. QUnit.ok( false, "Setup failed on " + this.testName + ": " + e.message );
  84. }
  85. },
  86. run: function() {
  87. config.current = this;
  88. if ( this.async ) {
  89. QUnit.stop();
  90. }
  91. if ( config.notrycatch ) {
  92. this.callback.call(this.testEnvironment);
  93. return;
  94. }
  95. try {
  96. this.callback.call(this.testEnvironment);
  97. } catch(e) {
  98. fail("Test " + this.testName + " died, exception and test follows", e, this.callback);
  99. QUnit.ok( false, "Died on test #" + (this.assertions.length + 1) + ": " + e.message + " - " + QUnit.jsDump.parse(e) );
  100. // else next test will carry the responsibility
  101. saveGlobal();
  102. // Restart the tests if they're blocking
  103. if ( config.blocking ) {
  104. QUnit.start();
  105. }
  106. }
  107. },
  108. teardown: function() {
  109. config.current = this;
  110. try {
  111. this.testEnvironment.teardown.call(this.testEnvironment);
  112. checkPollution();
  113. } catch(e) {
  114. QUnit.ok( false, "Teardown failed on " + this.testName + ": " + e.message );
  115. }
  116. },
  117. finish: function() {
  118. config.current = this;
  119. if ( this.expected != null && this.expected != this.assertions.length ) {
  120. QUnit.ok( false, "Expected " + this.expected + " assertions, but " + this.assertions.length + " were run" );
  121. }
  122. var good = 0, bad = 0,
  123. tests = id("qunit-tests");
  124. config.stats.all += this.assertions.length;
  125. config.moduleStats.all += this.assertions.length;
  126. if ( tests ) {
  127. var ol = document.createElement("ol");
  128. for ( var i = 0; i < this.assertions.length; i++ ) {
  129. var assertion = this.assertions[i];
  130. var li = document.createElement("li");
  131. li.className = assertion.result ? "pass" : "fail";
  132. li.innerHTML = assertion.message || (assertion.result ? "okay" : "failed");
  133. ol.appendChild( li );
  134. if ( assertion.result ) {
  135. good++;
  136. } else {
  137. bad++;
  138. config.stats.bad++;
  139. config.moduleStats.bad++;
  140. }
  141. }
  142. // store result when possible
  143. if ( QUnit.config.reorder && defined.sessionStorage ) {
  144. if (bad) {
  145. sessionStorage.setItem("qunit-" + this.module + "-" + this.testName, bad);
  146. } else {
  147. sessionStorage.removeItem("qunit-" + this.module + "-" + this.testName);
  148. }
  149. }
  150. if (bad == 0) {
  151. ol.style.display = "none";
  152. }
  153. var b = document.createElement("strong");
  154. b.innerHTML = this.name + " <b class='counts'>(<b class='failed'>" + bad + "</b>, <b class='passed'>" + good + "</b>, " + this.assertions.length + ")</b>";
  155. var a = document.createElement("a");
  156. a.innerHTML = "Rerun";
  157. a.href = QUnit.url({ filter: getText([b]).replace(/\([^)]+\)$/, "").replace(/(^\s*|\s*$)/g, "") });
  158. addEvent(b, "click", function() {
  159. var next = b.nextSibling.nextSibling,
  160. display = next.style.display;
  161. next.style.display = display === "none" ? "block" : "none";
  162. });
  163. addEvent(b, "dblclick", function(e) {
  164. var target = e && e.target ? e.target : window.event.srcElement;
  165. if ( target.nodeName.toLowerCase() == "span" || target.nodeName.toLowerCase() == "b" ) {
  166. target = target.parentNode;
  167. }
  168. if ( window.location && target.nodeName.toLowerCase() === "strong" ) {
  169. window.location = QUnit.url({ filter: getText([target]).replace(/\([^)]+\)$/, "").replace(/(^\s*|\s*$)/g, "") });
  170. }
  171. });
  172. var li = id(this.id);
  173. li.className = bad ? "fail" : "pass";
  174. li.removeChild( li.firstChild );
  175. li.appendChild( b );
  176. li.appendChild( a );
  177. li.appendChild( ol );
  178. } else {
  179. for ( var i = 0; i < this.assertions.length; i++ ) {
  180. if ( !this.assertions[i].result ) {
  181. bad++;
  182. config.stats.bad++;
  183. config.moduleStats.bad++;
  184. }
  185. }
  186. }
  187. try {
  188. QUnit.reset();
  189. } catch(e) {
  190. fail("reset() failed, following Test " + this.testName + ", exception and reset fn follows", e, QUnit.reset);
  191. }
  192. runLoggingCallbacks( 'testDone', QUnit, {
  193. name: this.testName,
  194. module: this.module,
  195. failed: bad,
  196. passed: this.assertions.length - bad,
  197. total: this.assertions.length
  198. } );
  199. },
  200. queue: function() {
  201. var test = this;
  202. synchronize(function() {
  203. test.init();
  204. });
  205. function run() {
  206. // each of these can by async
  207. synchronize(function() {
  208. test.setup();
  209. });
  210. synchronize(function() {
  211. test.run();
  212. });
  213. synchronize(function() {
  214. test.teardown();
  215. });
  216. synchronize(function() {
  217. test.finish();
  218. });
  219. }
  220. // defer when previous test run passed, if storage is available
  221. var bad = QUnit.config.reorder && defined.sessionStorage && +sessionStorage.getItem("qunit-" + this.module + "-" + this.testName);
  222. if (bad) {
  223. run();
  224. } else {
  225. synchronize(run, true);
  226. };
  227. }
  228. };
  229. var QUnit = {
  230. // call on start of module test to prepend name to all tests
  231. module: function(name, testEnvironment) {
  232. config.currentModule = name;
  233. config.currentModuleTestEnviroment = testEnvironment;
  234. },
  235. asyncTest: function(testName, expected, callback) {
  236. if ( arguments.length === 2 ) {
  237. callback = expected;
  238. expected = null;
  239. }
  240. QUnit.test(testName, expected, callback, true);
  241. },
  242. test: function(testName, expected, callback, async) {
  243. var name = '<span class="test-name">' + testName + '</span>', testEnvironmentArg;
  244. if ( arguments.length === 2 ) {
  245. callback = expected;
  246. expected = null;
  247. }
  248. // is 2nd argument a testEnvironment?
  249. if ( expected && typeof expected === 'object') {
  250. testEnvironmentArg = expected;
  251. expected = null;
  252. }
  253. if ( config.currentModule ) {
  254. name = '<span class="module-name">' + config.currentModule + "</span>: " + name;
  255. }
  256. if ( !validTest(config.currentModule + ": " + testName) ) {
  257. return;
  258. }
  259. var test = new Test(name, testName, expected, testEnvironmentArg, async, callback);
  260. test.module = config.currentModule;
  261. test.moduleTestEnvironment = config.currentModuleTestEnviroment;
  262. test.queue();
  263. },
  264. /**
  265. * Specify the number of expected assertions to gurantee that failed test (no assertions are run at all) don't slip through.
  266. */
  267. expect: function(asserts) {
  268. config.current.expected = asserts;
  269. },
  270. /**
  271. * Asserts true.
  272. * @example ok( "asdfasdf".length > 5, "There must be at least 5 chars" );
  273. */
  274. ok: function(a, msg) {
  275. a = !!a;
  276. var details = {
  277. result: a,
  278. message: msg
  279. };
  280. msg = escapeInnerText(msg);
  281. runLoggingCallbacks( 'log', QUnit, details );
  282. config.current.assertions.push({
  283. result: a,
  284. message: msg
  285. });
  286. },
  287. /**
  288. * Checks that the first two arguments are equal, with an optional message.
  289. * Prints out both actual and expected values.
  290. *
  291. * Prefered to ok( actual == expected, message )
  292. *
  293. * @example equal( format("Received {0} bytes.", 2), "Received 2 bytes." );
  294. *
  295. * @param Object actual
  296. * @param Object expected
  297. * @param String message (optional)
  298. */
  299. equal: function(actual, expected, message) {
  300. QUnit.push(expected == actual, actual, expected, message);
  301. },
  302. notEqual: function(actual, expected, message) {
  303. QUnit.push(expected != actual, actual, expected, message);
  304. },
  305. deepEqual: function(actual, expected, message) {
  306. QUnit.push(QUnit.equiv(actual, expected), actual, expected, message);
  307. },
  308. notDeepEqual: function(actual, expected, message) {
  309. QUnit.push(!QUnit.equiv(actual, expected), actual, expected, message);
  310. },
  311. strictEqual: function(actual, expected, message) {
  312. QUnit.push(expected === actual, actual, expected, message);
  313. },
  314. notStrictEqual: function(actual, expected, message) {
  315. QUnit.push(expected !== actual, actual, expected, message);
  316. },
  317. raises: function(block, expected, message) {
  318. var actual, ok = false;
  319. if (typeof expected === 'string') {
  320. message = expected;
  321. expected = null;
  322. }
  323. try {
  324. block();
  325. } catch (e) {
  326. actual = e;
  327. }
  328. if (actual) {
  329. // we don't want to validate thrown error
  330. if (!expected) {
  331. ok = true;
  332. // expected is a regexp
  333. } else if (QUnit.objectType(expected) === "regexp") {
  334. ok = expected.test(actual);
  335. // expected is a constructor
  336. } else if (actual instanceof expected) {
  337. ok = true;
  338. // expected is a validation function which returns true is validation passed
  339. } else if (expected.call({}, actual) === true) {
  340. ok = true;
  341. }
  342. }
  343. QUnit.ok(ok, message);
  344. },
  345. start: function(count) {
  346. config.semaphore -= count || 1;
  347. if (config.semaphore > 0) {
  348. // don't start until equal number of stop-calls
  349. return;
  350. }
  351. if (config.semaphore < 0) {
  352. // ignore if start is called more often then stop
  353. config.semaphore = 0;
  354. }
  355. // A slight delay, to avoid any current callbacks
  356. if ( defined.setTimeout ) {
  357. window.setTimeout(function() {
  358. if (config.semaphore > 0) {
  359. return;
  360. }
  361. if ( config.timeout ) {
  362. clearTimeout(config.timeout);
  363. }
  364. config.blocking = false;
  365. process(true);
  366. }, 13);
  367. } else {
  368. config.blocking = false;
  369. process(true);
  370. }
  371. },
  372. stop: function(count) {
  373. config.semaphore += count || 1;
  374. config.blocking = true;
  375. if ( config.testTimeout && defined.setTimeout ) {
  376. clearTimeout(config.timeout);
  377. config.timeout = window.setTimeout(function() {
  378. QUnit.ok( false, "Test timed out" );
  379. config.semaphore = 1;
  380. QUnit.start();
  381. }, config.testTimeout);
  382. }
  383. }
  384. };
  385. //We want access to the constructor's prototype
  386. (function() {
  387. function F(){};
  388. F.prototype = QUnit;
  389. QUnit = new F();
  390. //Make F QUnit's constructor so that we can add to the prototype later
  391. QUnit.constructor = F;
  392. })();
  393. // Backwards compatibility, deprecated
  394. QUnit.equals = QUnit.equal;
  395. QUnit.same = QUnit.deepEqual;
  396. // Maintain internal state
  397. var config = {
  398. // The queue of tests to run
  399. queue: [],
  400. // block until document ready
  401. blocking: true,
  402. // when enabled, show only failing tests
  403. // gets persisted through sessionStorage and can be changed in UI via checkbox
  404. hidepassed: false,
  405. // by default, run previously failed tests first
  406. // very useful in combination with "Hide passed tests" checked
  407. reorder: true,
  408. // by default, modify document.title when suite is done
  409. altertitle: true,
  410. urlConfig: ['noglobals', 'notrycatch'],
  411. //logging callback queues
  412. begin: [],
  413. done: [],
  414. log: [],
  415. testStart: [],
  416. testDone: [],
  417. moduleStart: [],
  418. moduleDone: []
  419. };
  420. // Load paramaters
  421. (function() {
  422. var location = window.location || { search: "", protocol: "file:" },
  423. params = location.search.slice( 1 ).split( "&" ),
  424. length = params.length,
  425. urlParams = {},
  426. current;
  427. if ( params[ 0 ] ) {
  428. for ( var i = 0; i < length; i++ ) {
  429. current = params[ i ].split( "=" );
  430. current[ 0 ] = decodeURIComponent( current[ 0 ] );
  431. // allow just a key to turn on a flag, e.g., test.html?noglobals
  432. current[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;
  433. urlParams[ current[ 0 ] ] = current[ 1 ];
  434. }
  435. }
  436. QUnit.urlParams = urlParams;
  437. config.filter = urlParams.filter;
  438. // Figure out if we're running the tests from a server or not
  439. QUnit.isLocal = !!(location.protocol === 'file:');
  440. })();
  441. // Expose the API as global variables, unless an 'exports'
  442. // object exists, in that case we assume we're in CommonJS
  443. if ( typeof exports === "undefined" || typeof require === "undefined" ) {
  444. extend(window, QUnit);
  445. window.QUnit = QUnit;
  446. } else {
  447. extend(exports, QUnit);
  448. exports.QUnit = QUnit;
  449. }
  450. // define these after exposing globals to keep them in these QUnit namespace only
  451. extend(QUnit, {
  452. config: config,
  453. // Initialize the configuration options
  454. init: function() {
  455. extend(config, {
  456. stats: { all: 0, bad: 0 },
  457. moduleStats: { all: 0, bad: 0 },
  458. started: +new Date,
  459. updateRate: 1000,
  460. blocking: false,
  461. autostart: true,
  462. autorun: false,
  463. filter: "",
  464. queue: [],
  465. semaphore: 0
  466. });
  467. var tests = id( "qunit-tests" ),
  468. banner = id( "qunit-banner" ),
  469. result = id( "qunit-testresult" );
  470. if ( tests ) {
  471. tests.innerHTML = "";
  472. }
  473. if ( banner ) {
  474. banner.className = "";
  475. }
  476. if ( result ) {
  477. result.parentNode.removeChild( result );
  478. }
  479. if ( tests ) {
  480. result = document.createElement( "p" );
  481. result.id = "qunit-testresult";
  482. result.className = "result";
  483. tests.parentNode.insertBefore( result, tests );
  484. result.innerHTML = 'Running...<br/>&nbsp;';
  485. }
  486. },
  487. /**
  488. * Resets the test setup. Useful for tests that modify the DOM.
  489. *
  490. * If jQuery is available, uses jQuery's html(), otherwise just innerHTML.
  491. */
  492. reset: function() {
  493. if ( window.jQuery ) {
  494. jQuery( "#qunit-fixture" ).html( config.fixture );
  495. } else {
  496. var main = id( 'qunit-fixture' );
  497. if ( main ) {
  498. main.innerHTML = config.fixture;
  499. }
  500. }
  501. },
  502. /**
  503. * Trigger an event on an element.
  504. *
  505. * @example triggerEvent( document.body, "click" );
  506. *
  507. * @param DOMElement elem
  508. * @param String type
  509. */
  510. triggerEvent: function( elem, type, event ) {
  511. if ( document.createEvent ) {
  512. event = document.createEvent("MouseEvents");
  513. event.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,
  514. 0, 0, 0, 0, 0, false, false, false, false, 0, null);
  515. elem.dispatchEvent( event );
  516. } else if ( elem.fireEvent ) {
  517. elem.fireEvent("on"+type);
  518. }
  519. },
  520. // Safe object type checking
  521. is: function( type, obj ) {
  522. return QUnit.objectType( obj ) == type;
  523. },
  524. objectType: function( obj ) {
  525. if (typeof obj === "undefined") {
  526. return "undefined";
  527. // consider: typeof null === object
  528. }
  529. if (obj === null) {
  530. return "null";
  531. }
  532. var type = toString.call( obj ).match(/^\[object\s(.*)\]$/)[1] || '';
  533. switch (type) {
  534. case 'Number':
  535. if (isNaN(obj)) {
  536. return "nan";
  537. } else {
  538. return "number";
  539. }
  540. case 'String':
  541. case 'Boolean':
  542. case 'Array':
  543. case 'Date':
  544. case 'RegExp':
  545. case 'Function':
  546. return type.toLowerCase();
  547. }
  548. if (typeof obj === "object") {
  549. return "object";
  550. }
  551. return undefined;
  552. },
  553. push: function(result, actual, expected, message) {
  554. var details = {
  555. result: result,
  556. message: message,
  557. actual: actual,
  558. expected: expected
  559. };
  560. message = escapeInnerText(message) || (result ? "okay" : "failed");
  561. message = '<span class="test-message">' + message + "</span>";
  562. expected = escapeInnerText(QUnit.jsDump.parse(expected));
  563. actual = escapeInnerText(QUnit.jsDump.parse(actual));
  564. var output = message + '<table><tr class="test-expected"><th>Expected: </th><td><pre>' + expected + '</pre></td></tr>';
  565. if (actual != expected) {
  566. output += '<tr class="test-actual"><th>Result: </th><td><pre>' + actual + '</pre></td></tr>';
  567. output += '<tr class="test-diff"><th>Diff: </th><td><pre>' + QUnit.diff(expected, actual) +'</pre></td></tr>';
  568. }
  569. if (!result) {
  570. var source = sourceFromStacktrace();
  571. if (source) {
  572. details.source = source;
  573. output += '<tr class="test-source"><th>Source: </th><td><pre>' + escapeInnerText(source) + '</pre></td></tr>';
  574. }
  575. }
  576. output += "</table>";
  577. runLoggingCallbacks( 'log', QUnit, details );
  578. config.current.assertions.push({
  579. result: !!result,
  580. message: output
  581. });
  582. },
  583. url: function( params ) {
  584. params = extend( extend( {}, QUnit.urlParams ), params );
  585. var querystring = "?",
  586. key;
  587. for ( key in params ) {
  588. if ( !hasOwn.call( params, key ) ) {
  589. continue;
  590. }
  591. querystring += encodeURIComponent( key ) + "=" +
  592. encodeURIComponent( params[ key ] ) + "&";
  593. }
  594. return window.location.pathname + querystring.slice( 0, -1 );
  595. },
  596. extend: extend,
  597. id: id,
  598. addEvent: addEvent
  599. });
  600. //QUnit.constructor is set to the empty F() above so that we can add to it's prototype later
  601. //Doing this allows us to tell if the following methods have been overwritten on the actual
  602. //QUnit object, which is a deprecated way of using the callbacks.
  603. extend(QUnit.constructor.prototype, {
  604. // Logging callbacks; all receive a single argument with the listed properties
  605. // run test/logs.html for any related changes
  606. begin: registerLoggingCallback('begin'),
  607. // done: { failed, passed, total, runtime }
  608. done: registerLoggingCallback('done'),
  609. // log: { result, actual, expected, message }
  610. log: registerLoggingCallback('log'),
  611. // testStart: { name }
  612. testStart: registerLoggingCallback('testStart'),
  613. // testDone: { name, failed, passed, total }
  614. testDone: registerLoggingCallback('testDone'),
  615. // moduleStart: { name }
  616. moduleStart: registerLoggingCallback('moduleStart'),
  617. // moduleDone: { name, failed, passed, total }
  618. moduleDone: registerLoggingCallback('moduleDone')
  619. });
  620. if ( typeof document === "undefined" || document.readyState === "complete" ) {
  621. config.autorun = true;
  622. }
  623. QUnit.load = function() {
  624. runLoggingCallbacks( 'begin', QUnit, {} );
  625. // Initialize the config, saving the execution queue
  626. var oldconfig = extend({}, config);
  627. QUnit.init();
  628. extend(config, oldconfig);
  629. config.blocking = false;
  630. var urlConfigHtml = '', len = config.urlConfig.length;
  631. for ( var i = 0, val; i < len, val = config.urlConfig[i]; i++ ) {
  632. config[val] = QUnit.urlParams[val];
  633. urlConfigHtml += '<label><input name="' + val + '" type="checkbox"' + ( config[val] ? ' checked="checked"' : '' ) + '>' + val + '</label>';
  634. }
  635. var userAgent = id("qunit-userAgent");
  636. if ( userAgent ) {
  637. userAgent.innerHTML = navigator.userAgent;
  638. }
  639. var banner = id("qunit-header");
  640. if ( banner ) {
  641. banner.innerHTML = '<a href="' + QUnit.url({ filter: undefined }) + '"> ' + banner.innerHTML + '</a> ' + urlConfigHtml;
  642. addEvent( banner, "change", function( event ) {
  643. var params = {};
  644. params[ event.target.name ] = event.target.checked ? true : undefined;
  645. window.location = QUnit.url( params );
  646. });
  647. }
  648. var toolbar = id("qunit-testrunner-toolbar");
  649. if ( toolbar ) {
  650. var filter = document.createElement("input");
  651. filter.type = "checkbox";
  652. filter.id = "qunit-filter-pass";
  653. addEvent( filter, "click", function() {
  654. var ol = document.getElementById("qunit-tests");
  655. if ( filter.checked ) {
  656. ol.className = ol.className + " hidepass";
  657. } else {
  658. var tmp = " " + ol.className.replace( /[\n\t\r]/g, " " ) + " ";
  659. ol.className = tmp.replace(/ hidepass /, " ");
  660. }
  661. if ( defined.sessionStorage ) {
  662. if (filter.checked) {
  663. sessionStorage.setItem("qunit-filter-passed-tests", "true");
  664. } else {
  665. sessionStorage.removeItem("qunit-filter-passed-tests");
  666. }
  667. }
  668. });
  669. if ( config.hidepassed || defined.sessionStorage && sessionStorage.getItem("qunit-filter-passed-tests") ) {
  670. filter.checked = true;
  671. var ol = document.getElementById("qunit-tests");
  672. ol.className = ol.className + " hidepass";
  673. }
  674. toolbar.appendChild( filter );
  675. var label = document.createElement("label");
  676. label.setAttribute("for", "qunit-filter-pass");
  677. label.innerHTML = "Hide passed tests";
  678. toolbar.appendChild( label );
  679. }
  680. var main = id('qunit-fixture');
  681. if ( main ) {
  682. config.fixture = main.innerHTML;
  683. }
  684. if (config.autostart) {
  685. QUnit.start();
  686. }
  687. };
  688. addEvent(window, "load", QUnit.load);
  689. // addEvent(window, "error") gives us a useless event object
  690. window.onerror = function( message, file, line ) {
  691. if ( QUnit.config.current ) {
  692. ok( false, message + ", " + file + ":" + line );
  693. } else {
  694. test( "global failure", function() {
  695. ok( false, message + ", " + file + ":" + line );
  696. });
  697. }
  698. };
  699. function done() {
  700. config.autorun = true;
  701. // Log the last module results
  702. if ( config.currentModule ) {
  703. runLoggingCallbacks( 'moduleDone', QUnit, {
  704. name: config.currentModule,
  705. failed: config.moduleStats.bad,
  706. passed: config.moduleStats.all - config.moduleStats.bad,
  707. total: config.moduleStats.all
  708. } );
  709. }
  710. var banner = id("qunit-banner"),
  711. tests = id("qunit-tests"),
  712. runtime = +new Date - config.started,
  713. passed = config.stats.all - config.stats.bad,
  714. html = [
  715. 'Tests completed in ',
  716. runtime,
  717. ' milliseconds.<br/>',
  718. '<span class="passed">',
  719. passed,
  720. '</span> tests of <span class="total">',
  721. config.stats.all,
  722. '</span> passed, <span class="failed">',
  723. config.stats.bad,
  724. '</span> failed.'
  725. ].join('');
  726. if ( banner ) {
  727. banner.className = (config.stats.bad ? "qunit-fail" : "qunit-pass");
  728. }
  729. if ( tests ) {
  730. id( "qunit-testresult" ).innerHTML = html;
  731. }
  732. if ( config.altertitle && typeof document !== "undefined" && document.title ) {
  733. // show ✖ for good, ✔ for bad suite result in title
  734. // use escape sequences in case file gets loaded with non-utf-8-charset
  735. document.title = [
  736. (config.stats.bad ? "\u2716" : "\u2714"),
  737. document.title.replace(/^[\u2714\u2716] /i, "")
  738. ].join(" ");
  739. }
  740. runLoggingCallbacks( 'done', QUnit, {
  741. failed: config.stats.bad,
  742. passed: passed,
  743. total: config.stats.all,
  744. runtime: runtime
  745. } );
  746. }
  747. function validTest( name ) {
  748. var filter = config.filter,
  749. run = false;
  750. if ( !filter ) {
  751. return true;
  752. }
  753. var not = filter.charAt( 0 ) === "!";
  754. if ( not ) {
  755. filter = filter.slice( 1 );
  756. }
  757. if ( name.indexOf( filter ) !== -1 ) {
  758. return !not;
  759. }
  760. if ( not ) {
  761. run = true;
  762. }
  763. return run;
  764. }
  765. // so far supports only Firefox, Chrome and Opera (buggy)
  766. // could be extended in the future to use something like https://github.com/csnover/TraceKit
  767. function sourceFromStacktrace() {
  768. try {
  769. throw new Error();
  770. } catch ( e ) {
  771. if (e.stacktrace) {
  772. // Opera
  773. return e.stacktrace.split("\n")[6];
  774. } else if (e.stack) {
  775. // Firefox, Chrome
  776. return e.stack.split("\n")[4];
  777. } else if (e.sourceURL) {
  778. // Safari, PhantomJS
  779. // TODO sourceURL points at the 'throw new Error' line above, useless
  780. //return e.sourceURL + ":" + e.line;
  781. }
  782. }
  783. }
  784. function escapeInnerText(s) {
  785. if (!s) {
  786. return "";
  787. }
  788. s = s + "";
  789. return s.replace(/[\&<>]/g, function(s) {
  790. switch(s) {
  791. case "&": return "&amp;";
  792. case "<": return "&lt;";
  793. case ">": return "&gt;";
  794. default: return s;
  795. }
  796. });
  797. }
  798. function synchronize( callback, last ) {
  799. config.queue.push( callback );
  800. if ( config.autorun && !config.blocking ) {
  801. process(last);
  802. }
  803. }
  804. function process( last ) {
  805. var start = new Date().getTime();
  806. config.depth = config.depth ? config.depth + 1 : 1;
  807. while ( config.queue.length && !config.blocking ) {
  808. if ( !defined.setTimeout || config.updateRate <= 0 || ( ( new Date().getTime() - start ) < config.updateRate ) ) {
  809. config.queue.shift()();
  810. } else {
  811. window.setTimeout( function(){
  812. process( last );
  813. }, 13 );
  814. break;
  815. }
  816. }
  817. config.depth--;
  818. if ( last && !config.blocking && !config.queue.length && config.depth === 0 ) {
  819. done();
  820. }
  821. }
  822. function saveGlobal() {
  823. config.pollution = [];
  824. if ( config.noglobals ) {
  825. for ( var key in window ) {
  826. if ( !hasOwn.call( window, key ) ) {
  827. continue;
  828. }
  829. config.pollution.push( key );
  830. }
  831. }
  832. }
  833. function checkPollution( name ) {
  834. var old = config.pollution;
  835. saveGlobal();
  836. var newGlobals = diff( config.pollution, old );
  837. if ( newGlobals.length > 0 ) {
  838. ok( false, "Introduced global variable(s): " + newGlobals.join(", ") );
  839. }
  840. var deletedGlobals = diff( old, config.pollution );
  841. if ( deletedGlobals.length > 0 ) {
  842. ok( false, "Deleted global variable(s): " + deletedGlobals.join(", ") );
  843. }
  844. }
  845. // returns a new Array with the elements that are in a but not in b
  846. function diff( a, b ) {
  847. var result = a.slice();
  848. for ( var i = 0; i < result.length; i++ ) {
  849. for ( var j = 0; j < b.length; j++ ) {
  850. if ( result[i] === b[j] ) {
  851. result.splice(i, 1);
  852. i--;
  853. break;
  854. }
  855. }
  856. }
  857. return result;
  858. }
  859. function fail(message, exception, callback) {
  860. if ( typeof console !== "undefined" && console.error && console.warn ) {
  861. console.error(message);
  862. console.error(exception);
  863. console.warn(callback.toString());
  864. } else if ( window.opera && opera.postError ) {
  865. opera.postError(message, exception, callback.toString);
  866. }
  867. }
  868. function extend(a, b) {
  869. for ( var prop in b ) {
  870. if ( b[prop] === undefined ) {
  871. delete a[prop];
  872. // Avoid "Member not found" error in IE8 caused by setting window.constructor
  873. } else if ( prop !== "constructor" || a !== window ) {
  874. a[prop] = b[prop];
  875. }
  876. }
  877. return a;
  878. }
  879. function addEvent(elem, type, fn) {
  880. if ( elem.addEventListener ) {
  881. elem.addEventListener( type, fn, false );
  882. } else if ( elem.attachEvent ) {
  883. elem.attachEvent( "on" + type, fn );
  884. } else {
  885. fn();
  886. }
  887. }
  888. function id(name) {
  889. return !!(typeof document !== "undefined" && document && document.getElementById) &&
  890. document.getElementById( name );
  891. }
  892. function registerLoggingCallback(key){
  893. return function(callback){
  894. config[key].push( callback );
  895. };
  896. }
  897. // Supports deprecated method of completely overwriting logging callbacks
  898. function runLoggingCallbacks(key, scope, args) {
  899. //debugger;
  900. var callbacks;
  901. if ( QUnit.hasOwnProperty(key) ) {
  902. QUnit[key].call(scope, args);
  903. } else {
  904. callbacks = config[key];
  905. for( var i = 0; i < callbacks.length; i++ ) {
  906. callbacks[i].call( scope, args );
  907. }
  908. }
  909. }
  910. // Test for equality any JavaScript type.
  911. // Author: Philippe Rathé <[email protected]>
  912. QUnit.equiv = function () {
  913. var innerEquiv; // the real equiv function
  914. var callers = []; // stack to decide between skip/abort functions
  915. var parents = []; // stack to avoiding loops from circular referencing
  916. // Call the o related callback with the given arguments.
  917. function bindCallbacks(o, callbacks, args) {
  918. var prop = QUnit.objectType(o);
  919. if (prop) {
  920. if (QUnit.objectType(callbacks[prop]) === "function") {
  921. return callbacks[prop].apply(callbacks, args);
  922. } else {
  923. return callbacks[prop]; // or undefined
  924. }
  925. }
  926. }
  927. var getProto = Object.getPrototypeOf || function (obj) {
  928. return obj.__proto__;
  929. };
  930. var callbacks = function () {
  931. // for string, boolean, number and null
  932. function useStrictEquality(b, a) {
  933. if (b instanceof a.constructor || a instanceof b.constructor) {
  934. // to catch short annotaion VS 'new' annotation of a
  935. // declaration
  936. // e.g. var i = 1;
  937. // var j = new Number(1);
  938. return a == b;
  939. } else {
  940. return a === b;
  941. }
  942. }
  943. return {
  944. "string" : useStrictEquality,
  945. "boolean" : useStrictEquality,
  946. "number" : useStrictEquality,
  947. "null" : useStrictEquality,
  948. "undefined" : useStrictEquality,
  949. "nan" : function(b) {
  950. return isNaN(b);
  951. },
  952. "date" : function(b, a) {
  953. return QUnit.objectType(b) === "date"
  954. && a.valueOf() === b.valueOf();
  955. },
  956. "regexp" : function(b, a) {
  957. return QUnit.objectType(b) === "regexp"
  958. && a.source === b.source && // the regex itself
  959. a.global === b.global && // and its modifers
  960. // (gmi) ...
  961. a.ignoreCase === b.ignoreCase
  962. && a.multiline === b.multiline;
  963. },
  964. // - skip when the property is a method of an instance (OOP)
  965. // - abort otherwise,
  966. // initial === would have catch identical references anyway
  967. "function" : function() {
  968. var caller = callers[callers.length - 1];
  969. return caller !== Object && typeof caller !== "undefined";
  970. },
  971. "array" : function(b, a) {
  972. var i, j, loop;
  973. var len;
  974. // b could be an object literal here
  975. if (!(QUnit.objectType(b) === "array")) {
  976. return false;
  977. }
  978. len = a.length;
  979. if (len !== b.length) { // safe and faster
  980. return false;
  981. }
  982. // track reference to avoid circular references
  983. parents.push(a);
  984. for (i = 0; i < len; i++) {
  985. loop = false;
  986. for (j = 0; j < parents.length; j++) {
  987. if (parents[j] === a[i]) {
  988. loop = true;// dont rewalk array
  989. }
  990. }
  991. if (!loop && !innerEquiv(a[i], b[i])) {
  992. parents.pop();
  993. return false;
  994. }
  995. }
  996. parents.pop();
  997. return true;
  998. },
  999. "object" : function(b, a) {
  1000. var i, j, loop;
  1001. var eq = true; // unless we can proove it
  1002. var aProperties = [], bProperties = []; // collection of
  1003. // strings
  1004. // comparing constructors is more strict than using
  1005. // instanceof
  1006. if (a.constructor !== b.constructor) {
  1007. // Allow objects with no prototype to be equivalent to
  1008. // objects with Object as their constructor.
  1009. if (!((getProto(a) === null && getProto(b) === Object.prototype) ||
  1010. (getProto(b) === null && getProto(a) === Object.prototype)))
  1011. {
  1012. return false;
  1013. }
  1014. }
  1015. // stack constructor before traversing properties
  1016. callers.push(a.constructor);
  1017. // track reference to avoid circular references
  1018. parents.push(a);
  1019. for (i in a) { // be strict: don't ensures hasOwnProperty
  1020. // and go deep
  1021. loop = false;
  1022. for (j = 0; j < parents.length; j++) {
  1023. if (parents[j] === a[i])
  1024. loop = true; // don't go down the same path
  1025. // twice
  1026. }
  1027. aProperties.push(i); // collect a's properties
  1028. if (!loop && !innerEquiv(a[i], b[i])) {
  1029. eq = false;
  1030. break;
  1031. }
  1032. }
  1033. callers.pop(); // unstack, we are done
  1034. parents.pop();
  1035. for (i in b) {
  1036. bProperties.push(i); // collect b's properties
  1037. }
  1038. // Ensures identical properties name
  1039. return eq
  1040. && innerEquiv(aProperties.sort(), bProperties
  1041. .sort());
  1042. }
  1043. };
  1044. }();
  1045. innerEquiv = function() { // can take multiple arguments
  1046. var args = Array.prototype.slice.apply(arguments);
  1047. if (args.length < 2) {
  1048. return true; // end transition
  1049. }
  1050. return (function(a, b) {
  1051. if (a === b) {
  1052. return true; // catch the most you can
  1053. } else if (a === null || b === null || typeof a === "undefined"
  1054. || typeof b === "undefined"
  1055. || QUnit.objectType(a) !== QUnit.objectType(b)) {
  1056. return false; // don't lose time with error prone cases
  1057. } else {
  1058. return bindCallbacks(a, callbacks, [ b, a ]);
  1059. }
  1060. // apply transition with (1..n) arguments
  1061. })(args[0], args[1])
  1062. && arguments.callee.apply(this, args.splice(1,
  1063. args.length - 1));
  1064. };
  1065. return innerEquiv;
  1066. }();
  1067. /**
  1068. * jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |
  1069. * http://flesler.blogspot.com Licensed under BSD
  1070. * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008
  1071. *
  1072. * @projectDescription Advanced and extensible data dumping for Javascript.
  1073. * @version 1.0.0
  1074. * @author Ariel Flesler
  1075. * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}
  1076. */
  1077. QUnit.jsDump = (function() {
  1078. function quote( str ) {
  1079. return '"' + str.toString().replace(/"/g, '\\"') + '"';
  1080. };
  1081. function literal( o ) {
  1082. return o + '';
  1083. };
  1084. function join( pre, arr, post ) {
  1085. var s = jsDump.separator(),
  1086. base = jsDump.indent(),
  1087. inner = jsDump.indent(1);
  1088. if ( arr.join )
  1089. arr = arr.join( ',' + s + inner );
  1090. if ( !arr )
  1091. return pre + post;
  1092. return [ pre, inner + arr, base + post ].join(s);
  1093. };
  1094. function array( arr, stack ) {
  1095. var i = arr.length, ret = Array(i);
  1096. this.up();
  1097. while ( i-- )
  1098. ret[i] = this.parse( arr[i] , undefined , stack);
  1099. this.down();
  1100. return join( '[', ret, ']' );
  1101. };
  1102. var reName = /^function (\w+)/;
  1103. var jsDump = {
  1104. parse:function( obj, type, stack ) { //type is used mostly internally, you can fix a (custom)type in advance
  1105. stack = stack || [ ];
  1106. var parser = this.parsers[ type || this.typeOf(obj) ];
  1107. type = typeof parser;
  1108. var inStack = inArray(obj, stack);
  1109. if (inStack != -1) {
  1110. return 'recursion('+(inStack - stack.length)+')';
  1111. }
  1112. //else
  1113. if (type == 'function') {
  1114. stack.push(obj);
  1115. var res = parser.call( this, obj, stack );
  1116. stack.pop();
  1117. return res;
  1118. }
  1119. // else
  1120. return (type == 'string') ? parser : this.parsers.error;
  1121. },
  1122. typeOf:function( obj ) {
  1123. var type;
  1124. if ( obj === null ) {
  1125. type = "null";
  1126. } else if (typeof obj === "undefined") {
  1127. type = "undefined";
  1128. } else if (QUnit.is("RegExp", obj)) {
  1129. type = "regexp";
  1130. } else if (QUnit.is("Date", obj)) {
  1131. type = "date";
  1132. } else if (QUnit.is("Function", obj)) {
  1133. type = "function";
  1134. } else if (typeof obj.setInterval !== undefined && typeof obj.document !== "undefined" && typeof obj.nodeType === "undefined") {
  1135. type = "window";
  1136. } else if (obj.nodeType === 9) {
  1137. type = "document";
  1138. } else if (obj.nodeType) {
  1139. type = "node";
  1140. } else if (
  1141. // native arrays
  1142. toString.call( obj ) === "[object Array]" ||
  1143. // NodeList objects
  1144. ( typeof obj.length === "number" && typeof obj.item !== "undefined" && ( obj.length ? obj.item(0) === obj[0] : ( obj.item( 0 ) === null && typeof obj[0] === "undefined" ) ) )
  1145. ) {
  1146. type = "array";
  1147. } else {
  1148. type = typeof obj;
  1149. }
  1150. return type;
  1151. },
  1152. separator:function() {
  1153. return this.multiline ? this.HTML ? '<br />' : '\n' : this.HTML ? '&nbsp;' : ' ';
  1154. },
  1155. indent:function( extra ) {// extra can be a number, shortcut for increasing-calling-decreasing
  1156. if ( !this.multiline )
  1157. return '';
  1158. var chr = this.indentChar;
  1159. if ( this.HTML )
  1160. chr = chr.replace(/\t/g,' ').replace(/ /g,'&nbsp;');
  1161. return Array( this._depth_ + (extra||0) ).join(chr);
  1162. },
  1163. up:function( a ) {
  1164. this._depth_ += a || 1;
  1165. },
  1166. down:function( a ) {
  1167. this._depth_ -= a || 1;
  1168. },
  1169. setParser:function( name, parser ) {
  1170. this.parsers[name] = parser;
  1171. },
  1172. // The next 3 are exposed so you can use them
  1173. quote:quote,
  1174. literal:literal,
  1175. join:join,
  1176. //
  1177. _depth_: 1,
  1178. // This is the list of parsers, to modify them, use jsDump.setParser
  1179. parsers:{
  1180. window: '[Window]',
  1181. document: '[Document]',
  1182. error:'[ERROR]', //when no parser is found, shouldn't happen
  1183. unknown: '[Unknown]',
  1184. 'null':'null',
  1185. 'undefined':'undefined',
  1186. 'function':function( fn ) {
  1187. var ret = 'function',
  1188. name = 'name' in fn ? fn.name : (reName.exec(fn)||[])[1];//functions never have name in IE
  1189. if ( name )
  1190. ret += ' ' + name;
  1191. ret += '(';
  1192. ret = [ ret, QUnit.jsDump.parse( fn, 'functionArgs' ), '){'].join('');
  1193. return join( ret, QUnit.jsDump.parse(fn,'functionCode'), '}' );
  1194. },
  1195. array: array,
  1196. nodelist: array,
  1197. arguments: array,
  1198. object:function( map, stack ) {
  1199. var ret = [ ];
  1200. QUnit.jsDump.up();
  1201. for ( var key in map ) {
  1202. var val = map[key];
  1203. ret.push( QUnit.jsDump.parse(key,'key') + ': ' + QUnit.jsDump.parse(val, undefined, stack));
  1204. }
  1205. QUnit.jsDump.down();
  1206. return join( '{', ret, '}' );
  1207. },
  1208. node:function( node ) {
  1209. var open = QUnit.jsDump.HTML ? '&lt;' : '<',
  1210. close = QUnit.jsDump.HTML ? '&gt;' : '>';
  1211. var tag = node.nodeName.toLowerCase(),
  1212. ret = open + tag;
  1213. for ( var a in QUnit.jsDump.DOMAttrs ) {
  1214. var val = node[QUnit.jsDump.DOMAttrs[a]];
  1215. if ( val )
  1216. ret += ' ' + a + '=' + QUnit.jsDump.parse( val, 'attribute' );
  1217. }
  1218. return ret + close + open + '/' + tag + close;
  1219. },
  1220. functionArgs:function( fn ) {//function calls it internally, it's the arguments part of the function
  1221. var l = fn.length;
  1222. if ( !l ) return '';
  1223. var args = Array(l);
  1224. while ( l-- )
  1225. args[l] = String.fromCharCode(97+l);//97 is 'a'
  1226. return ' ' + args.join(', ') + ' ';
  1227. },
  1228. key:quote, //object calls it internally, the key part of an item in a map
  1229. functionCode:'[code]', //function calls it internally, it's the content of the function
  1230. attribute:quote, //node calls it internally, it's an html attribute value
  1231. string:quote,
  1232. date:quote,
  1233. regexp:literal, //regex
  1234. number:literal,
  1235. 'boolean':literal
  1236. },
  1237. DOMAttrs:{//attributes to dump from nodes, name=>realName
  1238. id:'id',
  1239. name:'name',
  1240. 'class':'className'
  1241. },
  1242. HTML:false,//if true, entities are escaped ( <, >, \t, space and \n )
  1243. indentChar:' ',//indentation unit
  1244. multiline:true //if true, items in a collection, are separated by a \n, else just a space.
  1245. };
  1246. return jsDump;
  1247. })();
  1248. // from Sizzle.js
  1249. function getText( elems ) {
  1250. var ret = "", elem;
  1251. for ( var i = 0; elems[i]; i++ ) {
  1252. elem = elems[i];
  1253. // Get the text from text nodes and CDATA nodes
  1254. if ( elem.nodeType === 3 || elem.nodeType === 4 ) {
  1255. ret += elem.nodeValue;
  1256. // Traverse everything else, except comment nodes
  1257. } else if ( elem.nodeType !== 8 ) {
  1258. ret += getText( elem.childNodes );
  1259. }
  1260. }
  1261. return ret;
  1262. };
  1263. //from jquery.js
  1264. function inArray( elem, array ) {
  1265. if ( array.indexOf ) {
  1266. return array.indexOf( elem );
  1267. }
  1268. for ( var i = 0, length = array.length; i < length; i++ ) {
  1269. if ( array[ i ] === elem ) {
  1270. return i;
  1271. }
  1272. }
  1273. return -1;
  1274. }
  1275. /*
  1276. * Javascript Diff Algorithm
  1277. * By John Resig (http://ejohn.org/)
  1278. * Modified by Chu Alan "sprite"
  1279. *
  1280. * Released under the MIT license.
  1281. *
  1282. * More Info:
  1283. * http://ejohn.org/projects/javascript-diff-algorithm/
  1284. *
  1285. * Usage: QUnit.diff(expected, actual)
  1286. *
  1287. * QUnit.diff("the quick brown fox jumped over", "the quick fox jumps over") == "the quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over"
  1288. */
  1289. QUnit.diff = (function() {
  1290. function diff(o, n) {
  1291. var ns = {};
  1292. var os = {};
  1293. for (var i = 0; i < n.length; i++) {
  1294. if (ns[n[i]] == null)
  1295. ns[n[i]] = {
  1296. rows: [],
  1297. o: null
  1298. };
  1299. ns[n[i]].rows.push(i);
  1300. }
  1301. for (var i = 0; i < o.length; i++) {
  1302. if (os[o[i]] == null)
  1303. os[o[i]] = {
  1304. rows: [],
  1305. n: null
  1306. };
  1307. os[o[i]].rows.push(i);
  1308. }
  1309. for (var i in ns) {
  1310. if ( !hasOwn.call( ns, i ) ) {
  1311. continue;
  1312. }
  1313. if (ns[i].rows.length == 1 && typeof(os[i]) != "undefined" && os[i].rows.length == 1) {
  1314. n[ns[i].rows[0]] = {
  1315. text: n[ns[i].rows[0]],
  1316. row: os[i].rows[0]
  1317. };
  1318. o[os[i].rows[0]] = {
  1319. text: o[os[i].rows[0]],
  1320. row: ns[i].rows[0]
  1321. };
  1322. }
  1323. }
  1324. for (var i = 0; i < n.length - 1; i++) {
  1325. if (n[i].text != null && n[i + 1].text == null && n[i].row + 1 < o.length && o[n[i].row + 1].text == null &&
  1326. n[i + 1] == o[n[i].row + 1]) {
  1327. n[i + 1] = {
  1328. text: n[i + 1],
  1329. row: n[i].row + 1
  1330. };
  1331. o[n[i].row + 1] = {
  1332. text: o[n[i].row + 1],
  1333. row: i + 1
  1334. };
  1335. }
  1336. }
  1337. for (var i = n.length - 1; i > 0; i--) {
  1338. if (n[i].text != null && n[i - 1].text == null && n[i].row > 0 && o[n[i].row - 1].text == null &&
  1339. n[i - 1] == o[n[i].row - 1]) {
  1340. n[i - 1] = {
  1341. text: n[i - 1],
  1342. row: n[i].row - 1
  1343. };
  1344. o[n[i].row - 1] = {
  1345. text: o[n[i].row - 1],
  1346. row: i - 1
  1347. };
  1348. }
  1349. }
  1350. return {
  1351. o: o,
  1352. n: n
  1353. };
  1354. }
  1355. return function(o, n) {
  1356. o = o.replace(/\s+$/, '');
  1357. n = n.replace(/\s+$/, '');
  1358. var out = diff(o == "" ? [] : o.split(/\s+/), n == "" ? [] : n.split(/\s+/));
  1359. var str = "";
  1360. var oSpace = o.match(/\s+/g);
  1361. if (oSpace == null) {
  1362. oSpace = [" "];
  1363. }
  1364. else {
  1365. oSpace.push(" ");
  1366. }
  1367. var nSpace = n.match(/\s+/g);
  1368. if (nSpace == null) {
  1369. nSpace = [" "];
  1370. }
  1371. else {
  1372. nSpace.push(" ");
  1373. }
  1374. if (out.n.length == 0) {
  1375. for (var i = 0; i < out.o.length; i++) {
  1376. str += '<del>' + out.o[i] + oSpace[i] + "</del>";
  1377. }
  1378. }
  1379. else {
  1380. if (out.n[0].text == null) {
  1381. for (n = 0; n < out.o.length && out.o[n].text == null; n++) {
  1382. str += '<del>' + out.o[n] + oSpace[n] + "</del>";
  1383. }
  1384. }
  1385. for (var i = 0; i < out.n.length; i++) {
  1386. if (out.n[i].text == null) {
  1387. str += '<ins>' + out.n[i] + nSpace[i] + "</ins>";
  1388. }
  1389. else {
  1390. var pre = "";
  1391. for (n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++) {
  1392. pre += '<del>' + out.o[n] + oSpace[n] + "</del>";
  1393. }
  1394. str += " " + out.n[i].text + nSpace[i] + pre;
  1395. }
  1396. }
  1397. }
  1398. return str;
  1399. };
  1400. })();
  1401. })(this);