30fff7731ff5ecee17c575fff6b0cc5f1f28f0e9
[jquery.git] / test / unit / core.js
1 module("core");
2
3 test("Basic requirements", function() {
4         expect(7);
5         ok( Array.prototype.push, "Array.push()" );
6         ok( Function.prototype.apply, "Function.apply()" );
7         ok( document.getElementById, "getElementById" );
8         ok( document.getElementsByTagName, "getElementsByTagName" );
9         ok( RegExp, "RegExp" );
10         ok( jQuery, "jQuery" );
11         ok( $, "$()" );
12 });
13
14 test("$()", function() {
15         expect(4);
16         
17         var main = $("#main");
18         isSet( $("div p", main).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" );
19         
20 /*
21         // disabled since this test was doing nothing. i tried to fix it but i'm not sure
22         // what the expected behavior should even be. FF returns "\n" for the text node
23         // make sure this is handled
24         var crlfContainer = $('<p>\r\n</p>');
25         var x = crlfContainer.contents().get(0).nodeValue;
26         equals( x, what???, "Check for \\r and \\n in jQuery()" );
27 */
28         
29         /* // Disabled until we add this functionality in
30         var pass = true;
31         try {
32                 $("<div>Testing</div>").appendTo(document.getElementById("iframe").contentDocument.body);
33         } catch(e){
34                 pass = false;
35         }
36         ok( pass, "$('&lt;tag&gt;') needs optional document parameter to ease cross-frame DOM wrangling, see #968" );*/
37
38         var code = $("<code/>");
39         equals( code.length, 1, "Correct number of elements generated for code" );
40         var img = $("<img/>");
41         equals( img.length, 1, "Correct number of elements generated for img" );
42         var div = $("<div/><hr/><code/><b/>");
43         equals( div.length, 4, "Correct number of elements generated for div hr code b" );
44 });
45
46 test("noConflict", function() {
47         expect(6);
48         
49         var old = jQuery;
50         var newjQuery = jQuery.noConflict();
51
52         ok( newjQuery == old, "noConflict returned the jQuery object" );
53         ok( jQuery == old, "Make sure jQuery wasn't touched." );
54         ok( $ == "$", "Make sure $ was reverted." );
55
56         jQuery = $ = old;
57
58         newjQuery = jQuery.noConflict(true);
59
60         ok( newjQuery == old, "noConflict returned the jQuery object" );
61         ok( jQuery == "jQuery", "Make sure jQuery was reverted." );
62         ok( $ == "$", "Make sure $ was reverted." );
63
64         jQuery = $ = old;
65 });
66
67 test("isFunction", function() {
68         expect(21);
69
70         // Make sure that false values return false
71         ok( !jQuery.isFunction(), "No Value" );
72         ok( !jQuery.isFunction( null ), "null Value" );
73         ok( !jQuery.isFunction( undefined ), "undefined Value" );
74         ok( !jQuery.isFunction( "" ), "Empty String Value" );
75         ok( !jQuery.isFunction( 0 ), "0 Value" );
76
77         // Check built-ins
78         // Safari uses "(Internal Function)"
79         ok( jQuery.isFunction(String), "String Function" );
80         ok( jQuery.isFunction(Array), "Array Function" );
81         ok( jQuery.isFunction(Object), "Object Function" );
82         ok( jQuery.isFunction(Function), "Function Function" );
83
84         // When stringified, this could be misinterpreted
85         var mystr = "function";
86         ok( !jQuery.isFunction(mystr), "Function String" );
87
88         // When stringified, this could be misinterpreted
89         var myarr = [ "function" ];
90         ok( !jQuery.isFunction(myarr), "Function Array" );
91
92         // When stringified, this could be misinterpreted
93         var myfunction = { "function": "test" };
94         ok( !jQuery.isFunction(myfunction), "Function Object" );
95
96         // Make sure normal functions still work
97         var fn = function(){};
98         ok( jQuery.isFunction(fn), "Normal Function" );
99
100         var obj = document.createElement("object");
101
102         // Firefox says this is a function
103         ok( !jQuery.isFunction(obj), "Object Element" );
104
105         // IE says this is an object
106         ok( jQuery.isFunction(obj.getAttribute), "getAttribute Function" );
107
108         var nodes = document.body.childNodes;
109
110         // Safari says this is a function
111         ok( !jQuery.isFunction(nodes), "childNodes Property" );
112
113         var first = document.body.firstChild;
114         
115         // Normal elements are reported ok everywhere
116         ok( !jQuery.isFunction(first), "A normal DOM Element" );
117
118         var input = document.createElement("input");
119         input.type = "text";
120         document.body.appendChild( input );
121
122         // IE says this is an object
123         ok( jQuery.isFunction(input.focus), "A default function property" );
124
125         document.body.removeChild( input );
126
127         var a = document.createElement("a");
128         a.href = "some-function";
129         document.body.appendChild( a );
130
131         // This serializes with the word 'function' in it
132         ok( !jQuery.isFunction(a), "Anchor Element" );
133
134         document.body.removeChild( a );
135
136         // Recursive function calls have lengths and array-like properties
137         function callme(callback){
138                 function fn(response){
139                         callback(response);
140                 }
141
142                 ok( jQuery.isFunction(fn), "Recursive Function Call" );
143
144                 fn({ some: "data" });
145         };
146
147         callme(function(){
148                 callme(function(){});
149         });
150 });
151
152 var foo = false;
153
154 test("$('html')", function() {
155         expect(6);
156
157         reset();
158         foo = false;
159         var s = $("<script>var foo='test';</script>")[0];
160         ok( s, "Creating a script" );
161         ok( !foo, "Make sure the script wasn't executed prematurely" );
162         $("body").append(s);
163         ok( foo, "Executing a scripts contents in the right context" );
164         
165         reset();
166         ok( $("<link rel='stylesheet'/>")[0], "Creating a link" );
167         
168         reset();
169
170         var j = $("<span>hi</span> there <!-- mon ami -->");
171         ok( j.length >= 2, "Check node,textnode,comment creation (some browsers delete comments)" );
172
173         ok( !$("<option>test</option>")[0].selected, "Make sure that options are auto-selected #2050" );
174 });
175
176 test("$('html', context)", function() {
177         expect(1);
178
179         var $div = $("<div/>");
180         var $span = $("<span/>", $div);
181         equals($span.length, 1, "Verify a span created with a div context works, #1763");
182 });
183
184 test("$(selector, xml).text(str) - Loaded via XML document", function() {
185         expect(2);
186         stop();
187         $.get('data/dashboard.xml', function(xml) { 
188                 // tests for #1419 where IE was a problem
189                 equals( $("tab:first", xml).text(), "blabla", "Verify initial text correct" );
190                 $("tab:first", xml).text("newtext");
191                 equals( $("tab:first", xml).text(), "newtext", "Verify new text correct" );
192                 start();
193         });
194 });
195
196 test("length", function() {
197         expect(1);
198         ok( $("p").length == 6, "Get Number of Elements Found" );
199 });
200
201 test("size()", function() {
202         expect(1);
203         ok( $("p").size() == 6, "Get Number of Elements Found" );
204 });
205
206 test("get()", function() {
207         expect(1);
208         isSet( $("p").get(), q("firstp","ap","sndp","en","sap","first"), "Get All Elements" );
209 });
210
211 test("get(Number)", function() {
212         expect(1);
213         ok( $("p").get(0) == document.getElementById("firstp"), "Get A Single Element" );
214 });
215
216 test("add(String|Element|Array|undefined)", function() {
217         expect(8);
218         isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
219         isSet( $("#sndp").add( $("#en")[0] ).add( $("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
220         ok( $([]).add($("#form")[0].elements).length >= 13, "Check elements from array" );
221         
222         var x = $([]).add($("<p id='x1'>xxx</p>")).add($("<p id='x2'>xxx</p>"));
223         ok( x[0].id == "x1", "Check on-the-fly element1" );
224         ok( x[1].id == "x2", "Check on-the-fly element2" );
225         
226         var x = $([]).add("<p id='x1'>xxx</p>").add("<p id='x2'>xxx</p>");
227         ok( x[0].id == "x1", "Check on-the-fly element1" );
228         ok( x[1].id == "x2", "Check on-the-fly element2" );
229         
230         var notDefined;
231         equals( $([]).add(notDefined).length, 0, "Check that undefined adds nothing." );
232 });
233
234 test("each(Function)", function() {
235         expect(1);
236         var div = $("div");
237         div.each(function(){this.foo = 'zoo';});
238         var pass = true;
239         for ( var i = 0; i < div.size(); i++ ) {
240                 if ( div.get(i).foo != "zoo" ) pass = false;
241         }
242         ok( pass, "Execute a function, Relative" );
243 });
244
245 test("index(Object)", function() {
246         expect(8);
247         ok( $([window, document]).index(window) == 0, "Check for index of elements" );
248         ok( $([window, document]).index(document) == 1, "Check for index of elements" );
249         var inputElements = $('#radio1,#radio2,#check1,#check2');
250         ok( inputElements.index(document.getElementById('radio1')) == 0, "Check for index of elements" );
251         ok( inputElements.index(document.getElementById('radio2')) == 1, "Check for index of elements" );
252         ok( inputElements.index(document.getElementById('check1')) == 2, "Check for index of elements" );
253         ok( inputElements.index(document.getElementById('check2')) == 3, "Check for index of elements" );
254         ok( inputElements.index(window) == -1, "Check for not found index" );
255         ok( inputElements.index(document) == -1, "Check for not found index" );
256 });
257
258 test("attr(String)", function() {
259         expect(20);
260         ok( $('#text1').attr('value') == "Test", 'Check for value attribute' );
261         ok( $('#text1').attr('value', "Test2").attr('defaultValue') == "Test", 'Check for defaultValue attribute' );
262         ok( $('#text1').attr('type') == "text", 'Check for type attribute' );
263         ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' );
264         ok( $('#check1').attr('type') == "checkbox", 'Check for type attribute' );
265         ok( $('#simon1').attr('rel') == "bookmark", 'Check for rel attribute' );
266         ok( $('#google').attr('title') == "Google!", 'Check for title attribute' );
267         ok( $('#mark').attr('hreflang') == "en", 'Check for hreflang attribute' );
268         ok( $('#en').attr('lang') == "en", 'Check for lang attribute' );
269         ok( $('#simon').attr('class') == "blog link", 'Check for class attribute' );
270         ok( $('#name').attr('name') == "name", 'Check for name attribute' );
271         ok( $('#text1').attr('name') == "action", 'Check for name attribute' );
272         ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
273         ok( $('#text1').attr('maxlength') == '30', 'Check for maxlength attribute' );
274         ok( $('#text1').attr('maxLength') == '30', 'Check for maxLength attribute' );
275         ok( $('#area1').attr('maxLength') == '30', 'Check for maxLength attribute' );
276         ok( $('#select2').attr('selectedIndex') == 3, 'Check for selectedIndex attribute' );
277         ok( $('#foo').attr('nodeName') == 'DIV', 'Check for nodeName attribute' );
278         ok( $('#foo').attr('tagName') == 'DIV', 'Check for tagName attribute' );
279         
280         $('<a id="tAnchor5"></a>').attr('href', '#5').appendTo('#main'); // using innerHTML in IE causes href attribute to be serialized to the full path
281         ok( $('#tAnchor5').attr('href') == "#5", 'Check for non-absolute href (an anchor)' );
282 });
283
284 if ( !isLocal ) {
285         test("attr(String) in XML Files", function() {
286                 expect(2);
287                 stop();
288                 $.get("data/dashboard.xml", function(xml) {
289                         ok( $("locations", xml).attr("class") == "foo", "Check class attribute in XML document" );
290                         ok( $("location", xml).attr("for") == "bar", "Check for attribute in XML document" );
291                         start();
292                 });
293         });
294 }
295
296 test("attr(String, Function)", function() {
297         expect(2);
298         ok( $('#text1').attr('value', function() { return this.id })[0].value == "text1", "Set value from id" );
299         ok( $('#text1').attr('title', function(i) { return i }).attr('title') == "0", "Set value with an index");
300 });
301
302 test("attr(Hash)", function() {
303         expect(1);
304         var pass = true;
305         $("div").attr({foo: 'baz', zoo: 'ping'}).each(function(){
306                 if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
307         });
308         ok( pass, "Set Multiple Attributes" );
309 });
310
311 test("attr(String, Object)", function() {
312         expect(17);
313         var div = $("div");
314         div.attr("foo", "bar");
315         var pass = true;
316         for ( var i = 0; i < div.size(); i++ ) {
317                 if ( div.get(i).getAttribute('foo') != "bar" ) pass = false;
318         }
319         ok( pass, "Set Attribute" );
320
321         ok( $("#foo").attr({"width": null}), "Try to set an attribute to nothing" );    
322         
323         $("#name").attr('name', 'something');
324         ok( $("#name").attr('name') == 'something', 'Set name attribute' );
325         $("#check2").attr('checked', true);
326         ok( document.getElementById('check2').checked == true, 'Set checked attribute' );
327         $("#check2").attr('checked', false);
328         ok( document.getElementById('check2').checked == false, 'Set checked attribute' );
329         $("#text1").attr('readonly', true);
330         ok( document.getElementById('text1').readOnly == true, 'Set readonly attribute' );
331         $("#text1").attr('readonly', false);
332         ok( document.getElementById('text1').readOnly == false, 'Set readonly attribute' );
333         $("#name").attr('maxlength', '5');
334         ok( document.getElementById('name').maxLength == '5', 'Set maxlength attribute' );
335         $("#name").attr('maxLength', '10');
336         ok( document.getElementById('name').maxLength == '10', 'Set maxlength attribute' );
337
338         // for #1070
339         $("#name").attr('someAttr', '0');
340         equals( $("#name").attr('someAttr'), '0', 'Set attribute to a string of "0"' );
341         $("#name").attr('someAttr', 0);
342         equals( $("#name").attr('someAttr'), 0, 'Set attribute to the number 0' );
343         $("#name").attr('someAttr', 1);
344         equals( $("#name").attr('someAttr'), 1, 'Set attribute to the number 1' );
345
346         // using contents will get comments regular, text, and comment nodes
347         var j = $("#nonnodes").contents();
348
349         j.attr("name", "attrvalue");
350         equals( j.attr("name"), "attrvalue", "Check node,textnode,comment for attr" );
351         j.removeAttr("name")
352
353         reset();
354
355         var type = $("#check2").attr('type');
356         var thrown = false;
357         try {
358                 $("#check2").attr('type','hidden');
359         } catch(e) {
360                 thrown = true;
361         }
362         ok( thrown, "Exception thrown when trying to change type property" );
363         equals( type, $("#check2").attr('type'), "Verify that you can't change the type of an input element" );
364
365         var check = document.createElement("input");
366         var thrown = true;
367         try {
368                 $(check).attr('type','checkbox');
369         } catch(e) {
370                 thrown = false;
371         }
372         ok( thrown, "Exception thrown when trying to change type property" );
373         equals( "checkbox", $(check).attr('type'), "Verify that you can change the type of an input element that isn't in the DOM" );
374 });
375
376 if ( !isLocal ) {
377         test("attr(String, Object) - Loaded via XML document", function() {
378                 expect(2);
379                 stop();
380                 $.get('data/dashboard.xml', function(xml) { 
381                         var titles = [];
382                         $('tab', xml).each(function() {
383                                 titles.push($(this).attr('title'));
384                         });
385                         equals( titles[0], 'Location', 'attr() in XML context: Check first title' );
386                         equals( titles[1], 'Users', 'attr() in XML context: Check second title' );
387                         start();
388                 });
389         });
390 }
391
392 test("css(String|Hash)", function() {
393         expect(19);
394         
395         ok( $('#main').css("display") == 'none', 'Check for css property "display"');
396         
397         ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
398         $('#foo').css({display: 'none'});
399         ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
400         $('#foo').css({display: 'block'});
401         ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
402         
403         $('#floatTest').css({styleFloat: 'right'});
404         ok( $('#floatTest').css('styleFloat') == 'right', 'Modified CSS float using "styleFloat": Assert float is right');
405         $('#floatTest').css({cssFloat: 'left'});
406         ok( $('#floatTest').css('cssFloat') == 'left', 'Modified CSS float using "cssFloat": Assert float is left');
407         $('#floatTest').css({'float': 'right'});
408         ok( $('#floatTest').css('float') == 'right', 'Modified CSS float using "float": Assert float is right');
409         $('#floatTest').css({'font-size': '30px'});
410         ok( $('#floatTest').css('font-size') == '30px', 'Modified CSS font-size: Assert font-size is 30px');
411         
412         $.each("0,0.25,0.5,0.75,1".split(','), function(i, n) {
413                 $('#foo').css({opacity: n});
414                 ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" );
415                 $('#foo').css({opacity: parseFloat(n)});
416                 ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" );
417         });     
418         $('#foo').css({opacity: ''});
419         ok( $('#foo').css('opacity') == '1', "Assert opacity is 1 when set to an empty String" );
420 });
421
422 test("css(String, Object)", function() {
423         expect(21);
424         ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
425         $('#foo').css('display', 'none');
426         ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
427         $('#foo').css('display', 'block');
428         ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
429         
430         $('#floatTest').css('styleFloat', 'left');
431         ok( $('#floatTest').css('styleFloat') == 'left', 'Modified CSS float using "styleFloat": Assert float is left');
432         $('#floatTest').css('cssFloat', 'right');
433         ok( $('#floatTest').css('cssFloat') == 'right', 'Modified CSS float using "cssFloat": Assert float is right');
434         $('#floatTest').css('float', 'left');
435         ok( $('#floatTest').css('float') == 'left', 'Modified CSS float using "float": Assert float is left');
436         $('#floatTest').css('font-size', '20px');
437         ok( $('#floatTest').css('font-size') == '20px', 'Modified CSS font-size: Assert font-size is 20px');
438         
439         $.each("0,0.25,0.5,0.75,1".split(','), function(i, n) {
440                 $('#foo').css('opacity', n);
441                 ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" );
442                 $('#foo').css('opacity', parseFloat(n));
443                 ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" );
444         });
445         $('#foo').css('opacity', '');
446         ok( $('#foo').css('opacity') == '1', "Assert opacity is 1 when set to an empty String" );
447         // for #1438, IE throws JS error when filter exists but doesn't have opacity in it
448         if (jQuery.browser.msie) {
449                 $('#foo').css("filter", "progid:DXImageTransform.Microsoft.Chroma(color='red');");
450         }
451         equals( $('#foo').css('opacity'), '1', "Assert opacity is 1 when a different filter is set in IE, #1438" );
452
453         // using contents will get comments regular, text, and comment nodes
454         var j = $("#nonnodes").contents();
455         j.css("padding-left", "1px");
456         equals( j.css("padding-left"), "1px", "Check node,textnode,comment css works" );
457
458         // opera sometimes doesn't update 'display' correctly, see #2037
459         $("#t2037")[0].innerHTML = $("#t2037")[0].innerHTML
460         equals( $("#t2037 .hidden").css("display"), "none", "Make sure browser thinks it is hidden" );
461 });
462
463 test("jQuery.css(elem, 'height') doesn't clear radio buttons (bug #1095)", function () {
464         expect(4);
465
466         var $checkedtest = $("#checkedtest");
467         // IE6 was clearing "checked" in jQuery.css(elem, "height");
468         jQuery.css($checkedtest[0], "height");
469         ok( !! $(":radio:first", $checkedtest).attr("checked"), "Check first radio still checked." );
470         ok( ! $(":radio:last", $checkedtest).attr("checked"), "Check last radio still NOT checked." );
471         ok( !! $(":checkbox:first", $checkedtest).attr("checked"), "Check first checkbox still checked." );
472         ok( ! $(":checkbox:last", $checkedtest).attr("checked"), "Check last checkbox still NOT checked." );
473 });
474
475 test("width()", function() {
476         expect(9);
477
478         var $div = $("#nothiddendiv");
479         $div.width(30);
480         equals($div.width(), 30, "Test set to 30 correctly");
481         $div.width(-1); // handle negative numbers by ignoring #1599
482         equals($div.width(), 30, "Test negative width ignored");
483         $div.css("padding", "20px");
484         equals($div.width(), 30, "Test padding specified with pixels");
485         $div.css("border", "2px solid #fff");
486         equals($div.width(), 30, "Test border specified with pixels");
487         $div.css("padding", "2em");
488         equals($div.width(), 30, "Test padding specified with ems");
489         $div.css("border", "1em solid #fff");
490         equals($div.width(), 30, "Test border specified with ems");
491         $div.css("padding", "2%");
492         equals($div.width(), 30, "Test padding specified with percent");
493         $div.hide();
494         equals($div.width(), 30, "Test hidden div");
495         
496         $div.css({ display: "", border: "", padding: "" });
497         
498         $("#nothiddendivchild").css({ padding: "3px", border: "2px solid #fff" });
499         equals($("#nothiddendivchild").width(), 20, "Test child width with border and padding");
500         $("#nothiddendiv, #nothiddendivchild").css({ border: "", padding: "", width: "" });
501 });
502
503 test("height()", function() {
504         expect(8);
505
506         var $div = $("#nothiddendiv");
507         $div.height(30);
508         equals($div.height(), 30, "Test set to 30 correctly");
509         $div.height(-1); // handle negative numbers by ignoring #1599
510         equals($div.height(), 30, "Test negative height ignored");
511         $div.css("padding", "20px");
512         equals($div.height(), 30, "Test padding specified with pixels");
513         $div.css("border", "2px solid #fff");
514         equals($div.height(), 30, "Test border specified with pixels");
515         $div.css("padding", "2em");
516         equals($div.height(), 30, "Test padding specified with ems");
517         $div.css("border", "1em solid #fff");
518         equals($div.height(), 30, "Test border specified with ems");
519         $div.css("padding", "2%");
520         equals($div.height(), 30, "Test padding specified with percent");
521         $div.hide();
522         equals($div.height(), 30, "Test hidden div");
523         
524         $div.css({ display: "", border: "", padding: "", height: "1px" });
525 });
526
527 test("text()", function() {
528         expect(1);
529         var expected = "This link has class=\"blog\": Simon Willison's Weblog";
530         ok( $('#sap').text() == expected, 'Check for merged text of more then one element.' );
531 });
532
533 test("wrap(String|Element)", function() {
534         expect(8);
535         var defaultText = 'Try them out:'
536         var result = $('#first').wrap('<div class="red"><span></span></div>').text();
537         ok( defaultText == result, 'Check for wrapping of on-the-fly html' );
538         ok( $('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
539
540         reset();
541         var defaultText = 'Try them out:'
542         var result = $('#first').wrap(document.getElementById('empty')).parent();
543         ok( result.is('ol'), 'Check for element wrapping' );
544         ok( result.text() == defaultText, 'Check for element wrapping' );
545         
546         reset();
547         $('#check1').click(function() {         
548                 var checkbox = this;            
549                 ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
550                 $(checkbox).wrap( '<div id="c1" style="display:none;"></div>' );
551                 ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
552         }).click();
553
554         // using contents will get comments regular, text, and comment nodes
555         var j = $("#nonnodes").contents();
556         j.wrap("<i></i>");
557         equals( $("#nonnodes > i").length, 3, "Check node,textnode,comment wraps ok" );
558         equals( $("#nonnodes > i").text(), j.text() + j[1].nodeValue, "Check node,textnode,comment wraps doesn't hurt text" );
559 });
560
561 test("wrapAll(String|Element)", function() {
562         expect(8);
563         var prev = $("#first")[0].previousSibling;
564         var p = $("#first")[0].parentNode;
565         var result = $('#first,#firstp').wrapAll('<div class="red"><div id="tmp"></div></div>');
566         equals( result.parent().length, 1, 'Check for wrapping of on-the-fly html' );
567         ok( $('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
568         ok( $('#firstp').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
569         equals( $("#first").parent().parent()[0].previousSibling, prev, "Correct Previous Sibling" );
570         equals( $("#first").parent().parent()[0].parentNode, p, "Correct Parent" );
571
572         reset();
573         var prev = $("#first")[0].previousSibling;
574         var p = $("#first")[0].parentNode;
575         var result = $('#first,#firstp').wrapAll(document.getElementById('empty'));
576         equals( $("#first").parent()[0], $("#firstp").parent()[0], "Same Parent" );
577         equals( $("#first").parent()[0].previousSibling, prev, "Correct Previous Sibling" );
578         equals( $("#first").parent()[0].parentNode, p, "Correct Parent" );
579 });
580
581 test("wrapInner(String|Element)", function() {
582         expect(6);
583         var num = $("#first").children().length;
584         var result = $('#first').wrapInner('<div class="red"><div id="tmp"></div></div>');
585         equals( $("#first").children().length, 1, "Only one child" );
586         ok( $("#first").children().is(".red"), "Verify Right Element" );
587         equals( $("#first").children().children().children().length, num, "Verify Elements Intact" );
588
589         reset();
590         var num = $("#first").children().length;
591         var result = $('#first').wrapInner(document.getElementById('empty'));
592         equals( $("#first").children().length, 1, "Only one child" );
593         ok( $("#first").children().is("#empty"), "Verify Right Element" );
594         equals( $("#first").children().children().length, num, "Verify Elements Intact" );
595 });
596
597 test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
598         expect(21);
599         var defaultText = 'Try them out:'
600         var result = $('#first').append('<b>buga</b>');
601         ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
602         ok( $('#select3').append('<option value="appendTest">Append Test</option>').find('option:last-child').attr('value') == 'appendTest', 'Appending html options to select element');
603         
604         reset();
605         var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
606         $('#sap').append(document.getElementById('first'));
607         ok( expected == $('#sap').text(), "Check for appending of element" );
608         
609         reset();
610         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
611         $('#sap').append([document.getElementById('first'), document.getElementById('yahoo')]);
612         ok( expected == $('#sap').text(), "Check for appending of array of elements" );
613         
614         reset();
615         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
616         $('#sap').append($("#first, #yahoo"));
617         ok( expected == $('#sap').text(), "Check for appending of jQuery object" );
618
619         reset();
620         $("#sap").append( 5 );
621         ok( $("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
622
623         reset();
624         $("#sap").append( " text with spaces " );
625         ok( $("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );
626
627         reset();
628         ok( $("#sap").append([]), "Check for appending an empty array." );
629         ok( $("#sap").append(""), "Check for appending an empty string." );
630         ok( $("#sap").append(document.getElementsByTagName("foo")), "Check for appending an empty nodelist." );
631         
632         reset();
633         $("#sap").append(document.getElementById('form'));
634         ok( $("#sap>form").size() == 1, "Check for appending a form" ); // Bug #910
635
636         reset();
637         var pass = true;
638         try {
639                 $( $("#iframe")[0].contentWindow.document.body ).append("<div>test</div>");
640         } catch(e) {
641                 pass = false;
642         }
643
644         ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
645         
646         reset();
647         $('<fieldset/>').appendTo('#form').append('<legend id="legend">test</legend>');
648         t( 'Append legend', '#legend', ['legend'] );
649         
650         reset();
651         $('#select1').append('<OPTION>Test</OPTION>');
652         ok( $('#select1 option:last').text() == "Test", "Appending &lt;OPTION&gt; (all caps)" );
653         
654         $('#table').append('<colgroup></colgroup>');
655         ok( $('#table colgroup').length, "Append colgroup" );
656         
657         $('#table colgroup').append('<col/>');
658         ok( $('#table colgroup col').length, "Append col" );
659         
660         reset();
661         $('#table').append('<caption></caption>');
662         ok( $('#table caption').length, "Append caption" );
663
664         reset();
665         $('form:last')
666                 .append('<select id="appendSelect1"></select>')
667                 .append('<select id="appendSelect2"><option>Test</option></select>');
668         
669         t( "Append Select", "#appendSelect1, #appendSelect2", ["appendSelect1", "appendSelect2"] );
670
671         // using contents will get comments regular, text, and comment nodes
672         var j = $("#nonnodes").contents();
673         var d = $("<div/>").appendTo("#nonnodes").append(j);
674         equals( $("#nonnodes").length, 1, "Check node,textnode,comment append moved leaving just the div" );
675         ok( d.contents().length >= 2, "Check node,textnode,comment append works" );
676         d.contents().appendTo("#nonnodes");
677         d.remove();
678         ok( $("#nonnodes").contents().length >= 2, "Check node,textnode,comment append cleanup worked" );
679 });
680
681 test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
682         expect(6);
683         var defaultText = 'Try them out:'
684         $('<b>buga</b>').appendTo('#first');
685         ok( $("#first").text() == defaultText + 'buga', 'Check if text appending works' );
686         ok( $('<option value="appendTest">Append Test</option>').appendTo('#select3').parent().find('option:last-child').attr('value') == 'appendTest', 'Appending html options to select element');
687         
688         reset();
689         var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
690         $(document.getElementById('first')).appendTo('#sap');
691         ok( expected == $('#sap').text(), "Check for appending of element" );
692         
693         reset();
694         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
695         $([document.getElementById('first'), document.getElementById('yahoo')]).appendTo('#sap');
696         ok( expected == $('#sap').text(), "Check for appending of array of elements" );
697         
698         reset();
699         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
700         $("#first, #yahoo").appendTo('#sap');
701         ok( expected == $('#sap').text(), "Check for appending of jQuery object" );
702         
703         reset();
704         $('#select1').appendTo('#foo');
705         t( 'Append select', '#foo select', ['select1'] );
706 });
707
708 test("prepend(String|Element|Array&lt;Element&gt;|jQuery)", function() {
709         expect(5);
710         var defaultText = 'Try them out:'
711         var result = $('#first').prepend('<b>buga</b>');
712         ok( result.text() == 'buga' + defaultText, 'Check if text prepending works' );
713         ok( $('#select3').prepend('<option value="prependTest">Prepend Test</option>').find('option:first-child').attr('value') == 'prependTest', 'Prepending html options to select element');
714         
715         reset();
716         var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
717         $('#sap').prepend(document.getElementById('first'));
718         ok( expected == $('#sap').text(), "Check for prepending of element" );
719
720         reset();
721         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
722         $('#sap').prepend([document.getElementById('first'), document.getElementById('yahoo')]);
723         ok( expected == $('#sap').text(), "Check for prepending of array of elements" );
724         
725         reset();
726         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
727         $('#sap').prepend($("#first, #yahoo"));
728         ok( expected == $('#sap').text(), "Check for prepending of jQuery object" );
729 });
730
731 test("prependTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
732         expect(6);
733         var defaultText = 'Try them out:'
734         $('<b>buga</b>').prependTo('#first');
735         ok( $('#first').text() == 'buga' + defaultText, 'Check if text prepending works' );
736         ok( $('<option value="prependTest">Prepend Test</option>').prependTo('#select3').parent().find('option:first-child').attr('value') == 'prependTest', 'Prepending html options to select element');
737         
738         reset();
739         var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
740         $(document.getElementById('first')).prependTo('#sap');
741         ok( expected == $('#sap').text(), "Check for prepending of element" );
742
743         reset();
744         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
745         $([document.getElementById('yahoo'), document.getElementById('first')]).prependTo('#sap');
746         ok( expected == $('#sap').text(), "Check for prepending of array of elements" );
747         
748         reset();
749         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
750         $("#yahoo, #first").prependTo('#sap');
751         ok( expected == $('#sap').text(), "Check for prepending of jQuery object" );
752         
753         reset();
754         $('<select id="prependSelect1"></select>').prependTo('form:last');
755         $('<select id="prependSelect2"><option>Test</option></select>').prependTo('form:last');
756         
757         t( "Prepend Select", "#prependSelect1, #prependSelect2", ["prependSelect1", "prependSelect2"] );
758 });
759
760 test("before(String|Element|Array&lt;Element&gt;|jQuery)", function() {
761         expect(4);
762         var expected = 'This is a normal link: bugaYahoo';
763         $('#yahoo').before('<b>buga</b>');
764         ok( expected == $('#en').text(), 'Insert String before' );
765         
766         reset();
767         expected = "This is a normal link: Try them out:Yahoo";
768         $('#yahoo').before(document.getElementById('first'));
769         ok( expected == $('#en').text(), "Insert element before" );
770         
771         reset();
772         expected = "This is a normal link: Try them out:diveintomarkYahoo";
773         $('#yahoo').before([document.getElementById('first'), document.getElementById('mark')]);
774         ok( expected == $('#en').text(), "Insert array of elements before" );
775         
776         reset();
777         expected = "This is a normal link: Try them out:diveintomarkYahoo";
778         $('#yahoo').before($("#first, #mark"));
779         ok( expected == $('#en').text(), "Insert jQuery before" );
780 });
781
782 test("insertBefore(String|Element|Array&lt;Element&gt;|jQuery)", function() {
783         expect(4);
784         var expected = 'This is a normal link: bugaYahoo';
785         $('<b>buga</b>').insertBefore('#yahoo');
786         ok( expected == $('#en').text(), 'Insert String before' );
787         
788         reset();
789         expected = "This is a normal link: Try them out:Yahoo";
790         $(document.getElementById('first')).insertBefore('#yahoo');
791         ok( expected == $('#en').text(), "Insert element before" );
792         
793         reset();
794         expected = "This is a normal link: Try them out:diveintomarkYahoo";
795         $([document.getElementById('first'), document.getElementById('mark')]).insertBefore('#yahoo');
796         ok( expected == $('#en').text(), "Insert array of elements before" );
797         
798         reset();
799         expected = "This is a normal link: Try them out:diveintomarkYahoo";
800         $("#first, #mark").insertBefore('#yahoo');
801         ok( expected == $('#en').text(), "Insert jQuery before" );
802 });
803
804 test("after(String|Element|Array&lt;Element&gt;|jQuery)", function() {
805         expect(4);
806         var expected = 'This is a normal link: Yahoobuga';
807         $('#yahoo').after('<b>buga</b>');
808         ok( expected == $('#en').text(), 'Insert String after' );
809         
810         reset();
811         expected = "This is a normal link: YahooTry them out:";
812         $('#yahoo').after(document.getElementById('first'));
813         ok( expected == $('#en').text(), "Insert element after" );
814
815         reset();
816         expected = "This is a normal link: YahooTry them out:diveintomark";
817         $('#yahoo').after([document.getElementById('first'), document.getElementById('mark')]);
818         ok( expected == $('#en').text(), "Insert array of elements after" );
819         
820         reset();
821         expected = "This is a normal link: YahooTry them out:diveintomark";
822         $('#yahoo').after($("#first, #mark"));
823         ok( expected == $('#en').text(), "Insert jQuery after" );
824 });
825
826 test("insertAfter(String|Element|Array&lt;Element&gt;|jQuery)", function() {
827         expect(4);
828         var expected = 'This is a normal link: Yahoobuga';
829         $('<b>buga</b>').insertAfter('#yahoo');
830         ok( expected == $('#en').text(), 'Insert String after' );
831         
832         reset();
833         expected = "This is a normal link: YahooTry them out:";
834         $(document.getElementById('first')).insertAfter('#yahoo');
835         ok( expected == $('#en').text(), "Insert element after" );
836
837         reset();
838         expected = "This is a normal link: YahooTry them out:diveintomark";
839         $([document.getElementById('mark'), document.getElementById('first')]).insertAfter('#yahoo');
840         ok( expected == $('#en').text(), "Insert array of elements after" );
841         
842         reset();
843         expected = "This is a normal link: YahooTry them out:diveintomark";
844         $("#mark, #first").insertAfter('#yahoo');
845         ok( expected == $('#en').text(), "Insert jQuery after" );
846 });
847
848 test("replaceWith(String|Element|Array&lt;Element&gt;|jQuery)", function() {
849         expect(10);
850         $('#yahoo').replaceWith('<b id="replace">buga</b>');
851         ok( $("#replace")[0], 'Replace element with string' );
852         ok( !$("#yahoo")[0], 'Verify that original element is gone, after string' );
853         
854         reset();
855         $('#yahoo').replaceWith(document.getElementById('first'));
856         ok( $("#first")[0], 'Replace element with element' );
857         ok( !$("#yahoo")[0], 'Verify that original element is gone, after element' );
858
859         reset();
860         $('#yahoo').replaceWith([document.getElementById('first'), document.getElementById('mark')]);
861         ok( $("#first")[0], 'Replace element with array of elements' );
862         ok( $("#mark")[0], 'Replace element with array of elements' );
863         ok( !$("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
864         
865         reset();
866         $('#yahoo').replaceWith($("#first, #mark"));
867         ok( $("#first")[0], 'Replace element with set of elements' );
868         ok( $("#mark")[0], 'Replace element with set of elements' );
869         ok( !$("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
870 });
871
872 test("replaceAll(String|Element|Array&lt;Element&gt;|jQuery)", function() {
873         expect(10);
874         $('<b id="replace">buga</b>').replaceAll("#yahoo");
875         ok( $("#replace")[0], 'Replace element with string' );
876         ok( !$("#yahoo")[0], 'Verify that original element is gone, after string' );
877         
878         reset();
879         $(document.getElementById('first')).replaceAll("#yahoo");
880         ok( $("#first")[0], 'Replace element with element' );
881         ok( !$("#yahoo")[0], 'Verify that original element is gone, after element' );
882
883         reset();
884         $([document.getElementById('first'), document.getElementById('mark')]).replaceAll("#yahoo");
885         ok( $("#first")[0], 'Replace element with array of elements' );
886         ok( $("#mark")[0], 'Replace element with array of elements' );
887         ok( !$("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
888         
889         reset();
890         $("#first, #mark").replaceAll("#yahoo");
891         ok( $("#first")[0], 'Replace element with set of elements' );
892         ok( $("#mark")[0], 'Replace element with set of elements' );
893         ok( !$("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
894 });
895
896 test("end()", function() {
897         expect(3);
898         ok( 'Yahoo' == $('#yahoo').parent().end().text(), 'Check for end' );
899         ok( $('#yahoo').end(), 'Check for end with nothing to end' );
900         
901         var x = $('#yahoo');
902         x.parent();
903         ok( 'Yahoo' == $('#yahoo').text(), 'Check for non-destructive behaviour' );
904 });
905
906 test("find(String)", function() {
907         expect(2);
908         ok( 'Yahoo' == $('#foo').find('.blogTest').text(), 'Check for find' );
909
910         // using contents will get comments regular, text, and comment nodes
911         var j = $("#nonnodes").contents();
912         equals( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
913 });
914
915 test("clone()", function() {
916         expect(6);
917         ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' );
918         var clone = $('#yahoo').clone();
919         ok( 'Try them out:Yahoo' == $('#first').append(clone).text(), 'Check for clone' );
920         ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Reassert text for #en' );
921         // using contents will get comments regular, text, and comment nodes
922         var cl = $("#nonnodes").contents().clone();
923         ok( cl.length >= 2, "Check node,textnode,comment clone works (some browsers delete comments on clone)" );
924
925         stop();
926         $.get("data/dashboard.xml", function (xml) {
927                 var root = $(xml.documentElement).clone();
928                 $("tab:first", xml).text("origval");
929                 $("tab:first", root).text("cloneval");
930                 equals($("tab:first", xml).text(), "origval", "Check original XML node was correctly set");
931                 equals($("tab:first", root).text(), "cloneval", "Check cloned XML node was correctly set");
932                 start();
933         });
934 });
935
936 test("is(String)", function() {
937         expect(26);
938         ok( $('#form').is('form'), 'Check for element: A form must be a form' );
939         ok( !$('#form').is('div'), 'Check for element: A form is not a div' );
940         ok( $('#mark').is('.blog'), 'Check for class: Expected class "blog"' );
941         ok( !$('#mark').is('.link'), 'Check for class: Did not expect class "link"' );
942         ok( $('#simon').is('.blog.link'), 'Check for multiple classes: Expected classes "blog" and "link"' );
943         ok( !$('#simon').is('.blogTest'), 'Check for multiple classes: Expected classes "blog" and "link", but not "blogTest"' );
944         ok( $('#en').is('[lang="en"]'), 'Check for attribute: Expected attribute lang to be "en"' );
945         ok( !$('#en').is('[lang="de"]'), 'Check for attribute: Expected attribute lang to be "en", not "de"' );
946         ok( $('#text1').is('[type="text"]'), 'Check for attribute: Expected attribute type to be "text"' );
947         ok( !$('#text1').is('[type="radio"]'), 'Check for attribute: Expected attribute type to be "text", not "radio"' );
948         ok( $('#text2').is(':disabled'), 'Check for pseudoclass: Expected to be disabled' );
949         ok( !$('#text1').is(':disabled'), 'Check for pseudoclass: Expected not disabled' );
950         ok( $('#radio2').is(':checked'), 'Check for pseudoclass: Expected to be checked' );
951         ok( !$('#radio1').is(':checked'), 'Check for pseudoclass: Expected not checked' );
952         ok( $('#foo').is(':has(p)'), 'Check for child: Expected a child "p" element' );
953         ok( !$('#foo').is(':has(ul)'), 'Check for child: Did not expect "ul" element' );
954         ok( $('#foo').is(':has(p):has(a):has(code)'), 'Check for childs: Expected "p", "a" and "code" child elements' );
955         ok( !$('#foo').is(':has(p):has(a):has(code):has(ol)'), 'Check for childs: Expected "p", "a" and "code" child elements, but no "ol"' );
956         ok( !$('#foo').is(0), 'Expected false for an invalid expression - 0' );
957         ok( !$('#foo').is(null), 'Expected false for an invalid expression - null' );
958         ok( !$('#foo').is(''), 'Expected false for an invalid expression - ""' );
959         ok( !$('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );
960         
961         // test is() with comma-seperated expressions
962         ok( $('#en').is('[lang="en"],[lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
963         ok( $('#en').is('[lang="de"],[lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
964         ok( $('#en').is('[lang="en"] , [lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
965         ok( $('#en').is('[lang="de"] , [lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
966 });
967
968 test("$.extend(Object, Object)", function() {
969         expect(17);
970
971         var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
972                 options = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
973                 optionsCopy = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
974                 merged = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "x", xxx: "newstring" },
975                 deep1 = { foo: { bar: true } },
976                 deep1copy = { foo: { bar: true } },
977                 deep2 = { foo: { baz: true }, foo2: document },
978                 deep2copy = { foo: { baz: true }, foo2: document },
979                 deepmerged = { foo: { bar: true, baz: true }, foo2: document };
980
981         jQuery.extend(settings, options);
982         isObj( settings, merged, "Check if extended: settings must be extended" );
983         isObj( options, optionsCopy, "Check if not modified: options must not be modified" );
984
985         jQuery.extend(settings, null, options);
986         isObj( settings, merged, "Check if extended: settings must be extended" );
987         isObj( options, optionsCopy, "Check if not modified: options must not be modified" );
988
989         jQuery.extend(true, deep1, deep2);
990         isObj( deep1.foo, deepmerged.foo, "Check if foo: settings must be extended" );
991         isObj( deep2.foo, deep2copy.foo, "Check if not deep2: options must not be modified" );
992         equals( deep1.foo2, document, "Make sure that a deep clone was not attempted on the document" );
993
994         var target = {};
995         var recursive = { foo:target, bar:5 };
996         jQuery.extend(true, target, recursive);
997         isObj( target, { bar:5 }, "Check to make sure a recursive obj doesn't go never-ending loop by not copying it over" );
998
999         var ret = jQuery.extend(true, { foo: [] }, { foo: [0] } ); // 1907
1000         ok( ret.foo.length == 1, "Check to make sure a value with coersion 'false' copies over when necessary to fix #1907" );
1001
1002         var ret = jQuery.extend(true, { foo: "1,2,3" }, { foo: [1, 2, 3] } );
1003         ok( typeof ret.foo != "string", "Check to make sure values equal with coersion (but not actually equal) overwrite correctly" );
1004
1005         var ret = jQuery.extend(true, { foo:"bar" }, { foo:null } );
1006         ok( typeof ret.foo !== 'undefined', "Make sure a null value doesn't crash with deep extend, for #1908" );
1007
1008         var obj = { foo:null };
1009         jQuery.extend(true, obj, { foo:"notnull" } );
1010         equals( obj.foo, "notnull", "Make sure a null value can be overwritten" );
1011
1012         function func() {}
1013         jQuery.extend(func, { key: "value" } );
1014         equals( func.key, "value", "Verify a function can be extended" );
1015
1016         var defaults = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
1017                 defaultsCopy = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
1018                 options1 = { xnumber2: 1, xstring2: "x" },
1019                 options1Copy = { xnumber2: 1, xstring2: "x" },
1020                 options2 = { xstring2: "xx", xxx: "newstringx" },
1021                 options2Copy = { xstring2: "xx", xxx: "newstringx" },
1022                 merged2 = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "xx", xxx: "newstringx" };
1023
1024         var settings = jQuery.extend({}, defaults, options1, options2);
1025         isObj( settings, merged2, "Check if extended: settings must be extended" );
1026         isObj( defaults, defaultsCopy, "Check if not modified: options1 must not be modified" );
1027         isObj( options1, options1Copy, "Check if not modified: options1 must not be modified" );
1028         isObj( options2, options2Copy, "Check if not modified: options2 must not be modified" );
1029 });
1030
1031 test("val()", function() {
1032         expect(3);
1033         ok( $("#text1").val() == "Test", "Check for value of input element" );
1034         ok( !$("#text1").val() == "", "Check for value of input element" );
1035         // ticket #1714 this caused a JS error in IE
1036         ok( $("#first").val() == "", "Check a paragraph element to see if it has a value" );
1037 });
1038
1039 test("val(String)", function() {
1040         expect(4);
1041         document.getElementById('text1').value = "bla";
1042         ok( $("#text1").val() == "bla", "Check for modified value of input element" );
1043         $("#text1").val('test');
1044         ok ( document.getElementById('text1').value == "test", "Check for modified (via val(String)) value of input element" );
1045         
1046         $("#select1").val("3");
1047         ok( $("#select1").val() == "3", "Check for modified (via val(String)) value of select element" );
1048
1049         // using contents will get comments regular, text, and comment nodes
1050         var j = $("#nonnodes").contents();
1051         j.val("asdf");
1052         equals( j.val(), "asdf", "Check node,textnode,comment with val()" );
1053         j.removeAttr("value");
1054 });
1055
1056 var scriptorder = 0;
1057
1058 test("html(String)", function() {
1059         expect(11);
1060         var div = $("#main > div");
1061         div.html("<b>test</b>");
1062         var pass = true;
1063         for ( var i = 0; i < div.size(); i++ ) {
1064                 if ( div.get(i).childNodes.length != 1 ) pass = false;
1065         }
1066         ok( pass, "Set HTML" );
1067
1068         reset();
1069         // using contents will get comments regular, text, and comment nodes
1070         var j = $("#nonnodes").contents();
1071         j.html("<b>bold</b>");
1072         equals( j.html().toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );
1073
1074         $("#main").html("<select/>");
1075         $("#main select").html("<option>O1</option><option selected='selected'>O2</option><option>O3</option>");
1076         equals( $("#main select").val(), "O2", "Selected option correct" );
1077
1078         stop();
1079
1080         $("#main").html('<script type="text/javascript">ok( true, "$().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script>');
1081
1082         $("#main").html('foo <form><script type="text/javascript">ok( true, "$().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script></form>');
1083
1084         // 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
1085         $("#main").html("<script>ok(scriptorder++ == 0, 'Script is executed in order');ok($('#scriptorder').length == 1,'Execute after html (even though appears before)')<\/script><span id='scriptorder'><script>ok(scriptorder++ == 1, 'Script (nested) is executed in order');ok($('#scriptorder').length == 1,'Execute after html')<\/script></span><script>ok(scriptorder++ == 2, 'Script (unnested) is executed in order');ok($('#scriptorder').length == 1,'Execute after html')<\/script>");
1086
1087         setTimeout( start, 100 );
1088 });
1089
1090 test("filter()", function() {
1091         expect(6);
1092         isSet( $("#form input").filter(":checked").get(), q("radio2", "check1"), "filter(String)" );
1093         isSet( $("p").filter("#ap, #sndp").get(), q("ap", "sndp"), "filter('String, String')" );
1094         isSet( $("p").filter("#ap,#sndp").get(), q("ap", "sndp"), "filter('String,String')" );
1095         isSet( $("p").filter(function() { return !$("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );
1096
1097         // using contents will get comments regular, text, and comment nodes
1098         var j = $("#nonnodes").contents();
1099         equals( j.filter("span").length, 1, "Check node,textnode,comment to filter the one span" );
1100         equals( j.filter("[name]").length, 0, "Check node,textnode,comment to filter the one span" );
1101 });
1102
1103 test("not()", function() {
1104         expect(8);
1105         ok( $("#main > p#ap > a").not("#google").length == 2, "not('selector')" );
1106         ok( $("#main > p#ap > a").not(document.getElementById("google")).length == 2, "not(DOMElement)" );
1107         isSet( $("p").not(".result").get(), q("firstp", "ap", "sndp", "en", "sap", "first"), "not('.class')" );
1108         isSet( $("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );
1109         isSet( $("p").not($("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );
1110         ok( $("p").not(document.getElementsByTagName("p")).length == 0, "not(Array-like DOM collection)" );
1111         isSet( $("#form option").not("option.emptyopt:contains('Nothing'),[selected],[value='1']").get(), q("option1c", "option1d", "option2c", "option3d" ), "not('complex selector')");
1112         
1113         var selects = $("#form select");
1114         isSet( selects.not( selects[1] ), q("select1", "select3"), "filter out DOM element");
1115 });
1116
1117 test("andSelf()", function() {
1118         expect(4);
1119         isSet( $("#en").siblings().andSelf().get(), q("sndp", "sap","en"), "Check for siblings and self" );
1120         isSet( $("#foo").children().andSelf().get(), q("sndp", "en", "sap", "foo"), "Check for children and self" );
1121         isSet( $("#en, #sndp").parent().andSelf().get(), q("foo","en","sndp"), "Check for parent and self" );
1122         isSet( $("#groups").parents("p, div").andSelf().get(), q("ap", "main", "groups"), "Check for parents and self" );
1123 });
1124
1125 test("siblings([String])", function() {
1126         expect(5);
1127         isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
1128         isSet( $("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" ); 
1129         isSet( $("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
1130         isSet( $("#foo").siblings("form, b").get(), q("form", "lengthtest", "testForm", "floatTest"), "Check for multiple filters" );
1131         isSet( $("#en, #sndp").siblings().get(), q("sndp", "sap", "en"), "Check for unique results from siblings" );
1132 });
1133
1134 test("children([String])", function() {
1135         expect(3);
1136         isSet( $("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" );
1137         isSet( $("#foo").children(":has(code)").get(), q("sndp", "sap"), "Check for filtered children" );
1138         isSet( $("#foo").children("#en, #sap").get(), q("en", "sap"), "Check for multiple filters" );
1139 });
1140
1141 test("parent([String])", function() {
1142         expect(5);
1143         ok( $("#groups").parent()[0].id == "ap", "Simple parent check" );
1144         ok( $("#groups").parent("p")[0].id == "ap", "Filtered parent check" );
1145         ok( $("#groups").parent("div").length == 0, "Filtered parent check, no match" );
1146         ok( $("#groups").parent("div, p")[0].id == "ap", "Check for multiple filters" );
1147         isSet( $("#en, #sndp").parent().get(), q("foo"), "Check for unique results from parent" );
1148 });
1149         
1150 test("parents([String])", function() {
1151         expect(5);
1152         ok( $("#groups").parents()[0].id == "ap", "Simple parents check" );
1153         ok( $("#groups").parents("p")[0].id == "ap", "Filtered parents check" );
1154         ok( $("#groups").parents("div")[0].id == "main", "Filtered parents check2" );
1155         isSet( $("#groups").parents("p, div").get(), q("ap", "main"), "Check for multiple filters" );
1156         isSet( $("#en, #sndp").parents().get(), q("foo", "main", "dl", "body", "html"), "Check for unique results from parents" );
1157 });
1158
1159 test("next([String])", function() {
1160         expect(4);
1161         ok( $("#ap").next()[0].id == "foo", "Simple next check" );
1162         ok( $("#ap").next("div")[0].id == "foo", "Filtered next check" );
1163         ok( $("#ap").next("p").length == 0, "Filtered next check, no match" );
1164         ok( $("#ap").next("div, p")[0].id == "foo", "Multiple filters" );
1165 });
1166         
1167 test("prev([String])", function() {
1168         expect(4);
1169         ok( $("#foo").prev()[0].id == "ap", "Simple prev check" );
1170         ok( $("#foo").prev("p")[0].id == "ap", "Filtered prev check" );
1171         ok( $("#foo").prev("div").length == 0, "Filtered prev check, no match" );
1172         ok( $("#foo").prev("p, div")[0].id == "ap", "Multiple filters" );
1173 });
1174
1175 test("show()", function() {
1176         expect(15);
1177         var pass = true, div = $("div");
1178         div.show().each(function(){
1179                 if ( this.style.display == "none" ) pass = false;
1180         });
1181         ok( pass, "Show" );
1182         
1183         $("#main").append('<div id="show-tests"><div><p><a href="#"></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div>');
1184         var test = {
1185                 "div"      : "block",
1186                 "p"        : "block",
1187                 "a"        : "inline",
1188                 "code"     : "inline",
1189                 "pre"      : "block",
1190                 "span"     : "inline",
1191                 "table"    : $.browser.msie ? "block" : "table",
1192                 "thead"    : $.browser.msie ? "block" : "table-header-group",
1193                 "tbody"    : $.browser.msie ? "block" : "table-row-group",
1194                 "tr"       : $.browser.msie ? "block" : "table-row",
1195                 "th"       : $.browser.msie ? "block" : "table-cell",
1196                 "td"       : $.browser.msie ? "block" : "table-cell",
1197                 "ul"       : "block",
1198                 "li"       : $.browser.msie ? "block" : "list-item"
1199         };
1200         
1201         $.each(test, function(selector, expected) {
1202                 var elem = $(selector, "#show-tests").show();
1203                 equals( elem.css("display"), expected, "Show using correct display type for " + selector );
1204         });
1205 });
1206
1207 test("addClass(String)", function() {
1208         expect(2);
1209         var div = $("div");
1210         div.addClass("test");
1211         var pass = true;
1212         for ( var i = 0; i < div.size(); i++ ) {
1213          if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
1214         }
1215         ok( pass, "Add Class" );
1216
1217         // using contents will get regular, text, and comment nodes
1218         var j = $("#nonnodes").contents();
1219         j.addClass("asdf");
1220         ok( j.hasClass("asdf"), "Check node,textnode,comment for addClass" );
1221 });
1222
1223 test("removeClass(String) - simple", function() {
1224         expect(4);
1225         var div = $("div").addClass("test").removeClass("test"),
1226                 pass = true;
1227         for ( var i = 0; i < div.size(); i++ ) {
1228                 if ( div.get(i).className.indexOf("test") != -1 ) pass = false;
1229         }
1230         ok( pass, "Remove Class" );
1231         
1232         reset();
1233         var div = $("div").addClass("test").addClass("foo").addClass("bar");
1234         div.removeClass("test").removeClass("bar").removeClass("foo");
1235         var pass = true;
1236         for ( var i = 0; i < div.size(); i++ ) {
1237          if ( div.get(i).className.match(/test|bar|foo/) ) pass = false;
1238         }
1239         ok( pass, "Remove multiple classes" );
1240         
1241         reset();
1242         var div = $("div:eq(0)").addClass("test").removeClass("");
1243         ok( div.is('.test'), "Empty string passed to removeClass" );
1244         
1245         // using contents will get regular, text, and comment nodes
1246         var j = $("#nonnodes").contents();
1247         j.removeClass("asdf");
1248         ok( !j.hasClass("asdf"), "Check node,textnode,comment for removeClass" );
1249 });
1250
1251 test("toggleClass(String)", function() {
1252         expect(3);
1253         var e = $("#firstp");
1254         ok( !e.is(".test"), "Assert class not present" );
1255         e.toggleClass("test");
1256         ok( e.is(".test"), "Assert class present" ); 
1257         e.toggleClass("test");
1258         ok( !e.is(".test"), "Assert class not present" );
1259 });
1260
1261 test("removeAttr(String", function() {
1262         expect(1);
1263         ok( $('#mark').removeAttr("class")[0].className == "", "remove class" );
1264 });
1265
1266 test("text(String)", function() {
1267         expect(4);
1268         ok( $("#foo").text("<div><b>Hello</b> cruel world!</div>")[0].innerHTML == "&lt;div&gt;&lt;b&gt;Hello&lt;/b&gt; cruel world!&lt;/div&gt;", "Check escaped text" );
1269
1270         // using contents will get comments regular, text, and comment nodes
1271         var j = $("#nonnodes").contents();
1272         j.text("hi!");
1273         equals( $(j[0]).text(), "hi!", "Check node,textnode,comment with text()" );
1274         equals( j[1].nodeValue, " there ", "Check node,textnode,comment with text()" );
1275         equals( j[2].nodeType, 8, "Check node,textnode,comment with text()" );
1276 });
1277
1278 test("$.each(Object,Function)", function() {
1279         expect(8);
1280         $.each( [0,1,2], function(i, n){
1281                 ok( i == n, "Check array iteration" );
1282         });
1283         
1284         $.each( [5,6,7], function(i, n){
1285                 ok( i == n - 5, "Check array iteration" );
1286         });
1287          
1288         $.each( { name: "name", lang: "lang" }, function(i, n){
1289                 ok( i == n, "Check object iteration" );
1290         });
1291 });
1292
1293 test("$.prop", function() {
1294         expect(2);
1295         var handle = function() { return this.id };
1296         ok( $.prop($("#ap")[0], handle) == "ap", "Check with Function argument" );
1297         ok( $.prop($("#ap")[0], "value") == "value", "Check with value argument" );
1298 });
1299
1300 test("$.className", function() {
1301         expect(6);
1302         var x = $("<p>Hi</p>")[0];
1303         var c = $.className;
1304         c.add(x, "hi");
1305         ok( x.className == "hi", "Check single added class" );
1306         c.add(x, "foo bar");
1307         ok( x.className == "hi foo bar", "Check more added classes" );
1308         c.remove(x);
1309         ok( x.className == "", "Remove all classes" );
1310         c.add(x, "hi foo bar");
1311         c.remove(x, "foo");
1312         ok( x.className == "hi bar", "Check removal of one class" );
1313         ok( c.has(x, "hi"), "Check has1" );
1314         ok( c.has(x, "bar"), "Check has2" );
1315 });
1316
1317 test("$.data", function() {
1318         expect(3);
1319         var div = $("#foo")[0];
1320         ok( jQuery.data(div, "test") == undefined, "Check for no data exists" );
1321         jQuery.data(div, "test", "success");
1322         ok( jQuery.data(div, "test") == "success", "Check for added data" );
1323         jQuery.data(div, "test", "overwritten");
1324         ok( jQuery.data(div, "test") == "overwritten", "Check for overwritten data" );
1325 });
1326
1327 test("$.removeData", function() {
1328         expect(1);
1329         var div = $("#foo")[0];
1330         jQuery.data(div, "test", "testing");
1331         jQuery.removeData(div, "test");
1332         ok( jQuery.data(div, "test") == undefined, "Check removal of data" );
1333 });
1334
1335 test("remove()", function() {
1336         expect(6);
1337         $("#ap").children().remove();
1338         ok( $("#ap").text().length > 10, "Check text is not removed" );
1339         ok( $("#ap").children().length == 0, "Check remove" );
1340         
1341         reset();
1342         $("#ap").children().remove("a");
1343         ok( $("#ap").text().length > 10, "Check text is not removed" );
1344         ok( $("#ap").children().length == 1, "Check filtered remove" );
1345
1346         // using contents will get comments regular, text, and comment nodes
1347         equals( $("#nonnodes").contents().length, 3, "Check node,textnode,comment remove works" );
1348         $("#nonnodes").contents().remove();
1349         equals( $("#nonnodes").contents().length, 0, "Check node,textnode,comment remove works" );
1350 });
1351
1352 test("empty()", function() {
1353         expect(3);
1354         ok( $("#ap").children().empty().text().length == 0, "Check text is removed" );
1355         ok( $("#ap").children().length == 4, "Check elements are not removed" );
1356
1357         // using contents will get comments regular, text, and comment nodes
1358         var j = $("#nonnodes").contents();
1359         j.empty();
1360         equals( j.html(), "", "Check node,textnode,comment empty works" );
1361 });
1362
1363 test("slice()", function() {
1364         expect(5);
1365         isSet( $("#ap a").slice(1,2), q("groups"), "slice(1,2)" );
1366         isSet( $("#ap a").slice(1), q("groups", "anchor1", "mark"), "slice(1)" );
1367         isSet( $("#ap a").slice(0,3), q("google", "groups", "anchor1"), "slice(0,3)" );
1368         isSet( $("#ap a").slice(-1), q("mark"), "slice(-1)" );
1369
1370         isSet( $("#ap a").eq(1), q("groups"), "eq(1)" );
1371 });
1372
1373 test("map()", function() {
1374         expect(2);
1375
1376         isSet(
1377                 $("#ap").map(function(){
1378                         return $(this).find("a").get();
1379                 }),
1380                 q("google", "groups", "anchor1", "mark"),
1381                 "Array Map"
1382         );
1383
1384         isSet(
1385                 $("#ap > a").map(function(){
1386                         return this.parentNode;
1387                 }),
1388                 q("ap","ap","ap"),
1389                 "Single Map"
1390         );
1391 });
1392
1393 test("contents()", function() {
1394         expect(12);
1395         equals( $("#ap").contents().length, 9, "Check element contents" );
1396         ok( $("#iframe").contents()[0], "Check existance of IFrame document" );
1397         var ibody = $("#loadediframe").contents()[0].body;
1398         ok( ibody, "Check existance of IFrame body" );
1399
1400         equals( $("span", ibody).text(), "span text", "Find span in IFrame and check its text" );
1401
1402         $(ibody).append("<div>init text</div>");
1403         equals( $("div", ibody).length, 2, "Check the original div and the new div are in IFrame" );
1404
1405         equals( $("div:last", ibody).text(), "init text", "Add text to div in IFrame" );
1406
1407         $("div:last", ibody).text("div text");
1408         equals( $("div:last", ibody).text(), "div text", "Add text to div in IFrame" );
1409
1410         $("div:last", ibody).remove();
1411         equals( $("div", ibody).length, 1, "Delete the div and check only one div left in IFrame" );
1412
1413         equals( $("div", ibody).text(), "span text", "Make sure the correct div is still left after deletion in IFrame" );
1414
1415         $("<table/>", ibody).append("<tr><td>cell</td></tr>").appendTo(ibody);
1416         $("table", ibody).remove();
1417         equals( $("div", ibody).length, 1, "Check for JS error on add and delete of a table in IFrame" );
1418
1419         // using contents will get comments regular, text, and comment nodes
1420         var c = $("#nonnodes").contents().contents();
1421         equals( c.length, 1, "Check node,textnode,comment contents is just one" );
1422         equals( c[0].nodeValue, "hi", "Check node,textnode,comment contents is just the one from span" );
1423 });