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