Added test for #968
[jquery.git] / src / jquery / coreTest.js
index 1410ece..77fd17e 100644 (file)
@@ -19,6 +19,91 @@ test("$()", function() {
        $('<p>\r\n</p>');\r
 });\r
 \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() {\r
        ok( $("div").length == 2, "Get Number of Elements Found" );\r
 });\r
@@ -74,7 +159,7 @@ test("index(Object)", function() {
 });\r
 \r
 test("attr(String)", function() {\r
-       expect(14);\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 +172,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
-       //equals( "#2", $('#anchor2').attr('href'), 'Check for non-absolute href (an anchor)' ); This fails in IE because the _config.fixture is reloaded using innerHTML\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 +245,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 +263,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,6 +290,15 @@ 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
@@ -210,7 +321,7 @@ test("wrap(String|Element)", function() {
 });\r
 \r
 test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {\r
-       expect(10);\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,13 +347,27 @@ 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" );\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
@@ -426,7 +551,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
@@ -449,6 +574,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
@@ -689,4 +820,18 @@ test("click() context", function() {
            //console.log( close[0]); // it's the <a> and not a <span> element\r
            return false;\r
        }).click();\r
+});\r
+\r
+test("$().html().evalScripts() Eval's Scripts Twice in Firefox, see #975", function() {\r
+       expect(1);\r
+       $("#main").html('<script type="text/javascript">ok( true, "execute script" );</script>').evalScripts();\r
+});\r
+\r
+test("$('<tag>') needs optional document parameter to ease cross-frame DOM wrangling, see #968", function() {\r
+       var f = frames["iframe"].document;\r
+    f.open();\r
+    f.write("<html><body></body></html>");\r
+    f.close();\r
+    $("<div>Testing</div>").appendTo(f.body);\r
+    ok( true, "passed" );\r
 });
\ No newline at end of file