Cleaned up a lot of the test suite - reorganized and renamed tests. Added a new trigg...
[jquery.git] / src / jquery / coreTest.js
index f24a10b..da5b7fc 100644 (file)
@@ -11,31 +11,136 @@ test("Basic requirements", function() {
        ok( $, "$()" );\r
 });\r
 \r
-test("$()", function() {\r
+test("$()", function() {
+       expect(3);
+       \r
        var main = $("#main");\r
        isSet( $("div p", main).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" );\r
        \r
        // make sure this is handled\r
-       $('<p>\r\n</p>');\r
+       $('<p>\r\n</p>');
+       ok( true, "Check for \\r and \\n in jQuery()" );
+       \r
+       var pass = true;\r
+       try {\r
+               var f = document.getElementById("iframe").contentDocument;\r
+               f.open();\r
+               f.write("<html><body></body></html>");\r
+               f.close();\r
+               $("<div>Testing</div>").appendTo(f.body);\r
+       } catch(e){\r
+               pass = false;\r
+       }\r
+       ok( pass, "$('&lt;tag&gt;') needs optional document parameter to ease cross-frame DOM wrangling, see #968" );\r
 });\r
 \r
-test("length", function() {\r
+test("isFunction", function() {\r
+       expect(21);\r
+\r
+       // Make sure that false values return false\r
+       ok( !jQuery.isFunction(), "No Value" );\r
+       ok( !jQuery.isFunction( null ), "null Value" );\r
+       ok( !jQuery.isFunction( undefined ), "undefined Value" );\r
+       ok( !jQuery.isFunction( "" ), "Empty String Value" );\r
+       ok( !jQuery.isFunction( 0 ), "0 Value" );\r
+\r
+       // Check built-ins\r
+       // Safari uses "(Internal Function)"\r
+       ok( jQuery.isFunction(String), "String Function" );\r
+       ok( jQuery.isFunction(Array), "Array Function" );\r
+       ok( jQuery.isFunction(Object), "Object Function" );\r
+       ok( jQuery.isFunction(Function), "Function Function" );\r
+\r
+       // When stringified, this could be misinterpreted\r
+       var mystr = "function";\r
+       ok( !jQuery.isFunction(mystr), "Function String" );\r
+\r
+       // When stringified, this could be misinterpreted\r
+       var myarr = [ "function" ];\r
+       ok( !jQuery.isFunction(myarr), "Function Array" );\r
+\r
+       // When stringified, this could be misinterpreted\r
+       var myfunction = { "function": "test" };\r
+       ok( !jQuery.isFunction(myfunction), "Function Object" );\r
+\r
+       // Make sure normal functions still work\r
+       var fn = function(){};\r
+       ok( jQuery.isFunction(fn), "Normal Function" );\r
+\r
+       var obj = document.createElement("object");\r
+\r
+       // Firefox says this is a function\r
+       ok( !jQuery.isFunction(obj), "Object Element" );\r
+\r
+       // IE says this is an object\r
+       ok( jQuery.isFunction(obj.getAttribute), "getAttribute Function" );\r
+\r
+       var nodes = document.body.childNodes;\r
+\r
+       // Safari says this is a function\r
+       ok( !jQuery.isFunction(nodes), "childNodes Property" );\r
+\r
+       var first = document.body.firstChild;\r
+       \r
+       // Normal elements are reported ok everywhere\r
+       ok( !jQuery.isFunction(first), "A normal DOM Element" );\r
+\r
+       var input = document.createElement("input");\r
+       input.type = "text";\r
+       document.body.appendChild( input );\r
+\r
+       // IE says this is an object\r
+       ok( jQuery.isFunction(input.focus), "A default function property" );\r
+\r
+       document.body.removeChild( input );\r
+\r
+       var a = document.createElement("a");\r
+       a.href = "some-function";\r
+       document.body.appendChild( a );\r
+\r
+       // This serializes with the word 'function' in it\r
+       ok( !jQuery.isFunction(a), "Anchor Element" );\r
+\r
+       document.body.removeChild( a );\r
+\r
+       // Recursive function calls have lengths and array-like properties\r
+       function callme(callback){\r
+               function fn(response){\r
+                       callback(response);\r
+               }\r
+\r
+               ok( jQuery.isFunction(fn), "Recursive Function Call" );\r
+\r
+       fn({ some: "data" });\r
+       };\r
+\r
+       callme(function(){\r
+       callme(function(){});\r
+       });\r
+});\r
+\r
+test("length", function() {
+       expect(1);\r
        ok( $("div").length == 2, "Get Number of Elements Found" );\r
 });\r
 \r
-test("size()", function() {\r
+test("size()", function() {
+       expect(1);\r
        ok( $("div").size() == 2, "Get Number of Elements Found" );\r
 });\r
 \r
-test("get()", function() {\r
+test("get()", function() {
+       expect(1);\r
        isSet( $("div").get(), q("main","foo"), "Get All Elements" );\r
 });\r
 \r
-test("get(Number)", function() {\r
+test("get(Number)", function() {
+       expect(1);\r
        ok( $("div").get(0) == document.getElementById("main"), "Get A Single Element" );\r
 });\r
 \r
-test("add(String|Element|Array)", function() {\r
+test("add(String|Element|Array)", function() {
+       expect(7);\r
        isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );\r
        isSet( $("#sndp").add( $("#en")[0] ).add( $("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );\r
        ok( $([]).add($("#form")[0].elements).length > 13, "Check elements from array" );\r
@@ -74,7 +179,7 @@ test("index(Object)", function() {
 });\r
 \r
 test("attr(String)", function() {\r
-       expect(15);\r
+       expect(13);\r
        ok( $('#text1').attr('value') == "Test", 'Check for value attribute' );\r
        ok( $('#text1').attr('type') == "text", 'Check for type attribute' );\r
        ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' );\r
@@ -87,15 +192,23 @@ test("attr(String)", function() {
        ok( $('#name').attr('name') == "name", 'Check for name attribute' );\r
        ok( $('#text1').attr('name') == "action", 'Check for name attribute' );\r
        ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );\r
-       ok( $('#anchor2').attr('href') == "#2", 'Check for non-absolute href (an anchor)' );\r
-       stop();\r
-       $.get("data/dashboard.xml", function(xml) {\r
-               ok( $("locations", xml).attr("class") == "foo", "Check class attribute in XML document" );\r
-               ok( $("location", xml).attr("for") == "bar", "Check for attribute in XML document" );\r
-               start();\r
-       });\r
+       \r
+       $('<a id="tAnchor5"></a>').attr('href', '#5').appendTo('#main'); // using innerHTML in IE causes href attribute to be serialized to the full path\r
+       ok( $('#tAnchor5').attr('href') == "#5", 'Check for non-absolute href (an anchor)' );\r
 });\r
 \r
+if ( location.protocol != "file:" ) {\r
+       test("attr(String) in XML Files", function() {\r
+               expect(2);\r
+               stop();\r
+               $.get("data/dashboard.xml", function(xml) {\r
+                       ok( $("locations", xml).attr("class") == "foo", "Check class attribute in XML document" );\r
+                       ok( $("location", xml).attr("for") == "bar", "Check for attribute in XML document" );\r
+                       start();\r
+               });\r
+       });\r
+}\r
+\r
 test("attr(String, Function)", function() {\r
        expect(2);\r
        ok( $('#text1').attr('value', function() { return this.id })[0].value == "text1", "Set value from id" );\r
@@ -152,7 +265,7 @@ if ( location.protocol != "file:" ) {
 }\r
 \r
 test("css(String|Hash)", function() {\r
-       expect(8);\r
+       expect(19);\r
        \r
        ok( $('#main').css("display") == 'none', 'Check for css property "display"');\r
        \r
@@ -170,10 +283,19 @@ test("css(String|Hash)", function() {
        ok( $('#floatTest').css('float') == 'right', 'Modified CSS float using "float": Assert float is right');\r
        $('#floatTest').css({'font-size': '30px'});\r
        ok( $('#floatTest').css('font-size') == '30px', 'Modified CSS font-size: Assert font-size is 30px');\r
+       \r
+       $.each("0,0.25,0.5,0.75,1".split(','), function(i, n) {\r
+               $('#foo').css({opacity: n});\r
+               ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" );\r
+               $('#foo').css({opacity: parseFloat(n)});\r
+               ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" );\r
+       });     \r
+       $('#foo').css({opacity: ''});\r
+       ok( $('#foo').css('opacity') == '1', "Assert opacity is 1 when set to an empty String" );\r
 });\r
 \r
 test("css(String, Object)", function() {\r
-       expect(7);\r
+       expect(18);\r
        ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');\r
        $('#foo').css('display', 'none');\r
        ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');\r
@@ -188,15 +310,25 @@ test("css(String, Object)", function() {
        ok( $('#floatTest').css('float') == 'left', 'Modified CSS float using "float": Assert float is left');\r
        $('#floatTest').css('font-size', '20px');\r
        ok( $('#floatTest').css('font-size') == '20px', 'Modified CSS font-size: Assert font-size is 20px');\r
+       \r
+       $.each("0,0.25,0.5,0.75,1".split(','), function(i, n) {\r
+               $('#foo').css('opacity', n);\r
+               ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" );\r
+               $('#foo').css('opacity', parseFloat(n));\r
+               ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" );\r
+       });\r
+       $('#foo').css('opacity', '');\r
+       ok( $('#foo').css('opacity') == '1', "Assert opacity is 1 when set to an empty String" );\r
 });\r
 \r
-test("text()", function() {\r
+test("text()", function() {
+       expect(1);\r
        var expected = "This link has class=\"blog\": Simon Willison's Weblog";\r
        ok( $('#sap').text() == expected, 'Check for merged text of more then one element.' );\r
 });\r
 \r
 test("wrap(String|Element)", function() {\r
-       expect(4);\r
+       expect(7);\r
        var defaultText = 'Try them out:'\r
        var result = $('#first').wrap('<div class="red"><span></span></div>').text();\r
        ok( defaultText == result, 'Check for wrapping of on-the-fly html' );\r
@@ -206,11 +338,25 @@ test("wrap(String|Element)", function() {
        var defaultText = 'Try them out:'\r
        var result = $('#first').wrap(document.getElementById('empty')).parent();\r
        ok( result.is('ol'), 'Check for element wrapping' );\r
-       ok( result.text() == defaultText, 'Check for element wrapping' );\r
+       ok( result.text() == defaultText, 'Check for element wrapping' );
+       
+       reset();\r
+       stop();\r
+       $('#check1').click(function() {         \r
+               var checkbox = this;            \r
+               ok( !checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );\r
+               $(checkbox).wrap( '<div id="c1" style="display:none;"></div>' );\r
+               ok( !checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );\r
+               // use a fade in to check state after this event handler has finished\r
+               $("#c1").fadeIn(function() {\r
+                       ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );\r
+                       start();\r
+               });\r
+       }).click();\r
 });\r
 \r
 test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {\r
-       expect(9);\r
+       expect(12);\r
        var defaultText = 'Try them out:'\r
        var result = $('#first').append('<b>buga</b>');\r
        ok( result.text() == defaultText + 'buga', 'Check if text appending works' );\r
@@ -236,9 +382,28 @@ test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        ok( $("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );\r
 \r
        reset();\r
+       $("#sap").append( " text with spaces " );\r
+       ok( $("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );\r
+\r
+       reset();\r
        ok( $("#sap").append([]), "Check for appending an empty array." );\r
        ok( $("#sap").append(""), "Check for appending an empty string." );\r
        ok( $("#sap").append(document.getElementsByTagName("foo")), "Check for appending an empty nodelist." );\r
+       \r
+       reset();\r
+       $("#sap").append(document.getElementById('form'));\r
+       ok( $("#sap>form").size() == 1, "Check for appending a form" );  // Bug #910\r
+\r
+       reset();\r
+       var pass = true;\r
+       try {\r
+               $( $("iframe")[0].contentWindow.document.body ).append("<div>test</div>");\r
+       } catch(e) {\r
+               pass = false;\r
+       }\r
+\r
+       ok( pass, "Test for appending a DOM node to the contents of an IFrame" );\r
+       \r
 });\r
 \r
 test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {\r
@@ -408,7 +573,8 @@ test("end()", function() {
        ok( 'Yahoo' == $('#yahoo').text(), 'Check for non-destructive behaviour' );\r
 });\r
 \r
-test("find(String)", function() {\r
+test("find(String)", function() {
+       expect(1);\r
        ok( 'Yahoo' == $('#foo').find('.blogTest').text(), 'Check for find' );\r
 });\r
 \r
@@ -421,7 +587,7 @@ test("clone()", function() {
 });\r
 \r
 test("is(String)", function() {\r
-       expect(22);\r
+       expect(26);\r
        ok( $('#form').is('form'), 'Check for element: A form must be a form' );\r
        ok( !$('#form').is('div'), 'Check for element: A form is not a div' );\r
        ok( $('#mark').is('.blog'), 'Check for class: Expected class "blog"' );\r
@@ -444,6 +610,12 @@ test("is(String)", function() {
        ok( !$('#foo').is(null), 'Expected false for an invalid expression - null' );\r
        ok( !$('#foo').is(''), 'Expected false for an invalid expression - ""' );\r
        ok( !$('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );\r
+       \r
+       // test is() with comma-seperated expressions\r
+       ok( $('#en').is('[@lang="en"],[@lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );\r
+       ok( $('#en').is('[@lang="de"],[@lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );\r
+       ok( $('#en').is('[@lang="en"] , [@lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );\r
+       ok( $('#en').is('[@lang="de"] , [@lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );\r
 });\r
 \r
 test("$.extend(Object, Object)", function() {\r
@@ -488,14 +660,16 @@ test("val(String)", function() {
 });\r
 \r
 test("html(String)", function() {\r
-       expect(1);\r
+       expect(2);\r
        var div = $("div");\r
        div.html("<b>test</b>");\r
        var pass = true;\r
        for ( var i = 0; i < div.size(); i++ ) {\r
          if ( div.get(i).childNodes.length == 0 ) pass = false;\r
        }\r
-       ok( pass, "Set HTML" );\r
+       ok( pass, "Set HTML" );
+       \r
+       $("#main").html('<script type="text/javascript">ok( true, "$().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script>').evalScripts();\r
 });\r
 \r
 test("filter()", function() {\r
@@ -513,7 +687,6 @@ test("not()", function() {
        isSet( $("p").not($("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );\r
 });\r
 \r
-\r
 test("siblings([String])", function() {\r
        expect(4);\r
        isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );\r
@@ -564,7 +737,8 @@ test("show()", function() {
        ok( pass, "Show" );\r
 });\r
 \r
-test("addClass(String)", function() {\r
+test("addClass(String)", function() {
+       expect(1);\r
        var div = $("div");\r
        div.addClass("test");\r
        var pass = true;\r
@@ -575,17 +749,15 @@ test("addClass(String)", function() {
 });\r
 \r
 test("removeClass(String) - simple", function() {\r
-       expect(1);\r
+       expect(2);\r
        var div = $("div").addClass("test").removeClass("test"),\r
                pass = true;\r
        for ( var i = 0; i < div.size(); i++ ) {\r
                if ( div.get(i).className.indexOf("test") != -1 ) pass = false;\r
        }\r
-       ok( pass, "Remove Class" );\r
-});\r
-\r
-test("removeClass(String) - add three classes and remove again", function() {\r
-       expect(1);\r
+       ok( pass, "Remove Class" );
+       
+       reset();
        var div = $("div").addClass("test").addClass("foo").addClass("bar");\r
        div.removeClass("test").removeClass("bar").removeClass("foo");\r
        var pass = true;\r
@@ -605,7 +777,8 @@ test("toggleClass(String)", function() {
        ok( !e.is(".test"), "Assert class not present" );\r
 });\r
 \r
-test("removeAttr(String", function() {\r
+test("removeAttr(String", function() {
+       expect(1);\r
        ok( $('#mark').removeAttr("class")[0].className == "", "remove class" );\r
 });\r
 \r
@@ -653,7 +826,8 @@ test("$.className", function() {
        ok( c.has(x, "bar"), "Check has2" );\r
 });\r
 \r
-test("remove()", function() {\r
+test("remove()", function() {
+       expect(4);\r
        $("#ap").children().remove();\r
        ok( $("#ap").text().length > 10, "Check text is not removed" );\r
        ok( $("#ap").children().length == 0, "Check remove" );\r
@@ -664,24 +838,16 @@ test("remove()", function() {
        ok( $("#ap").children().length == 1, "Check filtered remove" );\r
 });\r
 \r
-test("empty()", function() {\r
+test("empty()", function() {
+       expect(2);\r
        ok( $("#ap").children().empty().text().length == 0, "Check text is removed" );\r
        ok( $("#ap").children().length == 4, "Check elements are not removed" );\r
 });\r
 \r
-test("eq(), gt(), lt(), contains()", function() {\r
+test("eq(), gt(), lt(), contains()", function() {
+       expect(4);\r
        ok( $("#ap a").eq(1)[0].id == "groups", "eq()" );\r
        isSet( $("#ap a").gt(0).get(), q("groups", "anchor1", "mark"), "gt()" );\r
        isSet( $("#ap a").lt(3).get(), q("google", "groups", "anchor1"), "lt()" );\r
        isSet( $("#foo a").contains("log").get(), q("anchor2", "simon"), "contains()" );\r
-});\r
-\r
-test("click() context", function() {\r
-       $('<li><a href="#">Change location</a></li>').prependTo('#firstUL').find('a').bind('click', function() {\r
-           var close = $('spanx', this); // same with $(this).find('span');\r
-           ok( close.length == 0, "Element does not exist, length must be zero" );\r
-           ok( !close[0], "Element does not exist, direct access to element must return undefined" );\r
-           //console.log( close[0]); // it's the <a> and not a <span> element\r
-           return false;\r
-       }).click();\r
 });
\ No newline at end of file