diff options
Diffstat (limited to 'test/unit/core.js')
-rw-r--r-- | test/unit/core.js | 1072 |
1 files changed, 542 insertions, 530 deletions
diff --git a/test/unit/core.js b/test/unit/core.js index 7e1c70c90..1a6cf5e3c 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1,17 +1,17 @@ -module("core", { teardown: moduleTeardown }); - -test("Basic requirements", function() { - expect(7); - ok( Array.prototype.push, "Array.push()" ); - ok( Function.prototype.apply, "Function.apply()" ); - ok( document.getElementById, "getElementById" ); - ok( document.getElementsByTagName, "getElementsByTagName" ); - ok( RegExp, "RegExp" ); - ok( jQuery, "jQuery" ); - ok( $, "$" ); +QUnit.module("core", { teardown: moduleTeardown }); + +QUnit.test("Basic requirements", function( assert ) { + assert.expect(7); + assert.ok( Array.prototype.push, "Array.push()" ); + assert.ok( Function.prototype.apply, "Function.apply()" ); + assert.ok( document.getElementById, "getElementById" ); + assert.ok( document.getElementsByTagName, "getElementsByTagName" ); + assert.ok( RegExp, "RegExp" ); + assert.ok( jQuery, "jQuery" ); + assert.ok( $, "$" ); }); -test("jQuery()", function() { +QUnit.test("jQuery()", function( assert ) { var elem, i, obj = jQuery("div"), @@ -49,24 +49,24 @@ test("jQuery()", function() { attrObj.attr = { "desired": "very" }; } - expect( expected ); + assert.expect( expected ); // Basic constructor's behavior - equal( jQuery().length, 0, "jQuery() === jQuery([])" ); - equal( jQuery(undefined).length, 0, "jQuery(undefined) === jQuery([])" ); - equal( jQuery(null).length, 0, "jQuery(null) === jQuery([])" ); - equal( jQuery("").length, 0, "jQuery('') === jQuery([])" ); - deepEqual( jQuery(obj).get(), obj.get(), "jQuery(jQueryObj) == jQueryObj" ); + assert.equal( jQuery().length, 0, "jQuery() === jQuery([])" ); + assert.equal( jQuery(undefined).length, 0, "jQuery(undefined) === jQuery([])" ); + assert.equal( jQuery(null).length, 0, "jQuery(null) === jQuery([])" ); + assert.equal( jQuery("").length, 0, "jQuery('') === jQuery([])" ); + assert.deepEqual( jQuery(obj).get(), obj.get(), "jQuery(jQueryObj) == jQueryObj" ); // Invalid #id goes to Sizzle which will throw an error (gh-1682) try { jQuery( "#" ); } catch ( e ) { - ok( true, "Threw an error on #id with no id" ); + assert.ok( true, "Threw an error on #id with no id" ); } // can actually yield more than one, when iframes are included, the window is an array as well - equal( jQuery(window).length, 1, "Correct number of elements generated for jQuery(window)" ); + assert.equal( jQuery(window).length, 1, "Correct number of elements generated for jQuery(window)" ); /* // disabled since this test was doing nothing. i tried to fix it but i'm not sure @@ -74,7 +74,7 @@ test("jQuery()", function() { // make sure this is handled var crlfContainer = jQuery('<p>\r\n</p>'); var x = crlfContainer.contents().get(0).nodeValue; - equal( x, what???, "Check for \\r and \\n in jQuery()" ); + assert.equal( x, what???, "Check for \\r and \\n in jQuery()" ); */ /* // Disabled until we add this functionality in @@ -84,50 +84,50 @@ test("jQuery()", function() { } catch(e){ pass = false; } - ok( pass, "jQuery('<tag>') needs optional document parameter to ease cross-frame DOM wrangling, see #968" );*/ + assert.ok( pass, "jQuery('<tag>') needs optional document parameter to ease cross-frame DOM wrangling, see #968" );*/ - equal( code.length, 1, "Correct number of elements generated for code" ); - equal( code.parent().length, 0, "Make sure that the generated HTML has no parent." ); + assert.equal( code.length, 1, "Correct number of elements generated for code" ); + assert.equal( code.parent().length, 0, "Make sure that the generated HTML has no parent." ); - equal( img.length, 1, "Correct number of elements generated for img" ); - equal( img.parent().length, 0, "Make sure that the generated HTML has no parent." ); + assert.equal( img.length, 1, "Correct number of elements generated for img" ); + assert.equal( img.parent().length, 0, "Make sure that the generated HTML has no parent." ); - equal( div.length, 4, "Correct number of elements generated for div hr code b" ); - equal( div.parent().length, 0, "Make sure that the generated HTML has no parent." ); + assert.equal( div.length, 4, "Correct number of elements generated for div hr code b" ); + assert.equal( div.parent().length, 0, "Make sure that the generated HTML has no parent." ); - equal( jQuery([1,2,3]).get(1), 2, "Test passing an array to the factory" ); + assert.equal( jQuery([1,2,3]).get(1), 2, "Test passing an array to the factory" ); - equal( jQuery(document.body).get(0), jQuery("body").get(0), "Test passing an html node to the factory" ); + assert.equal( jQuery(document.body).get(0), jQuery("body").get(0), "Test passing an html node to the factory" ); elem = jQuery(" <em>hello</em>")[0]; - equal( elem.nodeName.toLowerCase(), "em", "leading space" ); + assert.equal( elem.nodeName.toLowerCase(), "em", "leading space" ); elem = jQuery("\n\n<em>world</em>")[0]; - equal( elem.nodeName.toLowerCase(), "em", "leading newlines" ); + assert.equal( elem.nodeName.toLowerCase(), "em", "leading newlines" ); elem = jQuery("<div/>", attrObj ); if ( jQuery.fn.width ) { - equal( elem[0].style.width, "10px", "jQuery() quick setter width"); + assert.equal( elem[0].style.width, "10px", "jQuery() quick setter width"); } if ( jQuery.fn.offset ) { - equal( elem[0].style.top, "1px", "jQuery() quick setter offset"); + assert.equal( elem[0].style.top, "1px", "jQuery() quick setter offset"); } if ( jQuery.fn.css ) { - equal( elem[0].style.paddingLeft, "1px", "jQuery quick setter css"); - equal( elem[0].style.paddingRight, "1px", "jQuery quick setter css"); + assert.equal( elem[0].style.paddingLeft, "1px", "jQuery quick setter css"); + assert.equal( elem[0].style.paddingRight, "1px", "jQuery quick setter css"); } if ( jQuery.fn.attr ) { - equal( elem[0].getAttribute("desired"), "very", "jQuery quick setter attr"); + assert.equal( elem[0].getAttribute("desired"), "very", "jQuery quick setter attr"); } - equal( elem[0].childNodes.length, 1, "jQuery quick setter text"); - equal( elem[0].firstChild.nodeValue, "test", "jQuery quick setter text"); - equal( elem[0].className, "test2", "jQuery() quick setter class"); - equal( elem[0].id, "test3", "jQuery() quick setter id"); + assert.equal( elem[0].childNodes.length, 1, "jQuery quick setter text"); + assert.equal( elem[0].firstChild.nodeValue, "test", "jQuery quick setter text"); + assert.equal( elem[0].className, "test2", "jQuery() quick setter class"); + assert.equal( elem[0].id, "test3", "jQuery() quick setter id"); exec = true; elem.trigger("click"); @@ -138,44 +138,44 @@ test("jQuery()", function() { for ( i = 0; i < 3; ++i ) { elem = jQuery("<input type='text' value='TEST' />"); } - equal( elem[0].defaultValue, "TEST", "Ensure cached nodes are cloned properly (Bug #6655)" ); + assert.equal( elem[0].defaultValue, "TEST", "Ensure cached nodes are cloned properly (Bug #6655)" ); elem = jQuery( "<input type='hidden'>", {} ); - strictEqual( elem[ 0 ].ownerDocument, document, + assert.strictEqual( elem[ 0 ].ownerDocument, document, "Empty attributes object is not interpreted as a document (trac-8950)" ); }); -test("jQuery(selector, context)", function() { - expect(3); - deepEqual( jQuery("div p", "#qunit-fixture").get(), q("sndp", "en", "sap"), "Basic selector with string as context" ); - deepEqual( jQuery("div p", q("qunit-fixture")[0]).get(), q("sndp", "en", "sap"), "Basic selector with element as context" ); - deepEqual( jQuery("div p", jQuery("#qunit-fixture")).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" ); +QUnit.test("jQuery(selector, context)", function( assert ) { + assert.expect(3); + assert.deepEqual( jQuery("div p", "#qunit-fixture").get(), q("sndp", "en", "sap"), "Basic selector with string as context" ); + assert.deepEqual( jQuery("div p", q("qunit-fixture")[0]).get(), q("sndp", "en", "sap"), "Basic selector with element as context" ); + assert.deepEqual( jQuery("div p", jQuery("#qunit-fixture")).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" ); }); -test( "globalEval", function() { - expect( 3 ); +QUnit.test( "globalEval", function( assert ) { + assert.expect( 3 ); Globals.register("globalEvalTest"); jQuery.globalEval("globalEvalTest = 1;"); - equal( window.globalEvalTest, 1, "Test variable assignments are global" ); + assert.equal( window.globalEvalTest, 1, "Test variable assignments are global" ); jQuery.globalEval("var globalEvalTest = 2;"); - equal( window.globalEvalTest, 2, "Test variable declarations are global" ); + assert.equal( window.globalEvalTest, 2, "Test variable declarations are global" ); jQuery.globalEval("this.globalEvalTest = 3;"); - equal( window.globalEvalTest, 3, "Test context (this) is the window object" ); + assert.equal( window.globalEvalTest, 3, "Test context (this) is the window object" ); }); -test( "globalEval with 'use strict'", function() { - expect( 1 ); +QUnit.test( "globalEval with 'use strict'", function( assert ) { + assert.expect( 1 ); Globals.register("strictEvalTest"); jQuery.globalEval("'use strict'; var strictEvalTest = 1;"); - equal( window.strictEvalTest, 1, "Test variable declarations are global (strict mode)" ); + assert.equal( window.strictEvalTest, 1, "Test variable declarations are global (strict mode)" ); }); -test( "globalEval execution after script injection (#7862)", function() { - expect( 1 ); +QUnit.test( "globalEval execution after script injection (#7862)", function( assert ) { + assert.expect( 1 ); var now, script = document.createElement( "script" ); @@ -186,147 +186,147 @@ test( "globalEval execution after script injection (#7862)", function() { document.body.appendChild( script ); jQuery.globalEval( "var strictEvalTest = " + jQuery.now() + ";"); - ok( window.strictEvalTest - now < 500, "Code executed synchronously" ); + assert.ok( window.strictEvalTest - now < 500, "Code executed synchronously" ); }); // This is not run in AMD mode if ( jQuery.noConflict ) { - test("noConflict", function() { - expect(7); + QUnit.test("noConflict", function( assert ) { + assert.expect(7); var $$ = jQuery; - strictEqual( jQuery, jQuery.noConflict(), "noConflict returned the jQuery object" ); - strictEqual( window["jQuery"], $$, "Make sure jQuery wasn't touched." ); - strictEqual( window["$"], original$, "Make sure $ was reverted." ); + assert.strictEqual( jQuery, jQuery.noConflict(), "noConflict returned the jQuery object" ); + assert.strictEqual( window["jQuery"], $$, "Make sure jQuery wasn't touched." ); + assert.strictEqual( window["$"], original$, "Make sure $ was reverted." ); jQuery = $ = $$; - strictEqual( jQuery.noConflict(true), $$, "noConflict returned the jQuery object" ); - strictEqual( window["jQuery"], originaljQuery, "Make sure jQuery was reverted." ); - strictEqual( window["$"], original$, "Make sure $ was reverted." ); - ok( $$().pushStack([]), "Make sure that jQuery still works." ); + assert.strictEqual( jQuery.noConflict(true), $$, "noConflict returned the jQuery object" ); + assert.strictEqual( window["jQuery"], originaljQuery, "Make sure jQuery was reverted." ); + assert.strictEqual( window["$"], original$, "Make sure $ was reverted." ); + assert.ok( $$().pushStack([]), "Make sure that jQuery still works." ); window["jQuery"] = jQuery = $$; }); } -test("trim", function() { - expect(13); +QUnit.test("trim", function( assert ) { + assert.expect(13); var nbsp = String.fromCharCode(160); - equal( jQuery.trim("hello "), "hello", "trailing space" ); - equal( jQuery.trim(" hello"), "hello", "leading space" ); - equal( jQuery.trim(" hello "), "hello", "space on both sides" ); - equal( jQuery.trim(" " + nbsp + "hello " + nbsp + " "), "hello", " " ); - - equal( jQuery.trim(), "", "Nothing in." ); - equal( jQuery.trim( undefined ), "", "Undefined" ); - equal( jQuery.trim( null ), "", "Null" ); - equal( jQuery.trim( 5 ), "5", "Number" ); - equal( jQuery.trim( false ), "false", "Boolean" ); - - equal( jQuery.trim(" "), "", "space should be trimmed" ); - equal( jQuery.trim("ipad\xA0"), "ipad", "nbsp should be trimmed" ); - equal( jQuery.trim("\uFEFF"), "", "zwsp should be trimmed" ); - equal( jQuery.trim("\uFEFF \xA0! | \uFEFF"), "! |", "leading/trailing should be trimmed" ); + assert.equal( jQuery.trim("hello "), "hello", "trailing space" ); + assert.equal( jQuery.trim(" hello"), "hello", "leading space" ); + assert.equal( jQuery.trim(" hello "), "hello", "space on both sides" ); + assert.equal( jQuery.trim(" " + nbsp + "hello " + nbsp + " "), "hello", " " ); + + assert.equal( jQuery.trim(), "", "Nothing in." ); + assert.equal( jQuery.trim( undefined ), "", "Undefined" ); + assert.equal( jQuery.trim( null ), "", "Null" ); + assert.equal( jQuery.trim( 5 ), "5", "Number" ); + assert.equal( jQuery.trim( false ), "false", "Boolean" ); + + assert.equal( jQuery.trim(" "), "", "space should be trimmed" ); + assert.equal( jQuery.trim("ipad\xA0"), "ipad", "nbsp should be trimmed" ); + assert.equal( jQuery.trim("\uFEFF"), "", "zwsp should be trimmed" ); + assert.equal( jQuery.trim("\uFEFF \xA0! | \uFEFF"), "! |", "leading/trailing should be trimmed" ); }); -test("type", function() { - expect( 28 ); - - equal( jQuery.type(null), "null", "null" ); - equal( jQuery.type(undefined), "undefined", "undefined" ); - equal( jQuery.type(true), "boolean", "Boolean" ); - equal( jQuery.type(false), "boolean", "Boolean" ); - equal( jQuery.type(Boolean(true)), "boolean", "Boolean" ); - equal( jQuery.type(0), "number", "Number" ); - equal( jQuery.type(1), "number", "Number" ); - equal( jQuery.type(Number(1)), "number", "Number" ); - equal( jQuery.type(""), "string", "String" ); - equal( jQuery.type("a"), "string", "String" ); - equal( jQuery.type(String("a")), "string", "String" ); - equal( jQuery.type({}), "object", "Object" ); - equal( jQuery.type(/foo/), "regexp", "RegExp" ); - equal( jQuery.type(new RegExp("asdf")), "regexp", "RegExp" ); - equal( jQuery.type([1]), "array", "Array" ); - equal( jQuery.type(new Date()), "date", "Date" ); - equal( jQuery.type(new Function("return;")), "function", "Function" ); - equal( jQuery.type(function(){}), "function", "Function" ); - equal( jQuery.type(new Error()), "error", "Error" ); - equal( jQuery.type(window), "object", "Window" ); - equal( jQuery.type(document), "object", "Document" ); - equal( jQuery.type(document.body), "object", "Element" ); - equal( jQuery.type(document.createTextNode("foo")), "object", "TextNode" ); - equal( jQuery.type(document.getElementsByTagName("*")), "object", "NodeList" ); +QUnit.test("type", function( assert ) { + assert.expect( 28 ); + + assert.equal( jQuery.type(null), "null", "null" ); + assert.equal( jQuery.type(undefined), "undefined", "undefined" ); + assert.equal( jQuery.type(true), "boolean", "Boolean" ); + assert.equal( jQuery.type(false), "boolean", "Boolean" ); + assert.equal( jQuery.type(Boolean(true)), "boolean", "Boolean" ); + assert.equal( jQuery.type(0), "number", "Number" ); + assert.equal( jQuery.type(1), "number", "Number" ); + assert.equal( jQuery.type(Number(1)), "number", "Number" ); + assert.equal( jQuery.type(""), "string", "String" ); + assert.equal( jQuery.type("a"), "string", "String" ); + assert.equal( jQuery.type(String("a")), "string", "String" ); + assert.equal( jQuery.type({}), "object", "Object" ); + assert.equal( jQuery.type(/foo/), "regexp", "RegExp" ); + assert.equal( jQuery.type(new RegExp("asdf")), "regexp", "RegExp" ); + assert.equal( jQuery.type([1]), "array", "Array" ); + assert.equal( jQuery.type(new Date()), "date", "Date" ); + assert.equal( jQuery.type(new Function("return;")), "function", "Function" ); + assert.equal( jQuery.type(function(){}), "function", "Function" ); + assert.equal( jQuery.type(new Error()), "error", "Error" ); + assert.equal( jQuery.type(window), "object", "Window" ); + assert.equal( jQuery.type(document), "object", "Document" ); + assert.equal( jQuery.type(document.body), "object", "Element" ); + assert.equal( jQuery.type(document.createTextNode("foo")), "object", "TextNode" ); + assert.equal( jQuery.type(document.getElementsByTagName("*")), "object", "NodeList" ); // Avoid Lint complaints var MyString = String, MyNumber = Number, MyBoolean = Boolean, MyObject = Object; - equal( jQuery.type(new MyBoolean(true)), "boolean", "Boolean" ); - equal( jQuery.type(new MyNumber(1)), "number", "Number" ); - equal( jQuery.type(new MyString("a")), "string", "String" ); - equal( jQuery.type(new MyObject()), "object", "Object" ); + assert.equal( jQuery.type(new MyBoolean(true)), "boolean", "Boolean" ); + assert.equal( jQuery.type(new MyNumber(1)), "number", "Number" ); + assert.equal( jQuery.type(new MyString("a")), "string", "String" ); + assert.equal( jQuery.type(new MyObject()), "object", "Object" ); }); -asyncTest("isPlainObject", function() { - expect(15); +QUnit.asyncTest("isPlainObject", function( assert ) { + assert.expect(15); var pass, iframe, doc, fn = function() {}; // The use case that we want to match - ok( jQuery.isPlainObject({}), "{}" ); + assert.ok( jQuery.isPlainObject({}), "{}" ); // Not objects shouldn't be matched - ok( !jQuery.isPlainObject(""), "string" ); - ok( !jQuery.isPlainObject(0) && !jQuery.isPlainObject(1), "number" ); - ok( !jQuery.isPlainObject(true) && !jQuery.isPlainObject(false), "boolean" ); - ok( !jQuery.isPlainObject(null), "null" ); - ok( !jQuery.isPlainObject(undefined), "undefined" ); + assert.ok( !jQuery.isPlainObject(""), "string" ); + assert.ok( !jQuery.isPlainObject(0) && !jQuery.isPlainObject(1), "number" ); + assert.ok( !jQuery.isPlainObject(true) && !jQuery.isPlainObject(false), "boolean" ); + assert.ok( !jQuery.isPlainObject(null), "null" ); + assert.ok( !jQuery.isPlainObject(undefined), "undefined" ); // Arrays shouldn't be matched - ok( !jQuery.isPlainObject([]), "array" ); + assert.ok( !jQuery.isPlainObject([]), "array" ); // Instantiated objects shouldn't be matched - ok( !jQuery.isPlainObject(new Date()), "new Date" ); + assert.ok( !jQuery.isPlainObject(new Date()), "new Date" ); // Functions shouldn't be matched - ok( !jQuery.isPlainObject(fn), "fn" ); + assert.ok( !jQuery.isPlainObject(fn), "fn" ); // Again, instantiated objects shouldn't be matched - ok( !jQuery.isPlainObject(new fn()), "new fn (no methods)" ); + assert.ok( !jQuery.isPlainObject(new fn()), "new fn (no methods)" ); // Makes the function a little more realistic // (and harder to detect, incidentally) fn.prototype["someMethod"] = function(){}; // Again, instantiated objects shouldn't be matched - ok( !jQuery.isPlainObject(new fn()), "new fn" ); + assert.ok( !jQuery.isPlainObject(new fn()), "new fn" ); // DOM Element - ok( !jQuery.isPlainObject( document.createElement("div") ), "DOM Element" ); + assert.ok( !jQuery.isPlainObject( document.createElement("div") ), "DOM Element" ); // Window - ok( !jQuery.isPlainObject( window ), "window" ); + assert.ok( !jQuery.isPlainObject( window ), "window" ); pass = false; try { jQuery.isPlainObject( window.location ); pass = true; } catch ( e ) {} - ok( pass, "Does not throw exceptions on host objects" ); + assert.ok( pass, "Does not throw exceptions on host objects" ); // Objects from other windows should be matched Globals.register("iframeDone"); window.iframeDone = function( otherObject, detail ) { window.iframeDone = undefined; iframe.parentNode.removeChild( iframe ); - ok( jQuery.isPlainObject(new otherObject()), "new otherObject" + ( detail ? " - " + detail : "" ) ); - start(); + assert.ok( jQuery.isPlainObject(new otherObject()), "new otherObject" + ( detail ? " - " + detail : "" ) ); + QUnit.start(); }; try { @@ -340,44 +340,44 @@ asyncTest("isPlainObject", function() { } }); -test("isFunction", function() { - expect(19); +QUnit.test("isFunction", function( assert ) { + assert.expect(19); var mystr, myarr, myfunction, fn, obj, nodes, first, input, a; // Make sure that false values return false - ok( !jQuery.isFunction(), "No Value" ); - ok( !jQuery.isFunction( null ), "null Value" ); - ok( !jQuery.isFunction( undefined ), "undefined Value" ); - ok( !jQuery.isFunction( "" ), "Empty String Value" ); - ok( !jQuery.isFunction( 0 ), "0 Value" ); + assert.ok( !jQuery.isFunction(), "No Value" ); + assert.ok( !jQuery.isFunction( null ), "null Value" ); + assert.ok( !jQuery.isFunction( undefined ), "undefined Value" ); + assert.ok( !jQuery.isFunction( "" ), "Empty String Value" ); + assert.ok( !jQuery.isFunction( 0 ), "0 Value" ); // Check built-ins - ok( jQuery.isFunction(String), "String Function("+String+")" ); - ok( jQuery.isFunction(Array), "Array Function("+Array+")" ); - ok( jQuery.isFunction(Object), "Object Function("+Object+")" ); - ok( jQuery.isFunction(Function), "Function Function("+Function+")" ); + assert.ok( jQuery.isFunction(String), "String Function("+String+")" ); + assert.ok( jQuery.isFunction(Array), "Array Function("+Array+")" ); + assert.ok( jQuery.isFunction(Object), "Object Function("+Object+")" ); + assert.ok( jQuery.isFunction(Function), "Function Function("+Function+")" ); // When stringified, this could be misinterpreted mystr = "function"; - ok( !jQuery.isFunction(mystr), "Function String" ); + assert.ok( !jQuery.isFunction(mystr), "Function String" ); // When stringified, this could be misinterpreted myarr = [ "function" ]; - ok( !jQuery.isFunction(myarr), "Function Array" ); + assert.ok( !jQuery.isFunction(myarr), "Function Array" ); // When stringified, this could be misinterpreted myfunction = { "function": "test" }; - ok( !jQuery.isFunction(myfunction), "Function Object" ); + assert.ok( !jQuery.isFunction(myfunction), "Function Object" ); // Make sure normal functions still work fn = function(){}; - ok( jQuery.isFunction(fn), "Normal Function" ); + assert.ok( jQuery.isFunction(fn), "Normal Function" ); obj = document.createElement("object"); // Firefox says this is a function - ok( !jQuery.isFunction(obj), "Object Element" ); + assert.ok( !jQuery.isFunction(obj), "Object Element" ); // Since 1.3, this isn't supported (#2968) //ok( jQuery.isFunction(obj.getAttribute), "getAttribute Function" ); @@ -385,12 +385,12 @@ test("isFunction", function() { nodes = document.body.childNodes; // Safari says this is a function - ok( !jQuery.isFunction(nodes), "childNodes Property" ); + assert.ok( !jQuery.isFunction(nodes), "childNodes Property" ); first = document.body.firstChild; // Normal elements are reported ok everywhere - ok( !jQuery.isFunction(first), "A normal DOM Element" ); + assert.ok( !jQuery.isFunction(first), "A normal DOM Element" ); input = document.createElement("input"); input.type = "text"; @@ -406,7 +406,7 @@ test("isFunction", function() { document.body.appendChild( a ); // This serializes with the word 'function' in it - ok( !jQuery.isFunction(a), "Anchor Element" ); + assert.ok( !jQuery.isFunction(a), "Anchor Element" ); document.body.removeChild( a ); @@ -416,7 +416,7 @@ test("isFunction", function() { callback(response); } - ok( jQuery.isFunction(fn), "Recursive Function Call" ); + assert.ok( jQuery.isFunction(fn), "Recursive Function Call" ); fn({ some: "data" }); } @@ -426,8 +426,8 @@ test("isFunction", function() { }); }); -test( "isNumeric", function() { - expect( 38 ); +QUnit.test( "isNumeric", function( assert ) { + assert.expect( 38 ); var t = jQuery.isNumeric, ToString = function( value ) { @@ -436,53 +436,53 @@ test( "isNumeric", function() { }; }; - ok( t( "-10" ), "Negative integer string" ); - ok( t( "0" ), "Zero string" ); - ok( t( "5" ), "Positive integer string" ); - ok( t( -16 ), "Negative integer number" ); - ok( t( 0 ), "Zero integer number" ); - ok( t( 32 ), "Positive integer number" ); - ok( t( "040" ), "Octal integer literal string" ); - ok( t( "0xFF" ), "Hexadecimal integer literal string" ); - ok( t( 0xFFF ), "Hexadecimal integer literal" ); - ok( t( "-1.6" ), "Negative floating point string" ); - ok( t( "4.536" ), "Positive floating point string" ); - ok( t( -2.6 ), "Negative floating point number" ); - ok( t( 3.1415 ), "Positive floating point number" ); - ok( t( 1.5999999999999999 ), "Very precise floating point number" ); - ok( t( 8e5 ), "Exponential notation" ); - ok( t( "123e-2" ), "Exponential notation string" ); - ok( t( new ToString( "42" ) ), "Custom .toString returning number" ); - - equal( t( "" ), false, "Empty string" ); - equal( t( " " ), false, "Whitespace characters string" ); - equal( t( "\t\t" ), false, "Tab characters string" ); - equal( t( "abcdefghijklm1234567890" ), false, "Alphanumeric character string" ); - equal( t( "xabcdefx" ), false, "Non-numeric character string" ); - equal( t( true ), false, "Boolean true literal" ); - equal( t( false ), false, "Boolean false literal" ); - equal( t( "bcfed5.2" ), false, "Number with preceding non-numeric characters" ); - equal( t( "7.2acdgs" ), false, "Number with trailling non-numeric characters" ); - equal( t( undefined ), false, "Undefined value" ); - equal( t( null ), false, "Null value" ); - equal( t( NaN ), false, "NaN value" ); - equal( t( Infinity ), false, "Infinity primitive" ); - equal( t( Number.POSITIVE_INFINITY ), false, "Positive Infinity" ); - equal( t( Number.NEGATIVE_INFINITY ), false, "Negative Infinity" ); - equal( t( new ToString( "Devo" ) ), false, "Custom .toString returning non-number" ); - equal( t( {} ), false, "Empty object" ); - equal( t( [] ), false, "Empty array" ); - equal( t( [ 42 ] ), false, "Array with one number" ); - equal( t( function(){} ), false, "Instance of a function" ); - equal( t( new Date() ), false, "Instance of a Date" ); + assert.ok( t( "-10" ), "Negative integer string" ); + assert.ok( t( "0" ), "Zero string" ); + assert.ok( t( "5" ), "Positive integer string" ); + assert.ok( t( -16 ), "Negative integer number" ); + assert.ok( t( 0 ), "Zero integer number" ); + assert.ok( t( 32 ), "Positive integer number" ); + assert.ok( t( "040" ), "Octal integer literal string" ); + assert.ok( t( "0xFF" ), "Hexadecimal integer literal string" ); + assert.ok( t( 0xFFF ), "Hexadecimal integer literal" ); + assert.ok( t( "-1.6" ), "Negative floating point string" ); + assert.ok( t( "4.536" ), "Positive floating point string" ); + assert.ok( t( -2.6 ), "Negative floating point number" ); + assert.ok( t( 3.1415 ), "Positive floating point number" ); + assert.ok( t( 1.5999999999999999 ), "Very precise floating point number" ); + assert.ok( t( 8e5 ), "Exponential notation" ); + assert.ok( t( "123e-2" ), "Exponential notation string" ); + assert.ok( t( new ToString( "42" ) ), "Custom .toString returning number" ); + + assert.equal( t( "" ), false, "Empty string" ); + assert.equal( t( " " ), false, "Whitespace characters string" ); + assert.equal( t( "\t\t" ), false, "Tab characters string" ); + assert.equal( t( "abcdefghijklm1234567890" ), false, "Alphanumeric character string" ); + assert.equal( t( "xabcdefx" ), false, "Non-numeric character string" ); + assert.equal( t( true ), false, "Boolean true literal" ); + assert.equal( t( false ), false, "Boolean false literal" ); + assert.equal( t( "bcfed5.2" ), false, "Number with preceding non-numeric characters" ); + assert.equal( t( "7.2acdgs" ), false, "Number with trailling non-numeric characters" ); + assert.equal( t( undefined ), false, "Undefined value" ); + assert.equal( t( null ), false, "Null value" ); + assert.equal( t( NaN ), false, "NaN value" ); + assert.equal( t( Infinity ), false, "Infinity primitive" ); + assert.equal( t( Number.POSITIVE_INFINITY ), false, "Positive Infinity" ); + assert.equal( t( Number.NEGATIVE_INFINITY ), false, "Negative Infinity" ); + assert.equal( t( new ToString( "Devo" ) ), false, "Custom .toString returning non-number" ); + assert.equal( t( {} ), false, "Empty object" ); + assert.equal( t( [] ), false, "Empty array" ); + assert.equal( t( [ 42 ] ), false, "Array with one number" ); + assert.equal( t( function(){} ), false, "Instance of a function" ); + assert.equal( t( new Date() ), false, "Instance of a Date" ); }); -test("isXMLDoc - HTML", function() { - expect(4); +QUnit.test("isXMLDoc - HTML", function( assert ) { + assert.expect(4); - ok( !jQuery.isXMLDoc( document ), "HTML document" ); - ok( !jQuery.isXMLDoc( document.documentElement ), "HTML documentElement" ); - ok( !jQuery.isXMLDoc( document.body ), "HTML Body Element" ); + assert.ok( !jQuery.isXMLDoc( document ), "HTML document" ); + assert.ok( !jQuery.isXMLDoc( document.documentElement ), "HTML documentElement" ); + assert.ok( !jQuery.isXMLDoc( document.body ), "HTML Body Element" ); var body, iframe = document.createElement("iframe"); @@ -492,27 +492,27 @@ test("isXMLDoc - HTML", function() { body = jQuery(iframe).contents()[0]; try { - ok( !jQuery.isXMLDoc( body ), "Iframe body element" ); + assert.ok( !jQuery.isXMLDoc( body ), "Iframe body element" ); } catch(e) { - ok( false, "Iframe body element exception" ); + assert.ok( false, "Iframe body element exception" ); } } catch(e) { - ok( true, "Iframe body element - iframe not working correctly" ); + assert.ok( true, "Iframe body element - iframe not working correctly" ); } document.body.removeChild( iframe ); }); -test("XSS via location.hash", function() { - expect(1); +QUnit.test("XSS via location.hash", function( assert ) { + assert.expect(1); - stop(); + QUnit.stop(); jQuery["_check9521"] = function(x){ - ok( x, "script called from #id-like selector with inline handler" ); + assert.ok( x, "script called from #id-like selector with inline handler" ); jQuery("#check9521").remove(); delete jQuery["_check9521"]; - start(); + QUnit.start(); }; try { // This throws an error because it's processed like an id @@ -522,91 +522,91 @@ test("XSS via location.hash", function() { } }); -test("isXMLDoc - XML", function() { - expect(3); +QUnit.test("isXMLDoc - XML", function( assert ) { + assert.expect(3); var xml = createDashboardXML(); - ok( jQuery.isXMLDoc( xml ), "XML document" ); - ok( jQuery.isXMLDoc( xml.documentElement ), "XML documentElement" ); - ok( jQuery.isXMLDoc( jQuery("tab", xml)[0] ), "XML Tab Element" ); + assert.ok( jQuery.isXMLDoc( xml ), "XML document" ); + assert.ok( jQuery.isXMLDoc( xml.documentElement ), "XML documentElement" ); + assert.ok( jQuery.isXMLDoc( jQuery("tab", xml)[0] ), "XML Tab Element" ); }); -test("isWindow", function() { - expect( 14 ); - - ok( jQuery.isWindow(window), "window" ); - ok( jQuery.isWindow(document.getElementsByTagName("iframe")[0].contentWindow), "iframe.contentWindow" ); - ok( !jQuery.isWindow(), "empty" ); - ok( !jQuery.isWindow(null), "null" ); - ok( !jQuery.isWindow(undefined), "undefined" ); - ok( !jQuery.isWindow(document), "document" ); - ok( !jQuery.isWindow(document.documentElement), "documentElement" ); - ok( !jQuery.isWindow(""), "string" ); - ok( !jQuery.isWindow(1), "number" ); - ok( !jQuery.isWindow(true), "boolean" ); - ok( !jQuery.isWindow({}), "object" ); - ok( !jQuery.isWindow({ setInterval: function(){} }), "fake window" ); - ok( !jQuery.isWindow(/window/), "regexp" ); - ok( !jQuery.isWindow(function(){}), "function" ); +QUnit.test("isWindow", function( assert ) { + assert.expect( 14 ); + + assert.ok( jQuery.isWindow(window), "window" ); + assert.ok( jQuery.isWindow(document.getElementsByTagName("iframe")[0].contentWindow), "iframe.contentWindow" ); + assert.ok( !jQuery.isWindow(), "empty" ); + assert.ok( !jQuery.isWindow(null), "null" ); + assert.ok( !jQuery.isWindow(undefined), "undefined" ); + assert.ok( !jQuery.isWindow(document), "document" ); + assert.ok( !jQuery.isWindow(document.documentElement), "documentElement" ); + assert.ok( !jQuery.isWindow(""), "string" ); + assert.ok( !jQuery.isWindow(1), "number" ); + assert.ok( !jQuery.isWindow(true), "boolean" ); + assert.ok( !jQuery.isWindow({}), "object" ); + assert.ok( !jQuery.isWindow({ setInterval: function(){} }), "fake window" ); + assert.ok( !jQuery.isWindow(/window/), "regexp" ); + assert.ok( !jQuery.isWindow(function(){}), "function" ); }); -test("jQuery('html')", function() { - expect( 18 ); +QUnit.test("jQuery('html')", function( assert ) { + assert.expect( 18 ); var s, div, j; jQuery["foo"] = false; s = jQuery("<script>jQuery.foo='test';</script>")[0]; - ok( s, "Creating a script" ); - ok( !jQuery["foo"], "Make sure the script wasn't executed prematurely" ); + assert.ok( s, "Creating a script" ); + assert.ok( !jQuery["foo"], "Make sure the script wasn't executed prematurely" ); jQuery("body").append("<script>jQuery.foo='test';</script>"); - ok( jQuery["foo"], "Executing a scripts contents in the right context" ); + assert.ok( jQuery["foo"], "Executing a scripts contents in the right context" ); // Test multi-line HTML div = jQuery("<div>\r\nsome text\n<p>some p</p>\nmore text\r\n</div>")[0]; - equal( div.nodeName.toUpperCase(), "DIV", "Make sure we're getting a div." ); - equal( div.firstChild.nodeType, 3, "Text node." ); - equal( div.lastChild.nodeType, 3, "Text node." ); - equal( div.childNodes[1].nodeType, 1, "Paragraph." ); - equal( div.childNodes[1].firstChild.nodeType, 3, "Paragraph text." ); + assert.equal( div.nodeName.toUpperCase(), "DIV", "Make sure we're getting a div." ); + assert.equal( div.firstChild.nodeType, 3, "Text node." ); + assert.equal( div.lastChild.nodeType, 3, "Text node." ); + assert.equal( div.childNodes[1].nodeType, 1, "Paragraph." ); + assert.equal( div.childNodes[1].firstChild.nodeType, 3, "Paragraph text." ); - ok( jQuery("<link rel='stylesheet'/>")[0], "Creating a link" ); + assert.ok( jQuery("<link rel='stylesheet'/>")[0], "Creating a link" ); - ok( !jQuery("<script/>")[0].parentNode, "Create a script" ); + assert.ok( !jQuery("<script/>")[0].parentNode, "Create a script" ); - ok( jQuery("<input/>").attr("type", "hidden"), "Create an input and set the type." ); + assert.ok( jQuery("<input/>").attr("type", "hidden"), "Create an input and set the type." ); j = jQuery("<span>hi</span> there <!-- mon ami -->"); - ok( j.length >= 2, "Check node,textnode,comment creation (some browsers delete comments)" ); + assert.ok( j.length >= 2, "Check node,textnode,comment creation (some browsers delete comments)" ); - ok( !jQuery("<option>test</option>")[0].selected, "Make sure that options are auto-selected #2050" ); + assert.ok( !jQuery("<option>test</option>")[0].selected, "Make sure that options are auto-selected #2050" ); - ok( jQuery("<div></div>")[0], "Create a div with closing tag." ); - ok( jQuery("<table></table>")[0], "Create a table with closing tag." ); + assert.ok( jQuery("<div></div>")[0], "Create a div with closing tag." ); + assert.ok( jQuery("<table></table>")[0], "Create a table with closing tag." ); - equal( jQuery( "element[attribute='<div></div>']" ).length, 0, + assert.equal( jQuery( "element[attribute='<div></div>']" ).length, 0, "When html is within brackets, do not recognize as html." ); //equal( jQuery( "element[attribute=<div></div>]" ).length, 0, // "When html is within brackets, do not recognize as html." ); - equal( jQuery( "element:not(<div></div>)" ).length, 0, + assert.equal( jQuery( "element:not(<div></div>)" ).length, 0, "When html is within parens, do not recognize as html." ); - equal( jQuery( "\\<div\\>" ).length, 0, "Ignore escaped html characters" ); + assert.equal( jQuery( "\\<div\\>" ).length, 0, "Ignore escaped html characters" ); }); -test("jQuery(tag-hyphenated elements) gh-1987", function() { - expect( 17 ); +QUnit.test("jQuery(tag-hyphenated elements) gh-1987", function( assert ) { + assert.expect( 17 ); jQuery.each( "thead tbody tfoot colgroup caption tr th td".split(" "), function( i, name ) { var j = jQuery("<" + name + "-d></" + name + "-d>"); - ok( j[0], "Create a tag-hyphenated elements" ); - ok( jQuery.nodeName(j[0], name.toUpperCase() + "-D"), "Tag-hyphenated element has expected node name" ); + assert.ok( j[0], "Create a tag-hyphenated elements" ); + assert.ok( jQuery.nodeName(j[0], name.toUpperCase() + "-D"), "Tag-hyphenated element has expected node name" ); }); var j = jQuery("<tr-multiple-hyphens></tr-multiple-hyphens>"); - ok( jQuery.nodeName(j[0], "TR-MULTIPLE-HYPHENS"), "Element with multiple hyphens in its tag has expected node name" ); + assert.ok( jQuery.nodeName(j[0], "TR-MULTIPLE-HYPHENS"), "Element with multiple hyphens in its tag has expected node name" ); }); -test("jQuery('massive html #7990')", function() { - expect( 3 ); +QUnit.test("jQuery('massive html #7990')", function( assert ) { + assert.expect( 3 ); var i, li = "<li>very very very very large html string</li>", @@ -617,59 +617,59 @@ test("jQuery('massive html #7990')", function() { } html[html.length] = "</ul>"; html = jQuery(html.join(""))[0]; - equal( html.nodeName.toLowerCase(), "ul"); - equal( html.firstChild.nodeName.toLowerCase(), "li"); - equal( html.childNodes.length, 30000 ); + assert.equal( html.nodeName.toLowerCase(), "ul"); + assert.equal( html.firstChild.nodeName.toLowerCase(), "li"); + assert.equal( html.childNodes.length, 30000 ); }); -test("jQuery('html', context)", function() { - expect(1); +QUnit.test("jQuery('html', context)", function( assert ) { + assert.expect(1); var $div = jQuery("<div/>")[0], $span = jQuery("<span/>", $div); - equal($span.length, 1, "verify a span created with a div context works, #1763"); + assert.equal($span.length, 1, "verify a span created with a div context works, #1763"); }); -test("jQuery(selector, xml).text(str) - loaded via xml document", function() { - expect(2); +QUnit.test("jQuery(selector, xml).text(str) - loaded via xml document", function( assert ) { + assert.expect(2); var xml = createDashboardXML(), // tests for #1419 where ie was a problem tab = jQuery("tab", xml).eq(0); - equal( tab.text(), "blabla", "verify initial text correct" ); + assert.equal( tab.text(), "blabla", "verify initial text correct" ); tab.text("newtext"); - equal( tab.text(), "newtext", "verify new text correct" ); + assert.equal( tab.text(), "newtext", "verify new text correct" ); }); -test("end()", function() { - expect(3); - equal( "Yahoo", jQuery("#yahoo").parent().end().text(), "check for end" ); - ok( jQuery("#yahoo").end(), "check for end with nothing to end" ); +QUnit.test("end()", function( assert ) { + assert.expect(3); + assert.equal( "Yahoo", jQuery("#yahoo").parent().end().text(), "check for end" ); + assert.ok( jQuery("#yahoo").end(), "check for end with nothing to end" ); var x = jQuery("#yahoo"); x.parent(); - equal( "Yahoo", jQuery("#yahoo").text(), "check for non-destructive behaviour" ); + assert.equal( "Yahoo", jQuery("#yahoo").text(), "check for non-destructive behaviour" ); }); -test("length", function() { - expect(1); - equal( jQuery("#qunit-fixture p").length, 6, "Get Number of Elements Found" ); +QUnit.test("length", function( assert ) { + assert.expect(1); + assert.equal( jQuery("#qunit-fixture p").length, 6, "Get Number of Elements Found" ); }); -test("get()", function() { - expect(1); - deepEqual( jQuery("#qunit-fixture p").get(), q("firstp","ap","sndp","en","sap","first"), "Get All Elements" ); +QUnit.test("get()", function( assert ) { + assert.expect(1); + assert.deepEqual( jQuery("#qunit-fixture p").get(), q("firstp","ap","sndp","en","sap","first"), "Get All Elements" ); }); -test("toArray()", function() { - expect(1); - deepEqual( jQuery("#qunit-fixture p").toArray(), +QUnit.test("toArray()", function( assert ) { + assert.expect(1); + assert.deepEqual( jQuery("#qunit-fixture p").toArray(), q("firstp","ap","sndp","en","sap","first"), "Convert jQuery object to an Array" ); }); -test("inArray()", function() { - expect(19); +QUnit.test("inArray()", function( assert ) { + assert.expect(19); var selections = { p: q("firstp", "sap", "ap", "first"), @@ -691,33 +691,33 @@ test("inArray()", function() { }; jQuery.each( tests, function( key, obj ) { - equal( jQuery.inArray( obj.elem, selections[ key ] ), obj.index, "elem is in the array of selections of its tag" ); + assert.equal( jQuery.inArray( obj.elem, selections[ key ] ), obj.index, "elem is in the array of selections of its tag" ); // Third argument (fromIndex) - 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" ); - 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" ); - equal( !!~jQuery.inArray( obj.elem, selections[ key ], -3 ), true, "elem is in the array of selections given a negative index" ); + assert.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" ); + assert.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" ); + assert.equal( !!~jQuery.inArray( obj.elem, selections[ key ], -3 ), true, "elem is in the array of selections given a negative index" ); }); jQuery.each( falseTests, function( key, elem ) { - equal( !!~jQuery.inArray( elem, selections[ key ] ), false, "elem is NOT in the array of selections" ); + assert.equal( !!~jQuery.inArray( elem, selections[ key ] ), false, "elem is NOT in the array of selections" ); }); }); -test("get(Number)", function() { - expect(2); - equal( jQuery("#qunit-fixture p").get(0), document.getElementById("firstp"), "Get A Single Element" ); - strictEqual( jQuery("#firstp").get(1), undefined, "Try get with index larger elements count" ); +QUnit.test("get(Number)", function( assert ) { + assert.expect(2); + assert.equal( jQuery("#qunit-fixture p").get(0), document.getElementById("firstp"), "Get A Single Element" ); + assert.strictEqual( jQuery("#firstp").get(1), undefined, "Try get with index larger elements count" ); }); -test("get(-Number)",function() { - expect(2); - equal( jQuery("p").get(-1), document.getElementById("first"), "Get a single element with negative index" ); - strictEqual( jQuery("#firstp").get(-2), undefined, "Try get with index negative index larger then elements count" ); +QUnit.test("get(-Number)",function( assert ) { + assert.expect(2); + assert.equal( jQuery("p").get(-1), document.getElementById("first"), "Get a single element with negative index" ); + assert.strictEqual( jQuery("#firstp").get(-2), undefined, "Try get with index negative index larger then elements count" ); }); -test("each(Function)", function() { - expect(1); +QUnit.test("each(Function)", function( assert ) { + assert.expect(1); var div, pass, i; div = jQuery("div"); @@ -728,40 +728,40 @@ test("each(Function)", function() { pass = false; } } - ok( pass, "Execute a function, Relative" ); + assert.ok( pass, "Execute a function, Relative" ); }); -test("slice()", function() { - expect(7); +QUnit.test("slice()", function( assert ) { + assert.expect(7); var $links = jQuery("#ap a"); - deepEqual( $links.slice(1,2).get(), q("groups"), "slice(1,2)" ); - deepEqual( $links.slice(1).get(), q("groups", "anchor1", "mark"), "slice(1)" ); - deepEqual( $links.slice(0,3).get(), q("google", "groups", "anchor1"), "slice(0,3)" ); - deepEqual( $links.slice(-1).get(), q("mark"), "slice(-1)" ); + assert.deepEqual( $links.slice(1,2).get(), q("groups"), "slice(1,2)" ); + assert.deepEqual( $links.slice(1).get(), q("groups", "anchor1", "mark"), "slice(1)" ); + assert.deepEqual( $links.slice(0,3).get(), q("google", "groups", "anchor1"), "slice(0,3)" ); + assert.deepEqual( $links.slice(-1).get(), q("mark"), "slice(-1)" ); - deepEqual( $links.eq(1).get(), q("groups"), "eq(1)" ); - deepEqual( $links.eq("2").get(), q("anchor1"), "eq('2')" ); - deepEqual( $links.eq(-1).get(), q("mark"), "eq(-1)" ); + assert.deepEqual( $links.eq(1).get(), q("groups"), "eq(1)" ); + assert.deepEqual( $links.eq("2").get(), q("anchor1"), "eq('2')" ); + assert.deepEqual( $links.eq(-1).get(), q("mark"), "eq(-1)" ); }); -test("first()/last()", function() { - expect(4); +QUnit.test("first()/last()", function( assert ) { + assert.expect(4); var $links = jQuery("#ap a"), $none = jQuery("asdf"); - deepEqual( $links.first().get(), q("google"), "first()" ); - deepEqual( $links.last().get(), q("mark"), "last()" ); + assert.deepEqual( $links.first().get(), q("google"), "first()" ); + assert.deepEqual( $links.last().get(), q("mark"), "last()" ); - deepEqual( $none.first().get(), [], "first() none" ); - deepEqual( $none.last().get(), [], "last() none" ); + assert.deepEqual( $none.first().get(), [], "first() none" ); + assert.deepEqual( $none.last().get(), [], "last() none" ); }); -test("map()", function() { - expect( 2 ); +QUnit.test("map()", function( assert ) { + assert.expect( 2 ); - deepEqual( + assert.deepEqual( jQuery("#ap").map(function() { return jQuery( this ).find("a").get(); }).get(), @@ -769,7 +769,7 @@ test("map()", function() { "Array Map" ); - deepEqual( + assert.deepEqual( jQuery("#ap > a").map(function() { return this.parentNode; }).get(), @@ -778,40 +778,40 @@ test("map()", function() { ); }); -test("jQuery.map", function() { - expect( 25 ); +QUnit.test("jQuery.map", function( assert ) { + assert.expect( 25 ); var i, label, result, callback; result = jQuery.map( [ 3, 4, 5 ], function( v, k ) { return k; }); - equal( result.join(""), "012", "Map the keys from an array" ); + assert.equal( result.join(""), "012", "Map the keys from an array" ); result = jQuery.map( [ 3, 4, 5 ], function( v ) { return v; }); - equal( result.join(""), "345", "Map the values from an array" ); + assert.equal( result.join(""), "345", "Map the values from an array" ); result = jQuery.map( { a: 1, b: 2 }, function( v, k ) { return k; }); - equal( result.join(""), "ab", "Map the keys from an object" ); + assert.equal( result.join(""), "ab", "Map the keys from an object" ); result = jQuery.map( { a: 1, b: 2 }, function( v ) { return v; }); - equal( result.join(""), "12", "Map the values from an object" ); + assert.equal( result.join(""), "12", "Map the values from an object" ); result = jQuery.map( [ "a", undefined, null, "b" ], function( v ) { return v; }); - equal( result.join(""), "ab", "Array iteration does not include undefined/null results" ); + assert.equal( result.join(""), "ab", "Array iteration does not include undefined/null results" ); result = jQuery.map( { a: "a", b: undefined, c: null, d: "b" }, function( v ) { return v; }); - equal( result.join(""), "ab", "Object iteration does not include undefined/null results" ); + assert.equal( result.join(""), "ab", "Object iteration does not include undefined/null results" ); result = { Zero: function() {}, @@ -819,7 +819,7 @@ test("jQuery.map", function() { Two: function( a, b ) { a = a; b = b; } }; callback = function( v, k ) { - equal( k, "foo", label + "-argument function treated like object" ); + assert.equal( k, "foo", label + "-argument function treated like object" ); }; for ( i in result ) { label = i; @@ -839,7 +839,7 @@ test("jQuery.map", function() { "excess": 1 }; callback = function( v, k ) { - equal( k, "length", "Object with " + label + " length treated like object" ); + assert.equal( k, "length", "Object with " + label + " length treated like object" ); }; for ( i in result ) { label = i; @@ -855,7 +855,7 @@ test("jQuery.map", function() { callback = function( v, k ) { if ( result[ label ] ) { delete result[ label ]; - equal( k, "0", label + " treated like array" ); + assert.equal( k, "0", label + " treated like array" ); } }; for ( i in result ) { @@ -867,104 +867,104 @@ test("jQuery.map", function() { jQuery.map( { length: 0 }, function() { result = true; }); - ok( !result, "length: 0 plain object treated like array" ); + assert.ok( !result, "length: 0 plain object treated like array" ); result = false; jQuery.map( document.getElementsByTagName("asdf"), function() { result = true; }); - ok( !result, "empty NodeList treated like array" ); + assert.ok( !result, "empty NodeList treated like array" ); result = jQuery.map( Array(4), function( v, k ){ return k % 2 ? k : [k,k,k]; }); - equal( result.join(""), "00012223", "Array results flattened (#2616)" ); + assert.equal( result.join(""), "00012223", "Array results flattened (#2616)" ); }); -test("jQuery.merge()", function() { - expect( 10 ); +QUnit.test("jQuery.merge()", function( assert ) { + assert.expect( 10 ); - deepEqual( + assert.deepEqual( jQuery.merge( [], [] ), [], "Empty arrays" ); - deepEqual( + assert.deepEqual( jQuery.merge( [ 1 ], [ 2 ] ), [ 1, 2 ], "Basic (single-element)" ); - deepEqual( + assert.deepEqual( jQuery.merge( [ 1, 2 ], [ 3, 4 ] ), [ 1, 2, 3, 4 ], "Basic (multiple-element)" ); - deepEqual( + assert.deepEqual( jQuery.merge( [ 1, 2 ], [] ), [ 1, 2 ], "Second empty" ); - deepEqual( + assert.deepEqual( jQuery.merge( [], [ 1, 2 ] ), [ 1, 2 ], "First empty" ); // Fixed at [5998], #3641 - deepEqual( + assert.deepEqual( jQuery.merge( [ -2, -1 ], [ 0, 1, 2 ] ), [ -2, -1 , 0, 1, 2 ], "Second array including a zero (falsy)" ); // After fixing #5527 - deepEqual( + assert.deepEqual( jQuery.merge( [], [ null, undefined ] ), [ null, undefined ], "Second array including null and undefined values" ); - deepEqual( + assert.deepEqual( jQuery.merge( { length: 0 }, [ 1, 2 ] ), { length: 2, 0: 1, 1: 2 }, "First array like" ); - deepEqual( + assert.deepEqual( jQuery.merge( [ 1, 2 ], { length: 1, 0: 3 } ), [ 1, 2, 3 ], "Second array like" ); - deepEqual( + assert.deepEqual( jQuery.merge( [], document.getElementById("lengthtest").getElementsByTagName("input") ), [ document.getElementById("length"), document.getElementById("idTest") ], "Second NodeList" ); }); -test("jQuery.grep()", function() { - expect(8); +QUnit.test("jQuery.grep()", function( assert ) { + assert.expect(8); var searchCriterion = function( value ) { return value % 2 === 0; }; - deepEqual( jQuery.grep( [], searchCriterion ), [], "Empty array" ); - deepEqual( jQuery.grep( new Array(4), searchCriterion ), [], "Sparse array" ); + assert.deepEqual( jQuery.grep( [], searchCriterion ), [], "Empty array" ); + assert.deepEqual( jQuery.grep( new Array(4), searchCriterion ), [], "Sparse array" ); - deepEqual( jQuery.grep( [ 1, 2, 3, 4, 5, 6 ], searchCriterion ), [ 2, 4, 6 ], "Satisfying elements present" ); - deepEqual( jQuery.grep( [ 1, 3, 5, 7], searchCriterion ), [], "Satisfying elements absent" ); + assert.deepEqual( jQuery.grep( [ 1, 2, 3, 4, 5, 6 ], searchCriterion ), [ 2, 4, 6 ], "Satisfying elements present" ); + assert.deepEqual( jQuery.grep( [ 1, 3, 5, 7], searchCriterion ), [], "Satisfying elements absent" ); - deepEqual( jQuery.grep( [ 1, 2, 3, 4, 5, 6 ], searchCriterion, true ), [ 1, 3, 5 ], "Satisfying elements present and grep inverted" ); - deepEqual( jQuery.grep( [ 1, 3, 5, 7], searchCriterion, true ), [1, 3, 5, 7], "Satisfying elements absent and grep inverted" ); + assert.deepEqual( jQuery.grep( [ 1, 2, 3, 4, 5, 6 ], searchCriterion, true ), [ 1, 3, 5 ], "Satisfying elements present and grep inverted" ); + assert.deepEqual( jQuery.grep( [ 1, 3, 5, 7], searchCriterion, true ), [1, 3, 5, 7], "Satisfying elements absent and grep inverted" ); - deepEqual( jQuery.grep( [ 1, 2, 3, 4, 5, 6 ], searchCriterion, false ), [ 2, 4, 6 ], "Satisfying elements present but grep explicitly uninverted" ); - deepEqual( jQuery.grep( [ 1, 3, 5, 7 ], searchCriterion, false ), [], "Satisfying elements absent and grep explicitly uninverted" ); + assert.deepEqual( jQuery.grep( [ 1, 2, 3, 4, 5, 6 ], searchCriterion, false ), [ 2, 4, 6 ], "Satisfying elements present but grep explicitly uninverted" ); + assert.deepEqual( jQuery.grep( [ 1, 3, 5, 7 ], searchCriterion, false ), [], "Satisfying elements absent and grep explicitly uninverted" ); }); -test("jQuery.extend(Object, Object)", function() { - expect(28); +QUnit.test("jQuery.extend(Object, Object)", function( assert ) { + assert.expect(28); var empty, optionsWithLength, optionsWithDate, myKlass, customObject, optionsWithCustomObject, MyNumber, ret, @@ -982,33 +982,33 @@ test("jQuery.extend(Object, Object)", function() { nestedarray = { "arr": arr }; jQuery.extend(settings, options); - deepEqual( settings, merged, "Check if extended: settings must be extended" ); - deepEqual( options, optionsCopy, "Check if not modified: options must not be modified" ); + assert.deepEqual( settings, merged, "Check if extended: settings must be extended" ); + assert.deepEqual( options, optionsCopy, "Check if not modified: options must not be modified" ); jQuery.extend(settings, null, options); - deepEqual( settings, merged, "Check if extended: settings must be extended" ); - deepEqual( options, optionsCopy, "Check if not modified: options must not be modified" ); + assert.deepEqual( settings, merged, "Check if extended: settings must be extended" ); + assert.deepEqual( options, optionsCopy, "Check if not modified: options must not be modified" ); jQuery.extend(true, deep1, deep2); - deepEqual( deep1["foo"], deepmerged["foo"], "Check if foo: settings must be extended" ); - deepEqual( deep2["foo"], deep2copy["foo"], "Check if not deep2: options must not be modified" ); - equal( deep1["foo2"], document, "Make sure that a deep clone was not attempted on the document" ); + assert.deepEqual( deep1["foo"], deepmerged["foo"], "Check if foo: settings must be extended" ); + assert.deepEqual( deep2["foo"], deep2copy["foo"], "Check if not deep2: options must not be modified" ); + assert.equal( deep1["foo2"], document, "Make sure that a deep clone was not attempted on the document" ); - ok( jQuery.extend(true, {}, nestedarray)["arr"] !== arr, "Deep extend of object must clone child array" ); + assert.ok( jQuery.extend(true, {}, nestedarray)["arr"] !== arr, "Deep extend of object must clone child array" ); // #5991 - ok( jQuery.isArray( jQuery.extend(true, { "arr": {} }, nestedarray)["arr"] ), "Cloned array have to be an Array" ); - ok( jQuery.isPlainObject( jQuery.extend(true, { "arr": arr }, { "arr": {} })["arr"] ), "Cloned object have to be an plain object" ); + assert.ok( jQuery.isArray( jQuery.extend(true, { "arr": {} }, nestedarray)["arr"] ), "Cloned array have to be an Array" ); + assert.ok( jQuery.isPlainObject( jQuery.extend(true, { "arr": arr }, { "arr": {} })["arr"] ), "Cloned object have to be an plain object" ); empty = {}; optionsWithLength = { "foo": { "length": -1 } }; jQuery.extend(true, empty, optionsWithLength); - deepEqual( empty["foo"], optionsWithLength["foo"], "The length property must copy correctly" ); + assert.deepEqual( empty["foo"], optionsWithLength["foo"], "The length property must copy correctly" ); empty = {}; optionsWithDate = { "foo": { "date": new Date() } }; jQuery.extend(true, empty, optionsWithDate); - deepEqual( empty["foo"], optionsWithDate["foo"], "Dates copy correctly" ); + assert.deepEqual( empty["foo"], optionsWithDate["foo"], "Dates copy correctly" ); /** @constructor */ myKlass = function() {}; @@ -1016,50 +1016,50 @@ test("jQuery.extend(Object, Object)", function() { optionsWithCustomObject = { "foo": { "date": customObject } }; empty = {}; jQuery.extend(true, empty, optionsWithCustomObject); - ok( empty["foo"] && empty["foo"]["date"] === customObject, "Custom objects copy correctly (no methods)" ); + assert.ok( empty["foo"] && empty["foo"]["date"] === customObject, "Custom objects copy correctly (no methods)" ); // Makes the class a little more realistic myKlass.prototype = { "someMethod": function(){} }; empty = {}; jQuery.extend(true, empty, optionsWithCustomObject); - ok( empty["foo"] && empty["foo"]["date"] === customObject, "Custom objects copy correctly" ); + assert.ok( empty["foo"] && empty["foo"]["date"] === customObject, "Custom objects copy correctly" ); MyNumber = Number; ret = jQuery.extend(true, { "foo": 4 }, { "foo": new MyNumber(5) } ); - ok( parseInt(ret.foo, 10) === 5, "Wrapped numbers copy correctly" ); + assert.ok( parseInt(ret.foo, 10) === 5, "Wrapped numbers copy correctly" ); nullUndef; nullUndef = jQuery.extend({}, options, { "xnumber2": null }); - ok( nullUndef["xnumber2"] === null, "Check to make sure null values are copied"); + assert.ok( nullUndef["xnumber2"] === null, "Check to make sure null values are copied"); nullUndef = jQuery.extend({}, options, { "xnumber2": undefined }); - ok( nullUndef["xnumber2"] === options["xnumber2"], "Check to make sure undefined values are not copied"); + assert.ok( nullUndef["xnumber2"] === options["xnumber2"], "Check to make sure undefined values are not copied"); nullUndef = jQuery.extend({}, options, { "xnumber0": null }); - ok( nullUndef["xnumber0"] === null, "Check to make sure null values are inserted"); + assert.ok( nullUndef["xnumber0"] === null, "Check to make sure null values are inserted"); target = {}; recursive = { foo:target, bar:5 }; jQuery.extend(true, target, recursive); - deepEqual( target, { bar:5 }, "Check to make sure a recursive obj doesn't go never-ending loop by not copying it over" ); + assert.deepEqual( target, { bar:5 }, "Check to make sure a recursive obj doesn't go never-ending loop by not copying it over" ); ret = jQuery.extend(true, { foo: [] }, { foo: [0] } ); // 1907 - equal( ret.foo.length, 1, "Check to make sure a value with coercion 'false' copies over when necessary to fix #1907" ); + assert.equal( ret.foo.length, 1, "Check to make sure a value with coercion 'false' copies over when necessary to fix #1907" ); ret = jQuery.extend(true, { foo: "1,2,3" }, { foo: [1, 2, 3] } ); - ok( typeof ret.foo !== "string", "Check to make sure values equal with coercion (but not actually equal) overwrite correctly" ); + assert.ok( typeof ret.foo !== "string", "Check to make sure values equal with coercion (but not actually equal) overwrite correctly" ); ret = jQuery.extend(true, { foo:"bar" }, { foo:null } ); - ok( typeof ret.foo !== "undefined", "Make sure a null value doesn't crash with deep extend, for #1908" ); + assert.ok( typeof ret.foo !== "undefined", "Make sure a null value doesn't crash with deep extend, for #1908" ); obj = { foo:null }; jQuery.extend(true, obj, { foo:"notnull" } ); - equal( obj.foo, "notnull", "Make sure a null value can be overwritten" ); + assert.equal( obj.foo, "notnull", "Make sure a null value can be overwritten" ); function func() {} jQuery.extend(func, { key: "value" } ); - equal( func.key, "value", "Verify a function can be extended" ); + assert.equal( func.key, "value", "Verify a function can be extended" ); defaults = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" }; defaultsCopy = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" }; @@ -1070,14 +1070,14 @@ test("jQuery.extend(Object, Object)", function() { merged2 = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "xx", xxx: "newstringx" }; settings = jQuery.extend({}, defaults, options1, options2); - deepEqual( settings, merged2, "Check if extended: settings must be extended" ); - deepEqual( defaults, defaultsCopy, "Check if not modified: options1 must not be modified" ); - deepEqual( options1, options1Copy, "Check if not modified: options1 must not be modified" ); - deepEqual( options2, options2Copy, "Check if not modified: options2 must not be modified" ); + assert.deepEqual( settings, merged2, "Check if extended: settings must be extended" ); + assert.deepEqual( defaults, defaultsCopy, "Check if not modified: options1 must not be modified" ); + assert.deepEqual( options1, options1Copy, "Check if not modified: options1 must not be modified" ); + assert.deepEqual( options2, options2Copy, "Check if not modified: options2 must not be modified" ); }); -test("jQuery.extend(true,{},{a:[], o:{}}); deep copy with array, followed by object", function() { - expect(2); +QUnit.test("jQuery.extend(true,{},{a:[], o:{}}); deep copy with array, followed by object", function( assert ) { + assert.expect(2); var result, initial = { // This will make "copyIsArray" true @@ -1093,12 +1093,12 @@ test("jQuery.extend(true,{},{a:[], o:{}}); deep copy with array, followed by obj result = jQuery.extend( true, {}, initial ); - deepEqual( result, initial, "The [result] and [initial] have equal shape and values" ); - ok( !jQuery.isArray( result.object ), "result.object wasn't paved with an empty array" ); + assert.deepEqual( result, initial, "The [result] and [initial] have equal shape and values" ); + assert.ok( !jQuery.isArray( result.object ), "result.object wasn't paved with an empty array" ); }); -test("jQuery.each(Object,Function)", function() { - expect( 23 ); +QUnit.test("jQuery.each(Object,Function)", function( assert ) { + assert.expect( 23 ); var i, label, seen, callback; @@ -1106,13 +1106,13 @@ test("jQuery.each(Object,Function)", function() { jQuery.each( [ 3, 4, 5 ], function( k, v ) { seen[ k ] = v; }); - deepEqual( seen, { "0": 3, "1": 4, "2": 5 }, "Array iteration" ); + assert.deepEqual( seen, { "0": 3, "1": 4, "2": 5 }, "Array iteration" ); seen = {}; jQuery.each( { name: "name", lang: "lang" }, function( k, v ) { seen[ k ] = v; }); - deepEqual( seen, { name: "name", lang: "lang" }, "Object iteration" ); + assert.deepEqual( seen, { name: "name", lang: "lang" }, "Object iteration" ); seen = []; jQuery.each( [ 1, 2, 3 ], function( k, v ) { @@ -1121,14 +1121,14 @@ test("jQuery.each(Object,Function)", function() { return false; } }); - deepEqual( seen, [ 1, 2 ] , "Broken array iteration" ); + assert.deepEqual( seen, [ 1, 2 ] , "Broken array iteration" ); seen = []; jQuery.each( {"a": 1, "b": 2,"c": 3 }, function( k, v ) { seen.push( v ); return false; }); - deepEqual( seen, [ 1 ], "Broken object iteration" ); + assert.deepEqual( seen, [ 1 ], "Broken object iteration" ); seen = { Zero: function() {}, @@ -1136,7 +1136,7 @@ test("jQuery.each(Object,Function)", function() { Two: function( a, b ) { a = a; b = b; } }; callback = function( k ) { - equal( k, "foo", label + "-argument function treated like object" ); + assert.equal( k, "foo", label + "-argument function treated like object" ); }; for ( i in seen ) { label = i; @@ -1156,7 +1156,7 @@ test("jQuery.each(Object,Function)", function() { "excess": 1 }; callback = function( k ) { - equal( k, "length", "Object with " + label + " length treated like object" ); + assert.equal( k, "length", "Object with " + label + " length treated like object" ); }; for ( i in seen ) { label = i; @@ -1172,7 +1172,7 @@ test("jQuery.each(Object,Function)", function() { callback = function( k ) { if ( seen[ label ] ) { delete seen[ label ]; - equal( k, "0", label + " treated like array" ); + assert.equal( k, "0", label + " treated like array" ); return false; } }; @@ -1185,37 +1185,37 @@ test("jQuery.each(Object,Function)", function() { jQuery.each( { length: 0 }, function() { seen = true; }); - ok( !seen, "length: 0 plain object treated like array" ); + assert.ok( !seen, "length: 0 plain object treated like array" ); seen = false; jQuery.each( document.getElementsByTagName("asdf"), function() { seen = true; }); - ok( !seen, "empty NodeList treated like array" ); + assert.ok( !seen, "empty NodeList treated like array" ); i = 0; jQuery.each( document.styleSheets, function() { i++; }); - equal( i, document.styleSheets.length, "Iteration over document.styleSheets" ); + assert.equal( i, document.styleSheets.length, "Iteration over document.styleSheets" ); }); -test("jQuery.each/map(undefined/null,Function)", function() { - expect( 1 ); +QUnit.test("jQuery.each/map(undefined/null,Function)", function( assert ) { + assert.expect( 1 ); try { jQuery.each( undefined, jQuery.noop ); jQuery.each( null, jQuery.noop ); jQuery.map( undefined, jQuery.noop ); jQuery.map( null, jQuery.noop ); - ok( true, "jQuery.each/map( undefined/null, function() {} );" ); + assert.ok( true, "jQuery.each/map( undefined/null, function() {} );" ); } catch ( e ) { - ok( false, "each/map must accept null and undefined values" ); + assert.ok( false, "each/map must accept null and undefined values" ); } }); -test( "JIT compilation does not interfere with length retrieval (gh-2145)", function() { - expect( 4 ); +QUnit.test( "JIT compilation does not interfere with length retrieval (gh-2145)", function( assert ) { + assert.expect( 4 ); var i; @@ -1228,73 +1228,73 @@ test( "JIT compilation does not interfere with length retrieval (gh-2145)", func i = 0; jQuery.each( { 1: "1", 2: "2", 3: "3" }, function( index ) { - equal( ++i, index, "Iteration over object with solely " + + assert.equal( ++i, index, "Iteration over object with solely " + "numeric indices (gh-2145 JIT iOS 8 bug)" ); }); - equal( i, 3, "Iteration over object with solely " + + assert.equal( i, 3, "Iteration over object with solely " + "numeric indices (gh-2145 JIT iOS 8 bug)" ); }); -test("jQuery.makeArray", function(){ - expect(15); +QUnit.test("jQuery.makeArray", function( assert ){ + assert.expect(15); - equal( jQuery.makeArray(jQuery("html>*"))[0].nodeName.toUpperCase(), "HEAD", "Pass makeArray a jQuery object" ); + assert.equal( jQuery.makeArray(jQuery("html>*"))[0].nodeName.toUpperCase(), "HEAD", "Pass makeArray a jQuery object" ); - equal( jQuery.makeArray(document.getElementsByName("PWD")).slice(0,1)[0].name, "PWD", "Pass makeArray a nodelist" ); + assert.equal( jQuery.makeArray(document.getElementsByName("PWD")).slice(0,1)[0].name, "PWD", "Pass makeArray a nodelist" ); - equal( (function() { return jQuery.makeArray(arguments); })(1,2).join(""), "12", "Pass makeArray an arguments array" ); + assert.equal( (function() { return jQuery.makeArray(arguments); })(1,2).join(""), "12", "Pass makeArray an arguments array" ); - equal( jQuery.makeArray([1,2,3]).join(""), "123", "Pass makeArray a real array" ); + assert.equal( jQuery.makeArray([1,2,3]).join(""), "123", "Pass makeArray a real array" ); - equal( jQuery.makeArray().length, 0, "Pass nothing to makeArray and expect an empty array" ); + assert.equal( jQuery.makeArray().length, 0, "Pass nothing to makeArray and expect an empty array" ); - equal( jQuery.makeArray( 0 )[0], 0 , "Pass makeArray a number" ); + assert.equal( jQuery.makeArray( 0 )[0], 0 , "Pass makeArray a number" ); - equal( jQuery.makeArray( "foo" )[0], "foo", "Pass makeArray a string" ); + assert.equal( jQuery.makeArray( "foo" )[0], "foo", "Pass makeArray a string" ); - equal( jQuery.makeArray( true )[0].constructor, Boolean, "Pass makeArray a boolean" ); + assert.equal( jQuery.makeArray( true )[0].constructor, Boolean, "Pass makeArray a boolean" ); - equal( jQuery.makeArray( document.createElement("div") )[0].nodeName.toUpperCase(), "DIV", "Pass makeArray a single node" ); + assert.equal( jQuery.makeArray( document.createElement("div") )[0].nodeName.toUpperCase(), "DIV", "Pass makeArray a single node" ); - equal( jQuery.makeArray( {length:2, 0:"a", 1:"b"} ).join(""), "ab", "Pass makeArray an array like map (with length)" ); + assert.equal( jQuery.makeArray( {length:2, 0:"a", 1:"b"} ).join(""), "ab", "Pass makeArray an array like map (with length)" ); - ok( !!jQuery.makeArray( document.documentElement.childNodes ).slice(0,1)[0].nodeName, "Pass makeArray a childNodes array" ); + assert.ok( !!jQuery.makeArray( document.documentElement.childNodes ).slice(0,1)[0].nodeName, "Pass makeArray a childNodes array" ); // function, is tricky as it has length - equal( jQuery.makeArray( function(){ return 1;} )[0](), 1, "Pass makeArray a function" ); + assert.equal( jQuery.makeArray( function(){ return 1;} )[0](), 1, "Pass makeArray a function" ); //window, also has length - equal( jQuery.makeArray(window)[0], window, "Pass makeArray the window" ); + assert.equal( jQuery.makeArray(window)[0], window, "Pass makeArray the window" ); - equal( jQuery.makeArray(/a/)[0].constructor, RegExp, "Pass makeArray a regex" ); + assert.equal( jQuery.makeArray(/a/)[0].constructor, RegExp, "Pass makeArray a regex" ); // Some nodes inherit traits of nodelists - ok( jQuery.makeArray(document.getElementById("form")).length >= 13, + assert.ok( jQuery.makeArray(document.getElementById("form")).length >= 13, "Pass makeArray a form (treat as elements)" ); }); -test("jQuery.inArray", function(){ - expect(3); +QUnit.test("jQuery.inArray", function( assert ){ + assert.expect(3); - equal( jQuery.inArray( 0, false ), -1 , "Search in 'false' as array returns -1 and doesn't throw exception" ); + assert.equal( jQuery.inArray( 0, false ), -1 , "Search in 'false' as array returns -1 and doesn't throw exception" ); - equal( jQuery.inArray( 0, null ), -1 , "Search in 'null' as array returns -1 and doesn't throw exception" ); + assert.equal( jQuery.inArray( 0, null ), -1 , "Search in 'null' as array returns -1 and doesn't throw exception" ); - equal( jQuery.inArray( 0, undefined ), -1 , "Search in 'undefined' as array returns -1 and doesn't throw exception" ); + assert.equal( jQuery.inArray( 0, undefined ), -1 , "Search in 'undefined' as array returns -1 and doesn't throw exception" ); }); -test("jQuery.isEmptyObject", function(){ - expect(2); +QUnit.test("jQuery.isEmptyObject", function( assert ){ + assert.expect(2); - equal(true, jQuery.isEmptyObject({}), "isEmptyObject on empty object literal" ); - equal(false, jQuery.isEmptyObject({a:1}), "isEmptyObject on non-empty object literal" ); + assert.equal(true, jQuery.isEmptyObject({}), "isEmptyObject on empty object literal" ); + assert.equal(false, jQuery.isEmptyObject({a:1}), "isEmptyObject on non-empty object literal" ); // What about this ? // equal(true, jQuery.isEmptyObject(null), "isEmptyObject on null" ); }); -test("jQuery.proxy", function(){ - expect( 9 ); +QUnit.test("jQuery.proxy", function( assert ){ + assert.expect( 9 ); var test2, test3, test4, fn, cb, test = function(){ equal( this, thisObject, "Make sure that scope is set properly." ); }, @@ -1310,7 +1310,7 @@ test("jQuery.proxy", function(){ jQuery.proxy( thisObject, "method" )(); // Make sure it doesn't freak out - equal( jQuery.proxy( null, thisObject ), undefined, "Make sure no function was returned." ); + assert.equal( jQuery.proxy( null, thisObject ), undefined, "Make sure no function was returned." ); // Partial application test2 = function( a ){ equal( a, "pre-applied", "Ensure arguments can be pre-applied." ); }; @@ -1326,60 +1326,60 @@ test("jQuery.proxy", function(){ // jQuery 1.9 improved currying with `this` object fn = function() { - equal( Array.prototype.join.call( arguments, "," ), "arg1,arg2,arg3", "args passed" ); - equal( this.foo, "bar", "this-object passed" ); + assert.equal( Array.prototype.join.call( arguments, "," ), "arg1,arg2,arg3", "args passed" ); + assert.equal( this.foo, "bar", "this-object passed" ); }; cb = jQuery.proxy( fn, null, "arg1", "arg2" ); cb.call( thisObject, "arg3" ); }); -test("jQuery.parseHTML", function() { - expect( 23 ); +QUnit.test("jQuery.parseHTML", function( assert ) { + assert.expect( 23 ); var html, nodes; - deepEqual( jQuery.parseHTML(), [], "Without arguments" ); - deepEqual( jQuery.parseHTML( undefined ), [], "Undefined" ); - deepEqual( jQuery.parseHTML( null ), [], "Null" ); - deepEqual( jQuery.parseHTML( false ), [], "Boolean false" ); - deepEqual( jQuery.parseHTML( 0 ), [], "Zero" ); - deepEqual( jQuery.parseHTML( true ), [], "Boolean true" ); - deepEqual( jQuery.parseHTML( 42 ), [], "Positive number" ); - deepEqual( jQuery.parseHTML( "" ), [], "Empty string" ); - throws(function() { + assert.deepEqual( jQuery.parseHTML(), [], "Without arguments" ); + assert.deepEqual( jQuery.parseHTML( undefined ), [], "Undefined" ); + assert.deepEqual( jQuery.parseHTML( null ), [], "Null" ); + assert.deepEqual( jQuery.parseHTML( false ), [], "Boolean false" ); + assert.deepEqual( jQuery.parseHTML( 0 ), [], "Zero" ); + assert.deepEqual( jQuery.parseHTML( true ), [], "Boolean true" ); + assert.deepEqual( jQuery.parseHTML( 42 ), [], "Positive number" ); + assert.deepEqual( jQuery.parseHTML( "" ), [], "Empty string" ); + assert.throws(function() { jQuery.parseHTML( "<div></div>", document.getElementById("form") ); }, "Passing an element as the context raises an exception (context should be a document)"); nodes = jQuery.parseHTML( jQuery("body")[0].innerHTML ); - ok( nodes.length > 4, "Parse a large html string" ); - equal( jQuery.type( nodes ), "array", "parseHTML returns an array rather than a nodelist" ); + assert.ok( nodes.length > 4, "Parse a large html string" ); + assert.equal( jQuery.type( nodes ), "array", "parseHTML returns an array rather than a nodelist" ); html = "<script>undefined()</script>"; - equal( jQuery.parseHTML( html ).length, 0, "Ignore scripts by default" ); - equal( jQuery.parseHTML( html, true )[0].nodeName.toLowerCase(), "script", "Preserve scripts when requested" ); + assert.equal( jQuery.parseHTML( html ).length, 0, "Ignore scripts by default" ); + assert.equal( jQuery.parseHTML( html, true )[0].nodeName.toLowerCase(), "script", "Preserve scripts when requested" ); html += "<div></div>"; - equal( jQuery.parseHTML( html )[0].nodeName.toLowerCase(), "div", "Preserve non-script nodes" ); - equal( jQuery.parseHTML( html, true )[0].nodeName.toLowerCase(), "script", "Preserve script position"); + assert.equal( jQuery.parseHTML( html )[0].nodeName.toLowerCase(), "div", "Preserve non-script nodes" ); + assert.equal( jQuery.parseHTML( html, true )[0].nodeName.toLowerCase(), "script", "Preserve script position"); - equal( jQuery.parseHTML("text")[0].nodeType, 3, "Parsing text returns a text node" ); - equal( jQuery.parseHTML( "\t<div></div>" )[0].nodeValue, "\t", "Preserve leading whitespace" ); + assert.equal( jQuery.parseHTML("text")[0].nodeType, 3, "Parsing text returns a text node" ); + assert.equal( jQuery.parseHTML( "\t<div></div>" )[0].nodeValue, "\t", "Preserve leading whitespace" ); - equal( jQuery.parseHTML(" <div/> ")[0].nodeType, 3, "Leading spaces are treated as text nodes (#11290)" ); + assert.equal( jQuery.parseHTML(" <div/> ")[0].nodeType, 3, "Leading spaces are treated as text nodes (#11290)" ); html = jQuery.parseHTML( "<div>test div</div>" ); - equal( html[ 0 ].parentNode.nodeType, 11, "parentNode should be documentFragment" ); - equal( html[ 0 ].innerHTML, "test div", "Content should be preserved" ); + assert.equal( html[ 0 ].parentNode.nodeType, 11, "parentNode should be documentFragment" ); + assert.equal( html[ 0 ].innerHTML, "test div", "Content should be preserved" ); - equal( jQuery.parseHTML("<span><span>").length, 1, "Incorrect html-strings should not break anything" ); - equal( jQuery.parseHTML("<td><td>")[ 1 ].parentNode.nodeType, 11, + assert.equal( jQuery.parseHTML("<span><span>").length, 1, "Incorrect html-strings should not break anything" ); + assert.equal( jQuery.parseHTML("<td><td>")[ 1 ].parentNode.nodeType, 11, "parentNode should be documentFragment for wrapMap (variable in manipulation module) elements too" ); - ok( jQuery.parseHTML("<#if><tr><p>This is a test.</p></tr><#/if>") || true, "Garbage input should not cause error" ); + assert.ok( jQuery.parseHTML("<#if><tr><p>This is a test.</p></tr><#/if>") || true, "Garbage input should not cause error" ); }); if ( jQuery.support.createHTMLDocument ) { - asyncTest("jQuery.parseHTML", function() { + QUnit.asyncTest("jQuery.parseHTML", function( assert ) { expect ( 1 ); Globals.register("parseHTMLError"); @@ -1388,69 +1388,69 @@ if ( jQuery.support.createHTMLDocument ) { jQuery.parseHTML( "<img src=x onerror='parseHTMLError = true'>" ); window.setTimeout(function() { - start(); - equal( window.parseHTMLError, false, "onerror eventhandler has not been called." ); + QUnit.start(); + assert.equal( window.parseHTMLError, false, "onerror eventhandler has not been called." ); }, 2000); }); } -test("jQuery.parseJSON", function() { - expect( 20 ); +QUnit.test("jQuery.parseJSON", function( assert ) { + assert.expect( 20 ); - strictEqual( jQuery.parseJSON( null ), null, "primitive null" ); - strictEqual( jQuery.parseJSON("0.88"), 0.88, "Number" ); - strictEqual( + assert.strictEqual( jQuery.parseJSON( null ), null, "primitive null" ); + assert.strictEqual( jQuery.parseJSON("0.88"), 0.88, "Number" ); + assert.strictEqual( jQuery.parseJSON("\" \\\" \\\\ \\/ \\b \\f \\n \\r \\t \\u007E \\u263a \""), " \" \\ / \b \f \n \r \t ~ \u263A ", "String escapes" ); - deepEqual( jQuery.parseJSON("{}"), {}, "Empty object" ); - deepEqual( jQuery.parseJSON("{\"test\":1}"), { "test": 1 }, "Plain object" ); - deepEqual( jQuery.parseJSON("[0]"), [ 0 ], "Simple array" ); + assert.deepEqual( jQuery.parseJSON("{}"), {}, "Empty object" ); + assert.deepEqual( jQuery.parseJSON("{\"test\":1}"), { "test": 1 }, "Plain object" ); + assert.deepEqual( jQuery.parseJSON("[0]"), [ 0 ], "Simple array" ); - deepEqual( + assert.deepEqual( jQuery.parseJSON("[ \"string\", -4.2, 2.7180e0, 3.14E-1, {}, [], true, false, null ]"), [ "string", -4.2, 2.718, 0.314, {}, [], true, false, null ], "Array of all data types" ); - deepEqual( + assert.deepEqual( jQuery.parseJSON( "{ \"string\": \"\", \"number\": 4.2e+1, \"object\": {}," + "\"array\": [[]], \"boolean\": [ true, false ], \"null\": null }"), { string: "", number: 42, object: {}, array: [[]], "boolean": [ true, false ], "null": null }, "Dictionary of all data types" ); - deepEqual( jQuery.parseJSON("\n{\"test\":1}\t"), { "test": 1 }, + assert.deepEqual( jQuery.parseJSON("\n{\"test\":1}\t"), { "test": 1 }, "Leading and trailing whitespace are ignored" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON(); }, null, "Undefined raises an error" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON( "" ); }, null, "Empty string raises an error" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON("''"); }, null, "Single-quoted string raises an error" ); /* // Broken on IE8 - throws(function() { + assert.throws(function() { jQuery.parseJSON("\" \\a \""); }, null, "Invalid string escape raises an error" ); // Broken on IE8, Safari 5.1 Windows - throws(function() { + assert.throws(function() { jQuery.parseJSON("\"\t\""); }, null, "Unescaped control character raises an error" ); // Broken on IE8 - throws(function() { + assert.throws(function() { jQuery.parseJSON(".123"); }, null, "Number with no integer component raises an error" ); */ - throws(function() { + assert.throws(function() { var result = jQuery.parseJSON("0101"); // Support: IE9+ @@ -1459,63 +1459,63 @@ test("jQuery.parseJSON", function() { throw new Error("close enough"); } }, null, "Leading-zero number raises an error or is parsed as decimal" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON("{a:1}"); }, null, "Unquoted property raises an error" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON("{'a':1}"); }, null, "Single-quoted property raises an error" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON("[,]"); }, null, "Array element elision raises an error" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON("{},[]"); }, null, "Comma expression raises an error" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON("[]\n,{}"); }, null, "Newline-containing comma expression raises an error" ); - throws(function() { + assert.throws(function() { jQuery.parseJSON("\"\"\n\"\""); }, null, "Automatic semicolon insertion raises an error" ); - strictEqual( jQuery.parseJSON([ 0 ]), 0, "Input cast to string" ); + assert.strictEqual( jQuery.parseJSON([ 0 ]), 0, "Input cast to string" ); }); -test("jQuery.parseXML", function(){ - expect( 8 ); +QUnit.test("jQuery.parseXML", function( assert ){ + assert.expect( 8 ); var xml, tmp; try { xml = jQuery.parseXML( "<p>A <b>well-formed</b> xml string</p>" ); tmp = xml.getElementsByTagName( "p" )[ 0 ]; - ok( !!tmp, "<p> present in document" ); + assert.ok( !!tmp, "<p> present in document" ); tmp = tmp.getElementsByTagName( "b" )[ 0 ]; - ok( !!tmp, "<b> present in document" ); - strictEqual( tmp.childNodes[ 0 ].nodeValue, "well-formed", "<b> text is as expected" ); + assert.ok( !!tmp, "<b> present in document" ); + assert.strictEqual( tmp.childNodes[ 0 ].nodeValue, "well-formed", "<b> text is as expected" ); } catch (e) { - strictEqual( e, undefined, "unexpected error" ); + assert.strictEqual( e, undefined, "unexpected error" ); } try { xml = jQuery.parseXML( "<p>Not a <<b>well-formed</b> xml string</p>" ); - ok( false, "invalid xml not detected" ); + assert.ok( false, "invalid xml not detected" ); } catch( e ) { - strictEqual( e.message, "Invalid XML: <p>Not a <<b>well-formed</b> xml string</p>", "invalid xml detected" ); + assert.strictEqual( e.message, "Invalid XML: <p>Not a <<b>well-formed</b> xml string</p>", "invalid xml detected" ); } try { xml = jQuery.parseXML( "" ); - strictEqual( xml, null, "empty string => null document" ); + assert.strictEqual( xml, null, "empty string => null document" ); xml = jQuery.parseXML(); - strictEqual( xml, null, "undefined string => null document" ); + assert.strictEqual( xml, null, "undefined string => null document" ); xml = jQuery.parseXML( null ); - strictEqual( xml, null, "null string => null document" ); + assert.strictEqual( xml, null, "null string => null document" ); xml = jQuery.parseXML( true ); - strictEqual( xml, null, "non-string => null document" ); + assert.strictEqual( xml, null, "non-string => null document" ); } catch( e ) { - ok( false, "empty input throws exception" ); + assert.ok( false, "empty input throws exception" ); } }); -test("jQuery.camelCase()", function() { +QUnit.test("jQuery.camelCase()", function( assert ) { var tests = { "foo-bar": "fooBar", @@ -1527,47 +1527,59 @@ test("jQuery.camelCase()", function() { "-ms-take": "msTake" }; - expect(7); + assert.expect(7); jQuery.each( tests, function( key, val ) { - equal( jQuery.camelCase( key ), val, "Converts: " + key + " => " + val ); + assert.equal( jQuery.camelCase( key ), val, "Converts: " + key + " => " + val ); }); }); -testIframeWithCallback( "Conditional compilation compatibility (#13274)", "core/cc_on.html", function( cc_on, errors, $ ) { - expect( 3 ); - ok( true, "JScript conditional compilation " + ( cc_on ? "supported" : "not supported" ) ); - deepEqual( errors, [], "No errors" ); - ok( $(), "jQuery executes" ); -}); +testIframeWithCallback( + "Conditional compilation compatibility (#13274)", + "core/cc_on.html", + function( cc_on, errors, $, assert ) { + assert.expect( 3 ); + assert.ok( true, "JScript conditional compilation " + ( cc_on ? "supported" : "not supported" ) ); + assert.deepEqual( errors, [], "No errors" ); + assert.ok( $(), "jQuery executes" ); + } +); // iOS7 doesn't fire the load event if the long-loading iframe gets its source reset to about:blank. // This makes this test fail but it doesn't seem to cause any real-life problems so blacklisting // this test there is preferred to complicating the hard-to-test core/ready code further. if ( !/iphone os 7_/i.test( navigator.userAgent ) ) { - testIframeWithCallback( "document ready when jQuery loaded asynchronously (#13655)", "core/dynamic_ready.html", function( ready ) { - expect( 1 ); - equal( true, ready, "document ready correctly fired when jQuery is loaded after DOMContentLoaded" ); - }); + testIframeWithCallback( + "document ready when jQuery loaded asynchronously (#13655)", + "core/dynamic_ready.html", + function( ready, assert ) { + assert.expect( 1 ); + assert.equal( true, ready, "document ready correctly fired when jQuery is loaded after DOMContentLoaded" ); + } + ); } -testIframeWithCallback( "Tolerating alias-masked DOM properties (#14074)", "core/aliased.html", - function( errors ) { - expect( 1 ); - deepEqual( errors, [], "jQuery loaded" ); +testIframeWithCallback( + "Tolerating alias-masked DOM properties (#14074)", + "core/aliased.html", + function( errors, assert ) { + assert.expect( 1 ); + assert.deepEqual( errors, [], "jQuery loaded" ); } ); -testIframeWithCallback( "Don't call window.onready (#14802)", "core/onready.html", - function( error ) { - expect( 1 ); - equal( error, false, "no call to user-defined onready" ); +testIframeWithCallback( + "Don't call window.onready (#14802)", + "core/onready.html", + function( error, assert ) { + assert.expect( 1 ); + assert.equal( error, false, "no call to user-defined onready" ); } ); -test( "Iterability of jQuery objects (gh-1693)", function() { +QUnit.test( "Iterability of jQuery objects (gh-1693)", function( assert ) { /* jshint unused: false */ - expect( 1 ); + assert.expect( 1 ); var i, elem, result; @@ -1579,8 +1591,8 @@ test( "Iterability of jQuery objects (gh-1693)", function() { try { eval( "for ( i of elem ) { result += i.nodeName; }" ); } catch ( e ) {} - equal( result, "DIVSPANA", "for-of works on jQuery objects" ); + assert.equal( result, "DIVSPANA", "for-of works on jQuery objects" ); } else { - ok( true, "The browser doesn't support Symbols" ); + assert.ok( true, "The browser doesn't support Symbols" ); } } ); |