X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fmanipulation.js;h=71a501ac52c6578b47bb10b5893e85af80e20aa1;hb=7481a3645af63cef1406687190fd62bdfb1bf254;hp=494e7f59301341bbda1bbca2b4ebcb7df7fb9ef0;hpb=e277e6ed2120e9930193582307b8296ed37bd663;p=jquery.git diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 494e7f5..71a501a 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -12,20 +12,58 @@ test("text()", function() { equals( jQuery(document.createTextNode("foo")).text(), "foo", "Text node was retreived from .text()." ); }); +var testText = function(valueObj) { + expect(4); + var val = valueObj("
Hello cruel world!
"); + equals( jQuery("#foo").text(val)[0].innerHTML.replace(/>/g, ">"), "<div><b>Hello</b> cruel world!</div>", "Check escaped text" ); + + // using contents will get comments regular, text, and comment nodes + var j = jQuery("#nonnodes").contents(); + j.text(valueObj("hi!")); + equals( jQuery(j[0]).text(), "hi!", "Check node,textnode,comment with text()" ); + equals( j[1].nodeValue, " there ", "Check node,textnode,comment with text()" ); + + // Blackberry 4.6 doesn't maintain comments in the DOM + equals( jQuery("#nonnodes")[0].childNodes.length < 3 ? 8 : j[2].nodeType, 8, "Check node,textnode,comment with text()" ); +} + +test("text(String)", function() { + testText(bareObj) +}); + +test("text(Function)", function() { + testText(functionReturningObj); +}); + +test("text(Function) with incoming value", function() { + expect(2); + + var old = "This link has class=\"blog\": Simon Willison's Weblog"; + + jQuery('#sap').text(function(i, val) { + equals( val, old, "Make sure the incoming value is correct." ); + return "foobar"; + }); + + equals( jQuery("#sap").text(), "foobar", 'Check for merged text of more then one element.' ); + + QUnit.reset(); +}); + var testWrap = function(val) { - expect(15); + expect(18); var defaultText = 'Try them out:' var result = jQuery('#first').wrap(val( '
' )).text(); equals( defaultText, result, 'Check for wrapping of on-the-fly html' ); ok( jQuery('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' ); - reset(); + QUnit.reset(); var defaultText = 'Try them out:' var result = jQuery('#first').wrap(val( document.getElementById('empty') )).parent(); ok( result.is('ol'), 'Check for element wrapping' ); equals( result.text(), defaultText, 'Check for element wrapping' ); - reset(); + QUnit.reset(); jQuery('#check1').click(function() { var checkbox = this; ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" ); @@ -36,7 +74,9 @@ var testWrap = function(val) { // using contents will get comments regular, text, and comment nodes var j = jQuery("#nonnodes").contents(); j.wrap(val( "" )); - equals( jQuery("#nonnodes > i").length, 3, "Check node,textnode,comment wraps ok" ); + + // Blackberry 4.6 doesn't maintain comments in the DOM + equals( jQuery("#nonnodes > i").length, jQuery("#nonnodes")[0].childNodes.length, "Check node,textnode,comment wraps ok" ); equals( jQuery("#nonnodes > i").text(), j.text(), "Check node,textnode,comment wraps doesn't hurt text" ); // Try wrapping a disconnected node @@ -54,6 +94,20 @@ var testWrap = function(val) { equals( j[0].parentNode.parentNode.childNodes.length, 1, "There should only be one element wrapping." ); equals( j.length, 1, "There should only be one element (no cloning)." ); equals( j[0].parentNode.nodeName.toUpperCase(), "P", "The span should be in the paragraph." ); + + // Wrap an element with a jQuery set + j = jQuery("").wrap(jQuery("
")); + equals( j[0].parentNode.nodeName.toLowerCase(), "div", "Wrapping works." ); + + // Wrap an element with a jQuery set and event + result = jQuery("
").click(function(){ + ok(true, "Event triggered."); + }); + + j = jQuery("").wrap(result); + equals( j[0].parentNode.nodeName.toLowerCase(), "div", "Wrapping works." ); + + j.parent().trigger("click"); } test("wrap(String|Element)", function() { @@ -76,7 +130,7 @@ var testWrapAll = function(val) { equals( jQuery("#first").parent().parent()[0].previousSibling, prev, "Correct Previous Sibling" ); equals( jQuery("#first").parent().parent()[0].parentNode, p, "Correct Parent" ); - reset(); + QUnit.reset(); var prev = jQuery("#firstp")[0].previousSibling; var p = jQuery("#first")[0].parentNode; var result = jQuery('#firstp,#first').wrapAll(val( document.getElementById('empty') )); @@ -89,37 +143,43 @@ test("wrapAll(String|Element)", function() { testWrapAll(bareObj); }); -// TODO: Figure out why each(wrapAll) is not equivalent to wrapAll -// test("wrapAll(Function)", function() { -// testWrapAll(functionReturningObj); -// }) - var testWrapInner = function(val) { - expect(6); + expect(11); var num = jQuery("#first").children().length; - var result = jQuery('#first').wrapInner('
'); + var result = jQuery('#first').wrapInner(val('
')); + equals( jQuery("#first").children().length, 1, "Only one child" ); + ok( jQuery("#first").children().is(".red"), "Verify Right Element" ); + equals( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" ); + + QUnit.reset(); + var num = jQuery("#first").html("foo
test
test2
").children().length; + var result = jQuery('#first').wrapInner(val('
')); equals( jQuery("#first").children().length, 1, "Only one child" ); ok( jQuery("#first").children().is(".red"), "Verify Right Element" ); equals( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" ); - reset(); + QUnit.reset(); var num = jQuery("#first").children().length; - var result = jQuery('#first').wrapInner(document.getElementById('empty')); + var result = jQuery('#first').wrapInner(val(document.getElementById('empty'))); equals( jQuery("#first").children().length, 1, "Only one child" ); ok( jQuery("#first").children().is("#empty"), "Verify Right Element" ); equals( jQuery("#first").children().children().length, num, "Verify Elements Intact" ); + + var div = jQuery("
"); + div.wrapInner(val("")); + equals(div.children().length, 1, "The contents were wrapped."); + equals(div.children()[0].nodeName.toLowerCase(), "span", "A span was inserted."); } test("wrapInner(String|Element)", function() { testWrapInner(bareObj); }); -// TODO: wrapInner uses wrapAll -- get wrapAll working with Function -// test("wrapInner(Function)", function() { -// testWrapInner(functionReturningObj) -// }) +test("wrapInner(Function)", function() { + testWrapInner(functionReturningObj) +}); -var testUnwrap = function() { +test("unwrap()", function() { expect(9); jQuery("body").append(' '); @@ -144,66 +204,82 @@ var testUnwrap = function() { same( jQuery('body > span.unwrap').get(), abcdef, 'body contains 6 .unwrap child spans' ); jQuery('body > span.unwrap').remove(); -} - -test("unwrap()", function() { - testUnwrap(); }); var testAppend = function(valueObj) { - expect(21); + expect(37); var defaultText = 'Try them out:' var result = jQuery('#first').append(valueObj('buga')); equals( result.text(), defaultText + 'buga', 'Check if text appending works' ); equals( jQuery('#select3').append(valueObj('')).find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element'); - reset(); + QUnit.reset(); var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:"; jQuery('#sap').append(valueObj(document.getElementById('first'))); - equals( expected, jQuery('#sap').text(), "Check for appending of element" ); + equals( jQuery('#sap').text(), expected, "Check for appending of element" ); - reset(); + QUnit.reset(); expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo"; jQuery('#sap').append(valueObj([document.getElementById('first'), document.getElementById('yahoo')])); - equals( expected, jQuery('#sap').text(), "Check for appending of array of elements" ); + equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" ); - reset(); + QUnit.reset(); expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:"; - jQuery('#sap').append(valueObj(jQuery("#first, #yahoo"))); - equals( expected, jQuery('#sap').text(), "Check for appending of jQuery object" ); + jQuery('#sap').append(valueObj(jQuery("#yahoo, #first"))); + equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" ); - reset(); + QUnit.reset(); jQuery("#sap").append(valueObj( 5 )); ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" ); - reset(); + QUnit.reset(); jQuery("#sap").append(valueObj( " text with spaces " )); ok( jQuery("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" ); - reset(); + QUnit.reset(); ok( jQuery("#sap").append(valueObj( [] )), "Check for appending an empty array." ); ok( jQuery("#sap").append(valueObj( "" )), "Check for appending an empty string." ); ok( jQuery("#sap").append(valueObj( document.getElementsByTagName("foo") )), "Check for appending an empty nodelist." ); - reset(); + QUnit.reset(); + jQuery("form").append(valueObj('')); + jQuery("form input[name=radiotest]").each(function(){ + ok( jQuery(this).is(':checked'), "Append checked radio"); + }).remove(); + + QUnit.reset(); + jQuery("form").append(valueObj('')); + jQuery("form input[name=radiotest]").each(function(){ + ok( jQuery(this).is(':checked'), "Append alternately formated checked radio"); + }).remove(); + + QUnit.reset(); + jQuery("form").append(valueObj('')); + jQuery("form input[name=radiotest]").each(function(){ + ok( jQuery(this).is(':checked'), "Append HTML5-formated checked radio"); + }).remove(); + + QUnit.reset(); jQuery("#sap").append(valueObj( document.getElementById('form') )); equals( jQuery("#sap>form").size(), 1, "Check for appending a form" ); // Bug #910 - reset(); + QUnit.reset(); var pass = true; try { - jQuery( jQuery("#iframe")[0].contentWindow.document.body ).append(valueObj( "
test
" )); - } catch(e) { + var body = jQuery("#iframe")[0].contentWindow.document.body; + pass = false; - } + jQuery( body ).append(valueObj( "
test
" )); + pass = true; + } catch(e) {} ok( pass, "Test for appending a DOM node to the contents of an IFrame" ); - reset(); + QUnit.reset(); jQuery('
').appendTo('#form').append(valueObj( 'test' )); t( 'Append legend', '#legend', ['legend'] ); - reset(); + QUnit.reset(); jQuery('#select1').append(valueObj( '' )); equals( jQuery('#select1 option:last').text(), "Test", "Appending <OPTION> (all caps)" ); @@ -213,17 +289,19 @@ var testAppend = function(valueObj) { jQuery('#table colgroup').append(valueObj( '' )); ok( jQuery('#table colgroup col').length, "Append col" ); - reset(); + QUnit.reset(); jQuery('#table').append(valueObj( '' )); ok( jQuery('#table caption').length, "Append caption" ); - reset(); + QUnit.reset(); jQuery('form:last') .append(valueObj( '' )) .append(valueObj( '' )); t( "Append Select", "#appendSelect1, #appendSelect2", ["appendSelect1", "appendSelect2"] ); + equals( "Two nodes", jQuery('
').append("Two", " nodes").text(), "Appending two text nodes (#4011)" ); + // using contents will get comments regular, text, and comment nodes var j = jQuery("#nonnodes").contents(); var d = jQuery("
").appendTo("#nonnodes").append(j); @@ -235,43 +313,148 @@ var testAppend = function(valueObj) { } test("append(String|Element|Array<Element>|jQuery)", function() { - testAppend(bareObj); + testAppend(bareObj); }); test("append(Function)", function() { testAppend(functionReturningObj); -}) +}); -test("appendTo(String|Element|Array<Element>|jQuery)", function() { +test("append(Function) with incoming value", function() { expect(12); + + var defaultText = 'Try them out:', old = jQuery("#first").html(); + + var result = jQuery('#first').append(function(i, val){ + equals( val, old, "Make sure the incoming value is correct." ); + return 'buga'; + }); + equals( result.text(), defaultText + 'buga', 'Check if text appending works' ); + + var select = jQuery('#select3'); + old = select.html(); + + equals( select.append(function(i, val){ + equals( val, old, "Make sure the incoming value is correct." ); + return ''; + }).find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element'); + + QUnit.reset(); + var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:"; + old = jQuery("#sap").html(); + + jQuery('#sap').append(function(i, val){ + equals( val, old, "Make sure the incoming value is correct." ); + return document.getElementById('first'); + }); + equals( jQuery('#sap').text(), expected, "Check for appending of element" ); + + QUnit.reset(); + expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo"; + old = jQuery("#sap").html(); + + jQuery('#sap').append(function(i, val){ + equals( val, old, "Make sure the incoming value is correct." ); + return [document.getElementById('first'), document.getElementById('yahoo')]; + }); + equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" ); + + QUnit.reset(); + expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:"; + old = jQuery("#sap").html(); + + jQuery('#sap').append(function(i, val){ + equals( val, old, "Make sure the incoming value is correct." ); + return jQuery("#yahoo, #first"); + }); + equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" ); + + QUnit.reset(); + old = jQuery("#sap").html(); + + jQuery("#sap").append(function(i, val){ + equals( val, old, "Make sure the incoming value is correct." ); + return 5; + }); + ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" ); + + QUnit.reset(); +}); + +test("append the same fragment with events (Bug #6997, 5566)", function () { + expect(2 + (document.fireEvent ? 1 : 0)); + stop(1000); + + var element; + + // This patch modified the way that cloning occurs in IE; we need to make sure that + // native event handlers on the original object don’t get disturbed when they are + // modified on the clone + if (!jQuery.support.noCloneEvent && document.fireEvent) { + element = jQuery("div:first").click(function () { + ok(true, "Event exists on original after being unbound on clone"); + jQuery(this).unbind('click'); + }); + element.clone(true).unbind('click')[0].fireEvent('onclick'); + element[0].fireEvent('onclick'); + } + + element = jQuery("").click(function () { + ok(true, "Append second element events work"); + }); + + jQuery("#listWithTabIndex li").append(element) + .find('a.test6997').eq(1).click(); + + element = jQuery("
  • ").click(function () { + ok(true, "Before second element events work"); + start(); + }); + + jQuery("#listWithTabIndex li").before(element); + jQuery("#listWithTabIndex li.test6997").eq(1).click(); +}); + +test("appendTo(String|Element|Array<Element>|jQuery)", function() { + expect(16); + var defaultText = 'Try them out:' jQuery('buga').appendTo('#first'); equals( jQuery("#first").text(), defaultText + 'buga', 'Check if text appending works' ); equals( jQuery('').appendTo('#select3').parent().find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element'); - reset(); + QUnit.reset(); + var l = jQuery("#first").children().length + 2; + jQuery("test"); + jQuery("test"); + jQuery([ jQuery("test")[0], jQuery("test")[0] ]) + .appendTo("#first"); + equals( jQuery("#first").children().length, l, "Make sure the elements were inserted." ); + equals( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "strong", "Verify the last element." ); + + QUnit.reset(); var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:"; jQuery(document.getElementById('first')).appendTo('#sap'); - equals( expected, jQuery('#sap').text(), "Check for appending of element" ); + equals( jQuery('#sap').text(), expected, "Check for appending of element" ); - reset(); + QUnit.reset(); expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo"; jQuery([document.getElementById('first'), document.getElementById('yahoo')]).appendTo('#sap'); - equals( expected, jQuery('#sap').text(), "Check for appending of array of elements" ); + equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" ); - reset(); + QUnit.reset(); ok( jQuery(document.createElement("script")).appendTo("body").length, "Make sure a disconnected script can be appended." ); - reset(); + QUnit.reset(); expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:"; - jQuery("#first, #yahoo").appendTo('#sap'); - equals( expected, jQuery('#sap').text(), "Check for appending of jQuery object" ); + jQuery("#yahoo, #first").appendTo('#sap'); + equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" ); - reset(); + QUnit.reset(); jQuery('#select1').appendTo('#foo'); t( 'Append select', '#foo select', ['select1'] ); - reset(); + QUnit.reset(); var div = jQuery("
    ").click(function(){ ok(true, "Running a cloned click."); }); @@ -280,7 +463,7 @@ test("appendTo(String|Element|Array<Element>|jQuery)", function() { jQuery("#main div:last").click(); jQuery("#moretests div:last").click(); - reset(); + QUnit.reset(); var div = jQuery("
    ").appendTo("#main, #moretests"); equals( div.length, 2, "appendTo returns the inserted elements" ); @@ -290,7 +473,21 @@ test("appendTo(String|Element|Array<Element>|jQuery)", function() { ok( jQuery("#main div:last").hasClass("test"), "appendTo element was modified after the insertion" ); ok( jQuery("#moretests div:last").hasClass("test"), "appendTo element was modified after the insertion" ); - reset(); + QUnit.reset(); + + div = jQuery("
    "); + jQuery("ab").filter("span").appendTo( div ); + + equals( div.children().length, 1, "Make sure the right number of children were inserted." ); + + div = jQuery("#moretests div"); + + var num = jQuery("#main div").length; + div.remove().appendTo("#main"); + + equals( jQuery("#main div").length, num, "Make sure all the removed divs were inserted." ); + + QUnit.reset(); }); var testPrepend = function(val) { @@ -300,21 +497,21 @@ var testPrepend = function(val) { equals( result.text(), 'buga' + defaultText, 'Check if text prepending works' ); equals( jQuery('#select3').prepend(val( '' )).find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element'); - reset(); + QUnit.reset(); var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog"; jQuery('#sap').prepend(val( document.getElementById('first') )); - equals( expected, jQuery('#sap').text(), "Check for prepending of element" ); + equals( jQuery('#sap').text(), expected, "Check for prepending of element" ); - reset(); + QUnit.reset(); expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog"; jQuery('#sap').prepend(val( [document.getElementById('first'), document.getElementById('yahoo')] )); - equals( expected, jQuery('#sap').text(), "Check for prepending of array of elements" ); + equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" ); - reset(); + QUnit.reset(); expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog"; - jQuery('#sap').prepend(val( jQuery("#first, #yahoo") )); - equals( expected, jQuery('#sap').text(), "Check for prepending of jQuery object" ); -} + jQuery('#sap').prepend(val( jQuery("#yahoo, #first") )); + equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" ); +}; test("prepend(String|Element|Array<Element>|jQuery)", function() { testPrepend(bareObj); @@ -322,7 +519,58 @@ test("prepend(String|Element|Array<Element>|jQuery)", function() { test("prepend(Function)", function() { testPrepend(functionReturningObj); -}) +}); + +test("prepend(Function) with incoming value", function() { + expect(10); + + var defaultText = 'Try them out:', old = jQuery('#first').html(); + var result = jQuery('#first').prepend(function(i, val) { + equals( val, old, "Make sure the incoming value is correct." ); + return 'buga'; + }); + equals( result.text(), 'buga' + defaultText, 'Check if text prepending works' ); + + old = jQuery("#select3").html(); + + equals( jQuery('#select3').prepend(function(i, val) { + equals( val, old, "Make sure the incoming value is correct." ); + return ''; + }).find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element'); + + QUnit.reset(); + var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog"; + old = jQuery('#sap').html(); + + jQuery('#sap').prepend(function(i, val) { + equals( val, old, "Make sure the incoming value is correct." ); + return document.getElementById('first'); + }); + + equals( jQuery('#sap').text(), expected, "Check for prepending of element" ); + + QUnit.reset(); + expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog"; + old = jQuery('#sap').html(); + + jQuery('#sap').prepend(function(i, val) { + equals( val, old, "Make sure the incoming value is correct." ); + return [document.getElementById('first'), document.getElementById('yahoo')]; + }); + + equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" ); + + QUnit.reset(); + expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog"; + old = jQuery('#sap').html(); + + jQuery('#sap').prepend(function(i, val) { + equals( val, old, "Make sure the incoming value is correct." ); + return jQuery("#yahoo, #first"); + }); + + equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" ); +}); test("prependTo(String|Element|Array<Element>|jQuery)", function() { expect(6); @@ -331,22 +579,22 @@ test("prependTo(String|Element|Array<Element>|jQuery)", function() { equals( jQuery('#first').text(), 'buga' + defaultText, 'Check if text prepending works' ); equals( jQuery('').prependTo('#select3').parent().find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element'); - reset(); + QUnit.reset(); var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog"; jQuery(document.getElementById('first')).prependTo('#sap'); - equals( expected, jQuery('#sap').text(), "Check for prepending of element" ); + equals( jQuery('#sap').text(), expected, "Check for prepending of element" ); - reset(); + QUnit.reset(); expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog"; jQuery([document.getElementById('first'), document.getElementById('yahoo')]).prependTo('#sap'); - equals( expected, jQuery('#sap').text(), "Check for prepending of array of elements" ); + equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" ); - reset(); + QUnit.reset(); expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog"; - jQuery("#first, #yahoo").prependTo('#sap'); - equals( expected, jQuery('#sap').text(), "Check for prepending of jQuery object" ); + jQuery("#yahoo, #first").prependTo('#sap'); + equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" ); - reset(); + QUnit.reset(); jQuery('').prependTo('form:last'); jQuery('').prependTo('form:last'); @@ -357,22 +605,22 @@ var testBefore = function(val) { expect(6); var expected = 'This is a normal link: bugaYahoo'; jQuery('#yahoo').before(val( 'buga' )); - equals( expected, jQuery('#en').text(), 'Insert String before' ); + equals( jQuery('#en').text(), expected, 'Insert String before' ); - reset(); + QUnit.reset(); expected = "This is a normal link: Try them out:Yahoo"; jQuery('#yahoo').before(val( document.getElementById('first') )); - equals( expected, jQuery('#en').text(), "Insert element before" ); + equals( jQuery('#en').text(), expected, "Insert element before" ); - reset(); + QUnit.reset(); expected = "This is a normal link: Try them out:diveintomarkYahoo"; jQuery('#yahoo').before(val( [document.getElementById('first'), document.getElementById('mark')] )); - equals( expected, jQuery('#en').text(), "Insert array of elements before" ); + equals( jQuery('#en').text(), expected, "Insert array of elements before" ); - reset(); + QUnit.reset(); expected = "This is a normal link: diveintomarkTry them out:Yahoo"; - jQuery('#yahoo').before(val( jQuery("#first, #mark") )); - equals( expected, jQuery('#en').text(), "Insert jQuery before" ); + jQuery('#yahoo').before(val( jQuery("#mark, #first") )); + equals( jQuery('#en').text(), expected, "Insert jQuery before" ); var set = jQuery("
    ").before("test"); equals( set[0].nodeName.toLowerCase(), "span", "Insert the element before the disconnected node." ); @@ -391,44 +639,44 @@ test("insertBefore(String|Element|Array<Element>|jQuery)", function() { expect(4); var expected = 'This is a normal link: bugaYahoo'; jQuery('buga').insertBefore('#yahoo'); - equals( expected, jQuery('#en').text(), 'Insert String before' ); + equals( jQuery('#en').text(), expected, 'Insert String before' ); - reset(); + QUnit.reset(); expected = "This is a normal link: Try them out:Yahoo"; jQuery(document.getElementById('first')).insertBefore('#yahoo'); - equals( expected, jQuery('#en').text(), "Insert element before" ); + equals( jQuery('#en').text(), expected, "Insert element before" ); - reset(); + QUnit.reset(); expected = "This is a normal link: Try them out:diveintomarkYahoo"; jQuery([document.getElementById('first'), document.getElementById('mark')]).insertBefore('#yahoo'); - equals( expected, jQuery('#en').text(), "Insert array of elements before" ); + equals( jQuery('#en').text(), expected, "Insert array of elements before" ); - reset(); + QUnit.reset(); expected = "This is a normal link: diveintomarkTry them out:Yahoo"; - jQuery("#first, #mark").insertBefore('#yahoo'); - equals( expected, jQuery('#en').text(), "Insert jQuery before" ); + jQuery("#mark, #first").insertBefore('#yahoo'); + equals( jQuery('#en').text(), expected, "Insert jQuery before" ); }); var testAfter = function(val) { expect(6); var expected = 'This is a normal link: Yahoobuga'; jQuery('#yahoo').after(val( 'buga' )); - equals( expected, jQuery('#en').text(), 'Insert String after' ); + equals( jQuery('#en').text(), expected, 'Insert String after' ); - reset(); + QUnit.reset(); expected = "This is a normal link: YahooTry them out:"; jQuery('#yahoo').after(val( document.getElementById('first') )); - equals( expected, jQuery('#en').text(), "Insert element after" ); + equals( jQuery('#en').text(), expected, "Insert element after" ); - reset(); + QUnit.reset(); expected = "This is a normal link: YahooTry them out:diveintomark"; jQuery('#yahoo').after(val( [document.getElementById('first'), document.getElementById('mark')] )); - equals( expected, jQuery('#en').text(), "Insert array of elements after" ); + equals( jQuery('#en').text(), expected, "Insert array of elements after" ); - reset(); + QUnit.reset(); expected = "This is a normal link: YahoodiveintomarkTry them out:"; - jQuery('#yahoo').after(val( jQuery("#first, #mark") )); - equals( expected, jQuery('#en').text(), "Insert jQuery after" ); + jQuery('#yahoo').after(val( jQuery("#mark, #first") )); + equals( jQuery('#en').text(), expected, "Insert jQuery after" ); var set = jQuery("
    ").after("test"); equals( set[1].nodeName.toLowerCase(), "span", "Insert the element after the disconnected node." ); @@ -447,50 +695,104 @@ test("insertAfter(String|Element|Array<Element>|jQuery)", function() { expect(4); var expected = 'This is a normal link: Yahoobuga'; jQuery('buga').insertAfter('#yahoo'); - equals( expected, jQuery('#en').text(), 'Insert String after' ); + equals( jQuery('#en').text(), expected, 'Insert String after' ); - reset(); + QUnit.reset(); expected = "This is a normal link: YahooTry them out:"; jQuery(document.getElementById('first')).insertAfter('#yahoo'); - equals( expected, jQuery('#en').text(), "Insert element after" ); + equals( jQuery('#en').text(), expected, "Insert element after" ); - reset(); + QUnit.reset(); expected = "This is a normal link: YahooTry them out:diveintomark"; jQuery([document.getElementById('first'), document.getElementById('mark')]).insertAfter('#yahoo'); - equals( expected, jQuery('#en').text(), "Insert array of elements after" ); + equals( jQuery('#en').text(), expected, "Insert array of elements after" ); - reset(); + QUnit.reset(); expected = "This is a normal link: YahoodiveintomarkTry them out:"; - jQuery("#first, #mark").insertAfter('#yahoo'); - equals( expected, jQuery('#en').text(), "Insert jQuery after" ); + jQuery("#mark, #first").insertAfter('#yahoo'); + equals( jQuery('#en').text(), expected, "Insert jQuery after" ); }); var testReplaceWith = function(val) { - expect(12); + expect(20); jQuery('#yahoo').replaceWith(val( 'buga' )); ok( jQuery("#replace")[0], 'Replace element with string' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' ); - reset(); + QUnit.reset(); jQuery('#yahoo').replaceWith(val( document.getElementById('first') )); ok( jQuery("#first")[0], 'Replace element with element' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after element' ); - reset(); + QUnit.reset(); + jQuery("#main").append('
    Foo
    '); + jQuery('#baz').replaceWith("Baz"); + equals( jQuery("#bar").text(),"Baz", 'Replace element with text' ); + ok( !jQuery("#baz")[0], 'Verify that original element is gone, after element' ); + + QUnit.reset(); jQuery('#yahoo').replaceWith(val( [document.getElementById('first'), document.getElementById('mark')] )); ok( jQuery("#first")[0], 'Replace element with array of elements' ); ok( jQuery("#mark")[0], 'Replace element with array of elements' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after array of elements' ); - reset(); - jQuery('#yahoo').replaceWith(val( jQuery("#first, #mark") )); + QUnit.reset(); + jQuery('#yahoo').replaceWith(val( jQuery("#mark, #first") )); ok( jQuery("#first")[0], 'Replace element with set of elements' ); ok( jQuery("#mark")[0], 'Replace element with set of elements' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' ); + QUnit.reset(); + var tmp = jQuery("
    ").appendTo("body").click(function(){ ok(true, "Newly bound click run." ); }); + var y = jQuery('
    ').appendTo("body").click(function(){ ok(true, "Previously bound click run." ); }); + var child = y.append("test").find("b").click(function(){ ok(true, "Child bound click run." ); return false; }); + + y.replaceWith( tmp ); + + tmp.click(); + y.click(); // Shouldn't be run + child.click(); // Shouldn't be run + + tmp.remove(); + y.remove(); + child.remove(); + + QUnit.reset(); + + y = jQuery('
    ').appendTo("body").click(function(){ ok(true, "Previously bound click run." ); }); + var child2 = y.append("test").find("u").click(function(){ ok(true, "Child 2 bound click run." ); return false; }); + + y.replaceWith( child2 ); + + child2.click(); + + y.remove(); + child2.remove(); + + QUnit.reset(); + var set = jQuery("
    ").replaceWith(val("test")); equals( set[0].nodeName.toLowerCase(), "span", "Replace the disconnected node." ); equals( set.length, 1, "Replace the disconnected node." ); + + var $div = jQuery("
    ").appendTo("body"); + // TODO: Work on jQuery(...) inline script execution + //$div.replaceWith("
    "); + equals(jQuery('.replacewith').length, 1, 'Check number of elements in page.'); + jQuery('.replacewith').remove(); + + QUnit.reset(); + + jQuery("#main").append("
    "); + equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." ); + + jQuery("#replaceWith").replaceWith( val("
    ") ); + equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." ); + + jQuery("#replaceWith").replaceWith( val("
    ") ); + equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." ); } test("replaceWith(String|Element|Array<Element>|jQuery)", function() { @@ -499,7 +801,27 @@ test("replaceWith(String|Element|Array<Element>|jQuery)", function() { test("replaceWith(Function)", function() { testReplaceWith(functionReturningObj); -}) + + expect(21); + + var y = jQuery("#yahoo")[0]; + + jQuery(y).replaceWith(function(){ + equals( this, y, "Make sure the context is coming in correctly." ); + }); + + QUnit.reset(); +}); + +test("replaceWith(string) for more than one element", function(){ + expect(3); + + equals(jQuery('#foo p').length, 3, 'ensuring that test data has not changed'); + + jQuery('#foo p').replaceWith('bar'); + equals(jQuery('#foo span').length, 3, 'verify that all the three original element have been replaced'); + equals(jQuery('#foo p').length, 0, 'verify that all the three original element have been replaced'); +}); test("replaceAll(String|Element|Array<Element>|jQuery)", function() { expect(10); @@ -507,26 +829,26 @@ test("replaceAll(String|Element|Array<Element>|jQuery)", function() { ok( jQuery("#replace")[0], 'Replace element with string' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' ); - reset(); + QUnit.reset(); jQuery(document.getElementById('first')).replaceAll("#yahoo"); ok( jQuery("#first")[0], 'Replace element with element' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after element' ); - reset(); + QUnit.reset(); jQuery([document.getElementById('first'), document.getElementById('mark')]).replaceAll("#yahoo"); ok( jQuery("#first")[0], 'Replace element with array of elements' ); ok( jQuery("#mark")[0], 'Replace element with array of elements' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after array of elements' ); - reset(); - jQuery("#first, #mark").replaceAll("#yahoo"); + QUnit.reset(); + jQuery("#mark, #first").replaceAll("#yahoo"); ok( jQuery("#first")[0], 'Replace element with set of elements' ); ok( jQuery("#mark")[0], 'Replace element with set of elements' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' ); }); test("clone()", function() { - expect(28); + expect(35); equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Assert text for #en' ); var clone = jQuery('#yahoo').clone(); equals( 'Try them out:Yahoo', jQuery('#first').append(clone).text(), 'Check for clone' ); @@ -540,7 +862,7 @@ test("clone()", function() { ]; for (var i = 0; i < cloneTags.length; i++) { var j = jQuery(cloneTags[i]); - equals( j[0].tagName, j.clone()[0].tagName, 'Clone a <' + cloneTags[i].substring(1)); + equals( j[0].tagName, j.clone()[0].tagName, 'Clone a ' + cloneTags[i]); } // using contents will get comments regular, text, and comment nodes @@ -566,11 +888,36 @@ test("clone()", function() { equals( div[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" ); div.find("table:last").trigger("click"); - div = jQuery("
    ").html(' '); + // this is technically an invalid object, but because of the special + // classid instantiation it is the only kind that IE has trouble with, + // so let’s test with it too. + div = jQuery("
    ").html(' '); + + clone = div.clone(true); + equals( clone.length, 1, "One element cloned" ); + equals( clone.html(), div.html(), "Element contents cloned" ); + equals( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" ); + + // and here's a valid one. + div = jQuery("
    ").html(' '); + + clone = div.clone(true); + equals( clone.length, 1, "One element cloned" ); + equals( clone.html(), div.html(), "Element contents cloned" ); + equals( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" ); + div = jQuery("
    ").data({ a: true, b: true }); div = div.clone(true); - equals( div.length, 1, "One element cloned" ); - equals( div[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" ); + equals( div.data("a"), true, "Data cloned." ); + equals( div.data("b"), true, "Data cloned." ); + + var form = document.createElement("form"); + form.action = "/test/"; + var div = document.createElement("div"); + div.appendChild( document.createTextNode("test") ); + form.appendChild( div ); + + equals( jQuery(form).clone().children().length, 1, "Make sure we just get the form back." ); }); if (!isLocal) { @@ -590,69 +937,8 @@ test("clone() on XML nodes", function() { }); } -test("val()", function() { - expect(9); - - document.getElementById('text1').value = "bla"; - equals( jQuery("#text1").val(), "bla", "Check for modified value of input element" ); - - reset(); - - equals( jQuery("#text1").val(), "Test", "Check for value of input element" ); - // ticket #1714 this caused a JS error in IE - equals( jQuery("#first").val(), "", "Check a paragraph element to see if it has a value" ); - ok( jQuery([]).val() === undefined, "Check an empty jQuery object will return undefined from val" ); - - equals( jQuery('#select2').val(), '3', 'Call val() on a single="single" select' ); - - same( jQuery('#select3').val(), ['1', '2'], 'Call val() on a multiple="multiple" select' ); - - equals( jQuery('#option3c').val(), '2', 'Call val() on a option element with value' ); - - equals( jQuery('#option3a').val(), '', 'Call val() on a option element with empty value' ); - - equals( jQuery('#option3e').val(), 'no value', 'Call val() on a option element with no value attribute' ); - -}); - -var testVal = function(valueObj) { - expect(6); - - jQuery("#text1").val(valueObj( 'test' )); - equals( document.getElementById('text1').value, "test", "Check for modified (via val(String)) value of input element" ); - - jQuery("#text1").val(valueObj( 67 )); - equals( document.getElementById('text1').value, "67", "Check for modified (via val(Number)) value of input element" ); - - jQuery("#select1").val(valueObj( "3" )); - equals( jQuery("#select1").val(), "3", "Check for modified (via val(String)) value of select element" ); - - jQuery("#select1").val(valueObj( 2 )); - equals( jQuery("#select1").val(), "2", "Check for modified (via val(Number)) value of select element" ); - - jQuery("#select1").append(""); - jQuery("#select1").val(valueObj( 4 )); - equals( jQuery("#select1").val(), "4", "Should be possible to set the val() to a newly created option" ); - - // using contents will get comments regular, text, and comment nodes - var j = jQuery("#nonnodes").contents(); - j.val(valueObj( "asdf" )); - equals( j.val(), "asdf", "Check node,textnode,comment with val()" ); - j.removeAttr("value"); -} - -test("val(String/Number)", function() { - testVal(bareObj); -}); - -test("val(Function)", function() { - testVal(functionReturningObj); -}) - var testHtml = function(valueObj) { - expect(20); - - window.debug = true; + expect(31); jQuery.scriptorder = 0; @@ -664,9 +950,21 @@ var testHtml = function(valueObj) { } ok( pass, "Set HTML" ); - delete window.debug; + div = jQuery("
    ").html( valueObj('
    ') ); + + equals( div.children().length, 2, "Make sure two child nodes exist." ); + equals( div.children().children().length, 1, "Make sure that a grandchild exists." ); + + var space = jQuery("
    ").html(valueObj(" "))[0].innerHTML; + ok( /^\xA0$|^ $/.test( space ), "Make sure entities are passed through correctly." ); + equals( jQuery("
    ").html(valueObj("&"))[0].innerHTML, "&", "Make sure entities are passed through correctly." ); + + jQuery("#main").html(valueObj("")); - reset(); + equals( jQuery("#main").children().length, 1, "Make sure there is a child element." ); + equals( jQuery("#main").children()[0].nodeName.toUpperCase(), "STYLE", "And that a style element was inserted." ); + + QUnit.reset(); // using contents will get comments regular, text, and comment nodes var j = jQuery("#nonnodes").contents(); j.html(valueObj("bold")); @@ -684,25 +982,28 @@ var testHtml = function(valueObj) { equals( $div.html(valueObj( 0 )).html(), '0', 'Setting a zero as html' ); var $div2 = jQuery('
    '), insert = "<div>hello1</div>"; - equals( $div2.html(insert).html(), insert, "Verify escaped insertion." ); - equals( $div2.html("x" + insert).html(), "x" + insert, "Verify escaped insertion." ); - equals( $div2.html(" " + insert).html(), " " + insert, "Verify escaped insertion." ); + equals( $div2.html(insert).html().replace(/>/g, ">"), insert, "Verify escaped insertion." ); + equals( $div2.html("x" + insert).html().replace(/>/g, ">"), "x" + insert, "Verify escaped insertion." ); + equals( $div2.html(" " + insert).html().replace(/>/g, ">"), " " + insert, "Verify escaped insertion." ); + + var map = jQuery("").html(valueObj("jQuery")); + equals( map[0].childNodes.length, 1, "The area was inserted." ); + equals( map[0].firstChild.nodeName.toLowerCase(), "area", "The area was inserted." ); - reset(); + QUnit.reset(); jQuery("#main").html(valueObj('
    ')); - stop(); + jQuery("#main").html(valueObj("")); + jQuery("#main").html(valueObj("")); + jQuery("#main").html(valueObj("")); jQuery("#main").html(valueObj('')); jQuery("#main").html(valueObj('foo
    ')); - // it was decided that waiting to execute ALL scripts makes sense since nested ones have to wait anyway so this test case is changed, see #1959 jQuery("#main").html(valueObj("