2009-09-29 18:06:16 +00:00
|
|
|
var jQuery = this.jQuery || "jQuery", // For testing .noConflict()
|
|
|
|
$ = this.$ || "$",
|
|
|
|
originaljQuery = jQuery,
|
2011-04-17 03:35:18 +00:00
|
|
|
original$ = $,
|
2012-02-14 23:19:32 +00:00
|
|
|
hasPHP = true,
|
2011-10-28 18:17:14 +00:00
|
|
|
amdDefined;
|
2011-04-17 03:35:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set up a mock AMD define function for testing AMD registration.
|
|
|
|
*/
|
|
|
|
function define(name, dependencies, callback) {
|
|
|
|
amdDefined = callback();
|
|
|
|
}
|
|
|
|
|
|
|
|
define.amd = {
|
|
|
|
jQuery: true
|
|
|
|
};
|
2009-09-29 18:11:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of elements with the given IDs, eg.
|
|
|
|
* @example q("main", "foo", "bar")
|
|
|
|
* @result [<div id="main">, <span id="foo">, <input id="bar">]
|
|
|
|
*/
|
|
|
|
function q() {
|
|
|
|
var r = [];
|
|
|
|
|
|
|
|
for ( var i = 0; i < arguments.length; i++ ) {
|
|
|
|
r.push( document.getElementById( arguments[i] ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Asserts that a select matches the given IDs * @example t("Check for something", "//[a]", ["foo", "baar"]);
|
2011-09-12 23:40:14 +00:00
|
|
|
* @result returns true if "//[a]" return two elements with the IDs 'foo' and 'baar'
|
2009-09-29 18:11:10 +00:00
|
|
|
*/
|
|
|
|
function t(a,b,c) {
|
2009-09-29 21:22:35 +00:00
|
|
|
var f = jQuery(b).get(), s = "";
|
2009-09-29 18:11:10 +00:00
|
|
|
|
|
|
|
for ( var i = 0; i < f.length; i++ ) {
|
|
|
|
s += (s && ",") + '"' + f[i].id + '"';
|
|
|
|
}
|
|
|
|
|
2011-11-06 20:27:42 +00:00
|
|
|
deepEqual(f, q.apply(q,c), a + " (" + b + ")");
|
2009-09-29 18:11:10 +00:00
|
|
|
}
|
|
|
|
|
2011-10-28 18:17:14 +00:00
|
|
|
var fireNative;
|
|
|
|
if ( document.createEvent ) {
|
|
|
|
fireNative = function( node, type ) {
|
|
|
|
var event = document.createEvent('HTMLEvents');
|
|
|
|
event.initEvent( type, true, true );
|
|
|
|
node.dispatchEvent( event );
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
fireNative = function( node, type ) {
|
|
|
|
var event = document.createEventObject();
|
|
|
|
node.fireEvent( 'on' + type, event );
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2009-09-29 18:11:10 +00:00
|
|
|
/**
|
|
|
|
* Add random number to url to stop IE from caching
|
|
|
|
*
|
|
|
|
* @example url("data/test.html")
|
|
|
|
* @result "data/test.html?10538358428943"
|
|
|
|
*
|
|
|
|
* @example url("data/test.php?foo=bar")
|
|
|
|
* @result "data/test.php?foo=bar&10538358345554"
|
|
|
|
*/
|
|
|
|
function url(value) {
|
|
|
|
return value + (/\?/.test(value) ? "&" : "?") + new Date().getTime() + "" + parseInt(Math.random()*100000);
|
|
|
|
}
|
2011-01-09 21:58:47 +00:00
|
|
|
|
|
|
|
(function () {
|
|
|
|
// Store the old counts so that we only assert on tests that have actually leaked,
|
|
|
|
// instead of asserting every time a test has leaked sometime in the past
|
|
|
|
var oldCacheLength = 0,
|
|
|
|
oldFragmentsLength = 0,
|
|
|
|
oldTimersLength = 0,
|
|
|
|
oldActive = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensures that tests have cleaned up properly after themselves. Should be passed as the
|
|
|
|
* teardown function on all modules' lifecycle object.
|
|
|
|
*/
|
|
|
|
this.moduleTeardown = function () {
|
|
|
|
var i, fragmentsLength = 0, cacheLength = 0;
|
|
|
|
|
|
|
|
// Allow QUnit.reset to clean up any attached elements before checking for leaks
|
|
|
|
QUnit.reset();
|
|
|
|
|
|
|
|
for ( i in jQuery.cache ) {
|
|
|
|
++cacheLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
jQuery.fragments = {};
|
|
|
|
|
|
|
|
for ( i in jQuery.fragments ) {
|
|
|
|
++fragmentsLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Because QUnit doesn't have a mechanism for retrieving the number of expected assertions for a test,
|
|
|
|
// if we unconditionally assert any of these, the test will fail with too many assertions :|
|
|
|
|
if ( cacheLength !== oldCacheLength ) {
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( cacheLength, oldCacheLength, "No unit tests leak memory in jQuery.cache" );
|
2011-01-09 21:58:47 +00:00
|
|
|
oldCacheLength = cacheLength;
|
|
|
|
}
|
|
|
|
if ( fragmentsLength !== oldFragmentsLength ) {
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( fragmentsLength, oldFragmentsLength, "No unit tests leak memory in jQuery.fragments" );
|
2011-01-09 21:58:47 +00:00
|
|
|
oldFragmentsLength = fragmentsLength;
|
|
|
|
}
|
|
|
|
if ( jQuery.timers.length !== oldTimersLength ) {
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.timers.length, oldTimersLength, "No timers are still running" );
|
2011-01-09 21:58:47 +00:00
|
|
|
oldTimersLength = jQuery.timers.length;
|
|
|
|
}
|
|
|
|
if ( jQuery.active !== oldActive ) {
|
2011-11-06 20:27:42 +00:00
|
|
|
equal( jQuery.active, 0, "No AJAX requests are still active" );
|
2011-01-09 21:58:47 +00:00
|
|
|
oldActive = jQuery.active;
|
|
|
|
}
|
2012-02-14 23:19:32 +00:00
|
|
|
};
|
2012-02-23 20:48:12 +00:00
|
|
|
|
|
|
|
this.testIframe = function( fileName, name, fn ) {
|
|
|
|
|
|
|
|
test(name, function() {
|
|
|
|
// pause execution for now
|
|
|
|
stop();
|
|
|
|
|
|
|
|
// load fixture in iframe
|
|
|
|
var iframe = loadFixture(),
|
|
|
|
win = iframe.contentWindow,
|
|
|
|
interval = setInterval( function() {
|
|
|
|
if ( win && win.jQuery && win.jQuery.isReady ) {
|
|
|
|
clearInterval( interval );
|
|
|
|
// continue
|
|
|
|
start();
|
|
|
|
// call actual tests passing the correct jQuery instance to use
|
|
|
|
fn.call( this, win.jQuery, win, win.document );
|
|
|
|
document.body.removeChild( iframe );
|
|
|
|
iframe = null;
|
|
|
|
}
|
|
|
|
}, 15 );
|
|
|
|
});
|
|
|
|
|
|
|
|
function loadFixture() {
|
|
|
|
var src = "./data/" + fileName + ".html?" + parseInt( Math.random()*1000, 10 ),
|
|
|
|
iframe = jQuery("<iframe />").css({
|
|
|
|
width: 500, height: 500, position: "absolute", top: -600, left: -600, visibility: "hidden"
|
|
|
|
}).appendTo("body")[0];
|
|
|
|
iframe.contentWindow.location = src;
|
|
|
|
return iframe;
|
|
|
|
}
|
|
|
|
};
|
2012-03-07 17:23:46 +00:00
|
|
|
}());
|
|
|
|
|
|
|
|
// Sandbox start for great justice
|
|
|
|
(function() {
|
|
|
|
var oldStart = window.start;
|
|
|
|
window.start = function() {
|
|
|
|
oldStart();
|
|
|
|
};
|
|
|
|
})();
|