Added test for #977
[jquery.git] / src / jquery / coreTest.js
index 5dd9d80..497d30d 100644 (file)
@@ -11,6 +11,14 @@ test("Basic requirements", function() {
        ok( $, "$()" );\r
 });\r
 \r
+test("$()", function() {\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
+});\r
+\r
 test("length", function() {\r
        ok( $("div").length == 2, "Get Number of Elements Found" );\r
 });\r
@@ -29,7 +37,7 @@ test("get(Number)", function() {
 \r
 test("add(String|Element|Array)", function() {\r
        isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );\r
-       \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
        \r
        var x = $([]).add($("<p id='x1'>xxx</p>")).add($("<p id='x2'>xxx</p>"));\r
@@ -66,7 +74,7 @@ test("index(Object)", function() {
 });\r
 \r
 test("attr(String)", function() {\r
-       expect(12);\r
+       expect(14);\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
@@ -79,6 +87,13 @@ 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
 \r
 test("attr(String, Function)", function() {\r
@@ -97,7 +112,7 @@ test("attr(Hash)", function() {
 });\r
 \r
 test("attr(String, Object)", function() {\r
-       expect(6);\r
+       expect(7);\r
        var div = $("div");\r
        div.attr("foo", "bar");\r
        var pass = true;\r
@@ -105,6 +120,8 @@ test("attr(String, Object)", function() {
          if ( div.get(i).getAttribute('foo') != "bar" ) pass = false;\r
        }\r
        ok( pass, "Set Attribute" );\r
+\r
+       ok( $("#foo").attr({"width": null}), "Try to set an attribute to nothing" );    \r
        \r
        $("#name").attr('name', 'something');\r
        ok( $("#name").attr('name') == 'something', 'Set name attribute' );\r
@@ -193,7 +210,7 @@ test("wrap(String|Element)", function() {
 });\r
 \r
 test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {\r
-       expect(9);\r
+       expect(10);\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
@@ -222,6 +239,11 @@ test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        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
+       \r
 });\r
 \r
 test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {\r
@@ -404,7 +426,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
@@ -427,6 +449,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"]'), 'Check for lang attribute: Expecte en or de' );\r
+       ok( $('#en').is('[@lang="de"],[@lang="en"]'), 'Check for lang attribute: Expecte en or de' );\r
+       ok( $('#en').is('[@lang="en"] , [@lang="de"]'), 'Check for lang attribute: Expecte en or de' );\r
+       ok( $('#en').is('[@lang="de"] , [@lang="en"]'), 'Check for lang attribute: Expecte en or de' );\r
 });\r
 \r
 test("$.extend(Object, Object)", function() {\r
@@ -489,10 +517,11 @@ test("filter()", function() {
        isSet( $("p").filter(function() { return !$("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );\r
 });\r
 \r
-test("not(String)", function() {\r
-       expect(2);\r
+test("not()", function() {\r
+       expect(3);\r
        ok( $("#main > p#ap > a").not("#google").length == 2, "not('selector')" );\r
        isSet( $("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );\r
+       isSet( $("p").not($("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );\r
 });\r
 \r
 \r
@@ -657,3 +686,13 @@ test("eq(), gt(), lt(), contains()", function() {
        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