X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fjquery%2FcoreTest.js;h=da5b7fcf6916dffa14d5ba06b6b63127faf84f92;hb=d7a8794eb574a870fde9a8afdfd452e52804f65d;hp=98a1ba8154ed565f79bb9bed448bb63cd37bb371;hpb=b8aa9e7cfcc8d6cae898661b75e6fb63a5288cb0;p=jquery.git diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index 98a1ba8..da5b7fc 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -11,12 +11,27 @@ test("Basic requirements", function() { ok( $, "$()" ); }); -test("$()", function() { +test("$()", function() { + expect(3); + var main = $("#main"); isSet( $("div p", main).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" ); // make sure this is handled - $('

\r\n

'); + $('

\r\n

'); + ok( true, "Check for \\r and \\n in jQuery()" ); + + var pass = true; + try { + var f = document.getElementById("iframe").contentDocument; + f.open(); + f.write(""); + f.close(); + $("
Testing
").appendTo(f.body); + } catch(e){ + pass = false; + } + ok( pass, "$('<tag>') needs optional document parameter to ease cross-frame DOM wrangling, see #968" ); }); test("isFunction", function() { @@ -90,37 +105,42 @@ test("isFunction", function() { // Recursive function calls have lengths and array-like properties function callme(callback){ - function fn(response){ - callback(response); - } + function fn(response){ + callback(response); + } ok( jQuery.isFunction(fn), "Recursive Function Call" ); - fn({ some: "data" }); + fn({ some: "data" }); }; callme(function(){ - callme(function(){}); + callme(function(){}); }); }); -test("length", function() { +test("length", function() { + expect(1); ok( $("div").length == 2, "Get Number of Elements Found" ); }); -test("size()", function() { +test("size()", function() { + expect(1); ok( $("div").size() == 2, "Get Number of Elements Found" ); }); -test("get()", function() { +test("get()", function() { + expect(1); isSet( $("div").get(), q("main","foo"), "Get All Elements" ); }); -test("get(Number)", function() { +test("get(Number)", function() { + expect(1); ok( $("div").get(0) == document.getElementById("main"), "Get A Single Element" ); }); -test("add(String|Element|Array)", function() { +test("add(String|Element|Array)", function() { + expect(7); isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" ); isSet( $("#sndp").add( $("#en")[0] ).add( $("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" ); ok( $([]).add($("#form")[0].elements).length > 13, "Check elements from array" ); @@ -301,13 +321,14 @@ test("css(String, Object)", function() { ok( $('#foo').css('opacity') == '1', "Assert opacity is 1 when set to an empty String" ); }); -test("text()", function() { +test("text()", function() { + expect(1); var expected = "This link has class=\"blog\": Simon Willison's Weblog"; ok( $('#sap').text() == expected, 'Check for merged text of more then one element.' ); }); test("wrap(String|Element)", function() { - expect(4); + expect(7); var defaultText = 'Try them out:' var result = $('#first').wrap('
').text(); ok( defaultText == result, 'Check for wrapping of on-the-fly html' ); @@ -317,7 +338,21 @@ test("wrap(String|Element)", function() { var defaultText = 'Try them out:' var result = $('#first').wrap(document.getElementById('empty')).parent(); ok( result.is('ol'), 'Check for element wrapping' ); - ok( result.text() == defaultText, 'Check for element wrapping' ); + ok( result.text() == defaultText, 'Check for element wrapping' ); + + reset(); + stop(); + $('#check1').click(function() { + var checkbox = this; + ok( !checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" ); + $(checkbox).wrap( '' ); + ok( !checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" ); + // use a fade in to check state after this event handler has finished + $("#c1").fadeIn(function() { + ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" ); + start(); + }); + }).click(); }); test("append(String|Element|Array<Element>|jQuery)", function() { @@ -538,7 +573,8 @@ test("end()", function() { ok( 'Yahoo' == $('#yahoo').text(), 'Check for non-destructive behaviour' ); }); -test("find(String)", function() { +test("find(String)", function() { + expect(1); ok( 'Yahoo' == $('#foo').find('.blogTest').text(), 'Check for find' ); }); @@ -624,14 +660,16 @@ test("val(String)", function() { }); test("html(String)", function() { - expect(1); + expect(2); var div = $("div"); div.html("test"); var pass = true; for ( var i = 0; i < div.size(); i++ ) { if ( div.get(i).childNodes.length == 0 ) pass = false; } - ok( pass, "Set HTML" ); + ok( pass, "Set HTML" ); + + $("#main").html('').evalScripts(); }); test("filter()", function() { @@ -649,7 +687,6 @@ test("not()", function() { isSet( $("p").not($("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" ); }); - test("siblings([String])", function() { expect(4); isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" ); @@ -700,7 +737,8 @@ test("show()", function() { ok( pass, "Show" ); }); -test("addClass(String)", function() { +test("addClass(String)", function() { + expect(1); var div = $("div"); div.addClass("test"); var pass = true; @@ -711,17 +749,15 @@ test("addClass(String)", function() { }); test("removeClass(String) - simple", function() { - expect(1); + expect(2); var div = $("div").addClass("test").removeClass("test"), pass = true; for ( var i = 0; i < div.size(); i++ ) { if ( div.get(i).className.indexOf("test") != -1 ) pass = false; } - ok( pass, "Remove Class" ); -}); - -test("removeClass(String) - add three classes and remove again", function() { - expect(1); + ok( pass, "Remove Class" ); + + reset(); var div = $("div").addClass("test").addClass("foo").addClass("bar"); div.removeClass("test").removeClass("bar").removeClass("foo"); var pass = true; @@ -741,7 +777,8 @@ test("toggleClass(String)", function() { ok( !e.is(".test"), "Assert class not present" ); }); -test("removeAttr(String", function() { +test("removeAttr(String", function() { + expect(1); ok( $('#mark').removeAttr("class")[0].className == "", "remove class" ); }); @@ -789,7 +826,8 @@ test("$.className", function() { ok( c.has(x, "bar"), "Check has2" ); }); -test("remove()", function() { +test("remove()", function() { + expect(4); $("#ap").children().remove(); ok( $("#ap").text().length > 10, "Check text is not removed" ); ok( $("#ap").children().length == 0, "Check remove" ); @@ -800,29 +838,16 @@ test("remove()", function() { ok( $("#ap").children().length == 1, "Check filtered remove" ); }); -test("empty()", function() { +test("empty()", function() { + expect(2); ok( $("#ap").children().empty().text().length == 0, "Check text is removed" ); ok( $("#ap").children().length == 4, "Check elements are not removed" ); }); -test("eq(), gt(), lt(), contains()", function() { +test("eq(), gt(), lt(), contains()", function() { + expect(4); ok( $("#ap a").eq(1)[0].id == "groups", "eq()" ); isSet( $("#ap a").gt(0).get(), q("groups", "anchor1", "mark"), "gt()" ); isSet( $("#ap a").lt(3).get(), q("google", "groups", "anchor1"), "lt()" ); isSet( $("#foo a").contains("log").get(), q("anchor2", "simon"), "contains()" ); -}); - -test("click() context", function() { - $('
  • Change location
  • ').prependTo('#firstUL').find('a').bind('click', function() { - var close = $('spanx', this); // same with $(this).find('span'); - ok( close.length == 0, "Element does not exist, length must be zero" ); - ok( !close[0], "Element does not exist, direct access to element must return undefined" ); - //console.log( close[0]); // it's the and not a element - return false; - }).click(); -}); - -test("$().html().evalScripts() Eval's Scripts Twice in Firefox, see #975", function() { - expect(1); - $("#main").html('').evalScripts(); -}); +}); \ No newline at end of file