testinit.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. var jQuery = this.jQuery || "jQuery", // For testing .noConflict()
  2. $ = this.$ || "$",
  3. originaljQuery = jQuery,
  4. original$ = $,
  5. amdDefined;
  6. /**
  7. * Set up a mock AMD define function for testing AMD registration.
  8. */
  9. function define(name, dependencies, callback) {
  10. amdDefined = callback();
  11. }
  12. define.amd = {
  13. jQuery: true
  14. };
  15. /**
  16. * Returns an array of elements with the given IDs, eg.
  17. * @example q("main", "foo", "bar")
  18. * @result [<div id="main">, <span id="foo">, <input id="bar">]
  19. */
  20. function q() {
  21. var r = [];
  22. for ( var i = 0; i < arguments.length; i++ ) {
  23. r.push( document.getElementById( arguments[i] ) );
  24. }
  25. return r;
  26. }
  27. /**
  28. * Asserts that a select matches the given IDs * @example t("Check for something", "//[a]", ["foo", "baar"]);
  29. * @result returns true if "//[a]" return two elements with the IDs 'foo' and 'baar'
  30. */
  31. function t(a,b,c) {
  32. var f = jQuery(b).get(), s = "";
  33. for ( var i = 0; i < f.length; i++ ) {
  34. s += (s && ",") + '"' + f[i].id + '"';
  35. }
  36. deepEqual(f, q.apply(q,c), a + " (" + b + ")");
  37. }
  38. var fireNative;
  39. if ( document.createEvent ) {
  40. fireNative = function( node, type ) {
  41. var event = document.createEvent('HTMLEvents');
  42. event.initEvent( type, true, true );
  43. node.dispatchEvent( event );
  44. };
  45. } else {
  46. fireNative = function( node, type ) {
  47. var event = document.createEventObject();
  48. node.fireEvent( 'on' + type, event );
  49. };
  50. }
  51. /**
  52. * Add random number to url to stop IE from caching
  53. *
  54. * @example url("data/test.html")
  55. * @result "data/test.html?10538358428943"
  56. *
  57. * @example url("data/test.php?foo=bar")
  58. * @result "data/test.php?foo=bar&10538358345554"
  59. */
  60. function url(value) {
  61. return value + (/\?/.test(value) ? "&" : "?") + new Date().getTime() + "" + parseInt(Math.random()*100000);
  62. }
  63. (function () {
  64. // Store the old counts so that we only assert on tests that have actually leaked,
  65. // instead of asserting every time a test has leaked sometime in the past
  66. var oldCacheLength = 0,
  67. oldFragmentsLength = 0,
  68. oldTimersLength = 0,
  69. oldActive = 0;
  70. /**
  71. * Ensures that tests have cleaned up properly after themselves. Should be passed as the
  72. * teardown function on all modules' lifecycle object.
  73. */
  74. this.moduleTeardown = function () {
  75. var i, fragmentsLength = 0, cacheLength = 0;
  76. // Allow QUnit.reset to clean up any attached elements before checking for leaks
  77. QUnit.reset();
  78. for ( i in jQuery.cache ) {
  79. ++cacheLength;
  80. }
  81. jQuery.fragments = {};
  82. for ( i in jQuery.fragments ) {
  83. ++fragmentsLength;
  84. }
  85. // Because QUnit doesn't have a mechanism for retrieving the number of expected assertions for a test,
  86. // if we unconditionally assert any of these, the test will fail with too many assertions :|
  87. if ( cacheLength !== oldCacheLength ) {
  88. equal( cacheLength, oldCacheLength, "No unit tests leak memory in jQuery.cache" );
  89. oldCacheLength = cacheLength;
  90. }
  91. if ( fragmentsLength !== oldFragmentsLength ) {
  92. equal( fragmentsLength, oldFragmentsLength, "No unit tests leak memory in jQuery.fragments" );
  93. oldFragmentsLength = fragmentsLength;
  94. }
  95. if ( jQuery.timers.length !== oldTimersLength ) {
  96. equal( jQuery.timers.length, oldTimersLength, "No timers are still running" );
  97. oldTimersLength = jQuery.timers.length;
  98. }
  99. if ( jQuery.active !== oldActive ) {
  100. equal( jQuery.active, 0, "No AJAX requests are still active" );
  101. oldActive = jQuery.active;
  102. }
  103. }
  104. }());