Make .attr(name, null) equivalent to removeAttr(name). (Was roughly this before ...
[jquery.git] / test / unit / attributes.js
1 module("attributes");
2
3 var bareObj = function(value) { return value; };
4 var functionReturningObj = function(value) { return (function() { return value; }); };
5
6 test("attr(String)", function() {
7         expect(30);
8
9         // This one sometimes fails randomly ?!
10         equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' );
11         
12         equals( jQuery('#text1').attr('value', "Test2").attr('defaultValue'), "Test", 'Check for defaultValue attribute' );
13         equals( jQuery('#text1').attr('type'), "text", 'Check for type attribute' );
14         equals( jQuery('#radio1').attr('type'), "radio", 'Check for type attribute' );
15         equals( jQuery('#check1').attr('type'), "checkbox", 'Check for type attribute' );
16         equals( jQuery('#simon1').attr('rel'), "bookmark", 'Check for rel attribute' );
17         equals( jQuery('#google').attr('title'), "Google!", 'Check for title attribute' );
18         equals( jQuery('#mark').attr('hreflang'), "en", 'Check for hreflang attribute' );
19         equals( jQuery('#en').attr('lang'), "en", 'Check for lang attribute' );
20         equals( jQuery('#simon').attr('class'), "blog link", 'Check for class attribute' );
21         equals( jQuery('#name').attr('name'), "name", 'Check for name attribute' );
22         equals( jQuery('#text1').attr('name'), "action", 'Check for name attribute' );
23         ok( jQuery('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
24         // Temporarily disabled. See: #4299
25         // ok( jQuery('#form').attr('action','newformaction').attr('action').indexOf("newformaction") >= 0, 'Check that action attribute was changed' );
26         equals( jQuery('#text1').attr('maxlength'), '30', 'Check for maxlength attribute' );
27         equals( jQuery('#text1').attr('maxLength'), '30', 'Check for maxLength attribute' );
28         equals( jQuery('#area1').attr('maxLength'), '30', 'Check for maxLength attribute' );
29         equals( jQuery('#select2').attr('selectedIndex'), 3, 'Check for selectedIndex attribute' );
30         equals( jQuery('#foo').attr('nodeName').toUpperCase(), 'DIV', 'Check for nodeName attribute' );
31         equals( jQuery('#foo').attr('tagName').toUpperCase(), 'DIV', 'Check for tagName attribute' );
32
33         // using innerHTML in IE causes href attribute to be serialized to the full path
34         jQuery('<a/>').attr({ 'id': 'tAnchor5', 'href': '#5' }).appendTo('#main');
35         equals( jQuery('#tAnchor5').attr('href'), "#5", 'Check for non-absolute href (an anchor)' );
36
37         equals( jQuery("<option/>").attr("selected"), false, "Check selected attribute on disconnected element." );
38
39
40         // Related to [5574] and [5683]
41         var body = document.body, $body = jQuery(body);
42
43         ok( $body.attr('foo') === undefined, 'Make sure that a non existent attribute returns undefined' );
44         ok( $body.attr('nextSibling') === null, 'Make sure a null expando returns null' );
45
46         body.setAttribute('foo', 'baz');
47         equals( $body.attr('foo'), 'baz', 'Make sure the dom attribute is retrieved when no expando is found' );
48
49         body.foo = 'bar';
50         equals( $body.attr('foo'), 'bar', 'Make sure the expando is preferred over the dom attribute' );
51
52         $body.attr('foo','cool');
53         equals( $body.attr('foo'), 'cool', 'Make sure that setting works well when both expando and dom attribute are available' );
54
55         body.foo = undefined;
56         ok( $body.attr('foo') === undefined, 'Make sure the expando is preferred over the dom attribute, even if undefined' );
57
58         body.removeAttribute('foo'); // Cleanup
59
60         var select = document.createElement("select"), optgroup = document.createElement("optgroup"), option = document.createElement("option");
61         optgroup.appendChild( option );
62         select.appendChild( optgroup );
63
64         equals( jQuery(option).attr("selected"), true, "Make sure that a single option is selected, even when in an optgroup." );
65
66         ok( jQuery("<div/>").attr("doesntexist") === undefined, "Make sure undefined is returned when no attribute is found." );
67         ok( jQuery().attr("doesntexist") === undefined, "Make sure undefined is returned when no element is there." );
68 });
69
70 if ( !isLocal ) {
71         test("attr(String) in XML Files", function() {
72                 expect(2);
73                 stop();
74                 jQuery.get("data/dashboard.xml", function(xml) {
75                         equals( jQuery("locations", xml).attr("class"), "foo", "Check class attribute in XML document" );
76                         equals( jQuery("location", xml).attr("for"), "bar", "Check for attribute in XML document" );
77                         start();
78                 });
79         });
80 }
81
82 test("attr(String, Function)", function() {
83         expect(2);
84         equals( jQuery('#text1').attr('value', function() { return this.id ;})[0].value, "text1", "Set value from id" );
85         equals( jQuery('#text1').attr('title', function(i) { return i }).attr('title'), "0", "Set value with an index");
86 });
87
88 test("attr(Hash)", function() {
89         expect(3);
90         var pass = true;
91         jQuery("div").attr({foo: 'baz', zoo: 'ping'}).each(function(){
92                 if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
93         });
94         ok( pass, "Set Multiple Attributes" );
95                          equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" );
96                          equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2");
97
98 });
99
100 test("attr(String, Object)", function() {
101         expect(24);
102
103         var div = jQuery("div").attr("foo", "bar"),
104                 fail = false;
105
106         for ( var i = 0; i < div.size(); i++ ) {
107                 if ( div.get(i).getAttribute('foo') != "bar" ){
108                         fail = i;
109                         break;
110                 }
111         }
112
113         equals( fail, false, "Set Attribute, the #"+fail+" element didn't get the attribute 'foo'" );
114
115         // Fails on IE since recent changes to .attr()
116         // ok( jQuery("#foo").attr({"width": null}), "Try to set an attribute to nothing" );
117
118         jQuery("#name").attr('name', 'something');
119         equals( jQuery("#name").attr('name'), 'something', 'Set name attribute' );
120         jQuery("#name").attr('name', null);
121         equals( jQuery("#name").attr('title'), '', 'Remove name attribute' );
122         jQuery("#check2").attr('checked', true);
123         equals( document.getElementById('check2').checked, true, 'Set checked attribute' );
124         jQuery("#check2").attr('checked', false);
125         equals( document.getElementById('check2').checked, false, 'Set checked attribute' );
126         jQuery("#text1").attr('readonly', true);
127         equals( document.getElementById('text1').readOnly, true, 'Set readonly attribute' );
128         jQuery("#text1").attr('readonly', false);
129         equals( document.getElementById('text1').readOnly, false, 'Set readonly attribute' );
130         jQuery("#name").attr('maxlength', '5');
131         equals( document.getElementById('name').maxLength, '5', 'Set maxlength attribute' );
132         jQuery("#name").attr('maxLength', '10');
133         equals( document.getElementById('name').maxLength, '10', 'Set maxlength attribute' );
134
135         var table = jQuery('#table').append("<tr><td>cell</td></tr><tr><td>cell</td><td>cell</td></tr><tr><td>cell</td><td>cell</td></tr>"),
136                 td = table.find('td:first');
137         td.attr("rowspan", "2");
138         equals( td[0].rowSpan, 2, "Check rowspan is correctly set" );
139         td.attr("colspan", "2");
140         equals( td[0].colSpan, 2, "Check colspan is correctly set" );
141         table.attr("cellspacing", "2");
142         equals( table[0].cellSpacing, 2, "Check cellspacing is correctly set" );
143
144         // for #1070
145         jQuery("#name").attr('someAttr', '0');
146         equals( jQuery("#name").attr('someAttr'), '0', 'Set attribute to a string of "0"' );
147         jQuery("#name").attr('someAttr', 0);
148         equals( jQuery("#name").attr('someAttr'), 0, 'Set attribute to the number 0' );
149         jQuery("#name").attr('someAttr', 1);
150         equals( jQuery("#name").attr('someAttr'), 1, 'Set attribute to the number 1' );
151
152         // using contents will get comments regular, text, and comment nodes
153         var j = jQuery("#nonnodes").contents();
154
155         j.attr("name", "attrvalue");
156         equals( j.attr("name"), "attrvalue", "Check node,textnode,comment for attr" );
157         j.removeAttr("name");
158
159         QUnit.reset();
160
161         var type = jQuery("#check2").attr('type');
162         var thrown = false;
163         try {
164                 jQuery("#check2").attr('type','hidden');
165         } catch(e) {
166                 thrown = true;
167         }
168         ok( thrown, "Exception thrown when trying to change type property" );
169         equals( type, jQuery("#check2").attr('type'), "Verify that you can't change the type of an input element" );
170
171         var check = document.createElement("input");
172         var thrown = true;
173         try {
174                 jQuery(check).attr('type','checkbox');
175         } catch(e) {
176                 thrown = false;
177         }
178         ok( thrown, "Exception thrown when trying to change type property" );
179         equals( "checkbox", jQuery(check).attr('type'), "Verify that you can change the type of an input element that isn't in the DOM" );
180
181         var check = jQuery("<input />");
182         var thrown = true;
183         try {
184                 check.attr('type','checkbox');
185         } catch(e) {
186                 thrown = false;
187         }
188         ok( thrown, "Exception thrown when trying to change type property" );
189         equals( "checkbox", check.attr('type'), "Verify that you can change the type of an input element that isn't in the DOM" );
190
191         var button = jQuery("#button");
192         var thrown = false;
193         try {
194                 button.attr('type','submit');
195         } catch(e) {
196                 thrown = true;
197         }
198         ok( thrown, "Exception thrown when trying to change type property" );
199         equals( "button", button.attr('type'), "Verify that you can't change the type of a button element" );
200 });
201
202 test("attr(jquery_method)", function(){
203         expect(7);
204         
205         var $elem = jQuery("<div />"),
206                 elem = $elem[0];
207         
208         // one at a time        
209         $elem.attr({'html': 'foo'}, true);
210         equals( elem.innerHTML, 'foo', 'attr(html)');
211         
212         $elem.attr({'text': 'bar'}, true);
213         equals( elem.innerHTML, 'bar', 'attr(text)');
214         
215         $elem.attr({'css': {color:'red'}}, true);
216         ok( /^(#ff0000|red)$/i.test(elem.style.color), 'attr(css)');
217         
218         $elem.attr({'height': 10}, true);
219         equals( elem.style.height, '10px', 'attr(height)');
220         
221         // Multiple attributes
222         
223         $elem.attr({
224                 width:10,
225                 css:{ paddingLeft:1, paddingRight:1 }
226         }, true);
227         
228         equals( elem.style.width, '10px', 'attr({...})');
229         equals( elem.style.paddingLeft, '1px', 'attr({...})');
230         equals( elem.style.paddingRight, '1px', 'attr({...})');
231 });
232
233 if ( !isLocal ) {
234         test("attr(String, Object) - Loaded via XML document", function() {
235                 expect(2);
236                 stop();
237                 jQuery.get('data/dashboard.xml', function(xml) {
238                         var titles = [];
239                         jQuery('tab', xml).each(function() {
240                                 titles.push(jQuery(this).attr('title'));
241                         });
242                         equals( titles[0], 'Location', 'attr() in XML context: Check first title' );
243                         equals( titles[1], 'Users', 'attr() in XML context: Check second title' );
244                         start();
245                 });
246         });
247 }
248
249 test("attr('tabindex')", function() {
250         expect(8);
251
252         // elements not natively tabbable
253         equals(jQuery('#listWithTabIndex').attr('tabindex'), 5, 'not natively tabbable, with tabindex set to 0');
254         equals(jQuery('#divWithNoTabIndex').attr('tabindex'), undefined, 'not natively tabbable, no tabindex set');
255
256         // anchor with href
257         equals(jQuery('#linkWithNoTabIndex').attr('tabindex'), 0, 'anchor with href, no tabindex set');
258         equals(jQuery('#linkWithTabIndex').attr('tabindex'), 2, 'anchor with href, tabindex set to 2');
259         equals(jQuery('#linkWithNegativeTabIndex').attr('tabindex'), -1, 'anchor with href, tabindex set to -1');
260
261         // anchor without href
262         equals(jQuery('#linkWithNoHrefWithNoTabIndex').attr('tabindex'), undefined, 'anchor without href, no tabindex set');
263         equals(jQuery('#linkWithNoHrefWithTabIndex').attr('tabindex'), 1, 'anchor without href, tabindex set to 2');
264         equals(jQuery('#linkWithNoHrefWithNegativeTabIndex').attr('tabindex'), -1, 'anchor without href, no tabindex set');
265 });
266
267 test("attr('tabindex', value)", function() {
268         expect(9);
269
270         var element = jQuery('#divWithNoTabIndex');
271         equals(element.attr('tabindex'), undefined, 'start with no tabindex');
272
273         // set a positive string
274         element.attr('tabindex', '1');
275         equals(element.attr('tabindex'), 1, 'set tabindex to 1 (string)');
276
277         // set a zero string
278         element.attr('tabindex', '0');
279         equals(element.attr('tabindex'), 0, 'set tabindex to 0 (string)');
280
281         // set a negative string
282         element.attr('tabindex', '-1');
283         equals(element.attr('tabindex'), -1, 'set tabindex to -1 (string)');
284
285         // set a positive number
286         element.attr('tabindex', 1);
287         equals(element.attr('tabindex'), 1, 'set tabindex to 1 (number)');
288
289         // set a zero number
290         element.attr('tabindex', 0);
291         equals(element.attr('tabindex'), 0, 'set tabindex to 0 (number)');
292
293         // set a negative number
294         element.attr('tabindex', -1);
295         equals(element.attr('tabindex'), -1, 'set tabindex to -1 (number)');
296
297         element = jQuery('#linkWithTabIndex');
298         equals(element.attr('tabindex'), 2, 'start with tabindex 2');
299
300         element.attr('tabindex', -1);
301         equals(element.attr('tabindex'), -1, 'set negative tabindex');
302 });
303
304 test("removeAttr(String)", function() {
305         expect(1);
306         equals( jQuery('#mark').removeAttr( "class" )[0].className, "", "remove class" );
307 });
308
309 test("val()", function() {
310         expect(20);
311
312         document.getElementById('text1').value = "bla";
313         equals( jQuery("#text1").val(), "bla", "Check for modified value of input element" );
314
315         QUnit.reset();
316
317         equals( jQuery("#text1").val(), "Test", "Check for value of input element" );
318         // ticket #1714 this caused a JS error in IE
319         equals( jQuery("#first").val(), "", "Check a paragraph element to see if it has a value" );
320         ok( jQuery([]).val() === undefined, "Check an empty jQuery object will return undefined from val" );
321
322         equals( jQuery('#select2').val(), '3', 'Call val() on a single="single" select' );
323
324         same( jQuery('#select3').val(), ['1', '2'], 'Call val() on a multiple="multiple" select' );
325
326         equals( jQuery('#option3c').val(), '2', 'Call val() on a option element with value' );
327
328         equals( jQuery('#option3a').val(), '', 'Call val() on a option element with empty value' );
329
330         equals( jQuery('#option3e').val(), 'no value', 'Call val() on a option element with no value attribute' );
331
332         equals( jQuery('#option3a').val(), '', 'Call val() on a option element with no value attribute' );
333
334         jQuery('#select3').val("");
335         same( jQuery('#select3').val(), [''], 'Call val() on a multiple="multiple" select' );
336
337         same( jQuery('#select4').val(), [], 'Call val() on multiple="multiple" select with all disabled options' );
338
339         jQuery('#select4 optgroup').add('#select4 > [disabled]').attr('disabled', false);
340         same( jQuery('#select4').val(), ['2', '3'], 'Call val() on multiple="multiple" select with some disabled options' );
341
342         jQuery('#select4').attr('disabled', true);
343         same( jQuery('#select4').val(), ['2', '3'], 'Call val() on disabled multiple="multiple" select' );
344
345         var checks = jQuery("<input type='checkbox' name='test' value='1'/><input type='checkbox' name='test' value='2'/><input type='checkbox' name='test' value=''/><input type='checkbox' name='test'/>").appendTo("#form");
346
347         same( checks.serialize(), "", "Get unchecked values." );
348
349         equals( checks.eq(3).val(), "on", "Make sure a value of 'on' is provided if none is specified." );
350
351         checks.val([ "2" ]);
352         same( checks.serialize(), "test=2", "Get a single checked value." );
353
354         checks.val([ "1", "" ]);
355         same( checks.serialize(), "test=1&test=", "Get multiple checked values." );
356
357         checks.val([ "", "2" ]);
358         same( checks.serialize(), "test=2&test=", "Get multiple checked values." );
359
360         checks.val([ "1", "on" ]);
361         same( checks.serialize(), "test=1&test=on", "Get multiple checked values." );
362
363         checks.remove();
364 });
365
366 var testVal = function(valueObj) {
367         expect(8);
368
369         jQuery("#text1").val(valueObj( 'test' ));
370         equals( document.getElementById('text1').value, "test", "Check for modified (via val(String)) value of input element" );
371
372         jQuery("#text1").val(valueObj( undefined ));
373         equals( document.getElementById('text1').value, "", "Check for modified (via val(undefined)) value of input element" );
374
375         jQuery("#text1").val(valueObj( 67 ));
376         equals( document.getElementById('text1').value, "67", "Check for modified (via val(Number)) value of input element" );
377
378         jQuery("#text1").val(valueObj( null ));
379         equals( document.getElementById('text1').value, "", "Check for modified (via val(null)) value of input element" );
380
381         jQuery("#select1").val(valueObj( "3" ));
382         equals( jQuery("#select1").val(), "3", "Check for modified (via val(String)) value of select element" );
383
384         jQuery("#select1").val(valueObj( 2 ));
385         equals( jQuery("#select1").val(), "2", "Check for modified (via val(Number)) value of select element" );
386
387         jQuery("#select1").append("<option value='4'>four</option>");
388         jQuery("#select1").val(valueObj( 4 ));
389         equals( jQuery("#select1").val(), "4", "Should be possible to set the val() to a newly created option" );
390
391         // using contents will get comments regular, text, and comment nodes
392         var j = jQuery("#nonnodes").contents();
393         j.val(valueObj( "asdf" ));
394         equals( j.val(), "asdf", "Check node,textnode,comment with val()" );
395         j.removeAttr("value");
396 }
397
398 test("val(String/Number)", function() {
399         testVal(bareObj);
400 });
401
402 test("val(Function)", function() {
403         testVal(functionReturningObj);
404 })
405
406 test("val(Function) with incoming value", function() {
407         expect(10);
408
409         var oldVal = jQuery("#text1").val();
410
411         jQuery("#text1").val(function(i, val) {
412                 equals( val, oldVal, "Make sure the incoming value is correct." );
413                 return "test";
414         });
415
416         equals( document.getElementById('text1').value, "test", "Check for modified (via val(String)) value of input element" );
417
418         oldVal = jQuery("#text1").val();
419
420         jQuery("#text1").val(function(i, val) {
421                 equals( val, oldVal, "Make sure the incoming value is correct." );
422                 return 67;
423         });
424
425         equals( document.getElementById('text1').value, "67", "Check for modified (via val(Number)) value of input element" );
426
427         oldVal = jQuery("#select1").val();
428
429         jQuery("#select1").val(function(i, val) {
430                 equals( val, oldVal, "Make sure the incoming value is correct." );
431                 return "3";
432         });
433
434         equals( jQuery("#select1").val(), "3", "Check for modified (via val(String)) value of select element" );
435
436         oldVal = jQuery("#select1").val();
437
438         jQuery("#select1").val(function(i, val) {
439                 equals( val, oldVal, "Make sure the incoming value is correct." );
440                 return 2;
441         });
442
443         equals( jQuery("#select1").val(), "2", "Check for modified (via val(Number)) value of select element" );
444
445         jQuery("#select1").append("<option value='4'>four</option>");
446
447         oldVal = jQuery("#select1").val();
448
449         jQuery("#select1").val(function(i, val) {
450                 equals( val, oldVal, "Make sure the incoming value is correct." );
451                 return 4;
452         });
453
454         equals( jQuery("#select1").val(), "4", "Should be possible to set the val() to a newly created option" );
455 });
456
457 var testAddClass = function(valueObj) {
458         expect(5);
459         var div = jQuery("div");
460         div.addClass( valueObj("test") );
461         var pass = true;
462         for ( var i = 0; i < div.size(); i++ ) {
463          if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
464         }
465         ok( pass, "Add Class" );
466
467         // using contents will get regular, text, and comment nodes
468         var j = jQuery("#nonnodes").contents();
469         j.addClass( valueObj("asdf") );
470         ok( j.hasClass("asdf"), "Check node,textnode,comment for addClass" );
471
472         div = jQuery("<div/>");
473
474         div.addClass( valueObj("test") );
475         equals( div.attr("class"), "test", "Make sure there's no extra whitespace." );
476
477         div.attr("class", " foo");
478         div.addClass( valueObj("test") );
479         equals( div.attr("class"), "foo test", "Make sure there's no extra whitespace." );
480
481         div.attr("class", "foo");
482         div.addClass( valueObj("bar baz") );
483         equals( div.attr("class"), "foo bar baz", "Make sure there isn't too much trimming." );
484 };
485
486 test("addClass(String)", function() {
487         testAddClass(bareObj);
488 });
489
490 test("addClass(Function)", function() {
491         testAddClass(functionReturningObj);
492 });
493
494 test("addClass(Function) with incoming value", function() {
495         expect(41);
496
497         var div = jQuery("div"), old = div.map(function(){
498                 return jQuery(this).attr("class");
499         });
500
501         div.addClass(function(i, val) {
502                 if ( this.id !== "_firebugConsole" ) {
503                         equals( val, old[i], "Make sure the incoming value is correct." );
504                         return "test";
505                 }
506         });
507
508         var pass = true;
509         for ( var i = 0; i < div.size(); i++ ) {
510          if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
511         }
512         ok( pass, "Add Class" );
513 });
514
515 var testRemoveClass = function(valueObj) {
516         expect(7);
517
518         var $divs = jQuery('div');
519
520         $divs.addClass("test").removeClass( valueObj("test") );
521
522         ok( !$divs.is('.test'), "Remove Class" );
523
524         QUnit.reset();
525         $divs = jQuery('div');
526
527         $divs.addClass("test").addClass("foo").addClass("bar");
528         $divs.removeClass( valueObj("test") ).removeClass( valueObj("bar") ).removeClass( valueObj("foo") );
529
530         ok( !$divs.is('.test,.bar,.foo'), "Remove multiple classes" );
531
532         QUnit.reset();
533         $divs = jQuery('div');
534
535         // Make sure that a null value doesn't cause problems
536         $divs.eq(0).addClass("test").removeClass( valueObj(null) );
537         ok( $divs.eq(0).is('.test'), "Null value passed to removeClass" );
538
539         $divs.eq(0).addClass("test").removeClass( valueObj("") );
540         ok( $divs.eq(0).is('.test'), "Empty string passed to removeClass" );
541
542         // using contents will get regular, text, and comment nodes
543         var j = jQuery("#nonnodes").contents();
544         j.removeClass( valueObj("asdf") );
545         ok( !j.hasClass("asdf"), "Check node,textnode,comment for removeClass" );
546
547         var div = document.createElement("div");
548         div.className = " test foo ";
549
550         jQuery(div).removeClass( valueObj("foo") );
551         equals( div.className, "test", "Make sure remaining className is trimmed." );
552
553         div.className = " test ";
554
555         jQuery(div).removeClass( valueObj("test") );
556         equals( div.className, "", "Make sure there is nothing left after everything is removed." );
557 };
558
559 test("removeClass(String) - simple", function() {
560         testRemoveClass(bareObj);
561 });
562
563 test("removeClass(Function) - simple", function() {
564         testRemoveClass(functionReturningObj);
565 });
566
567 test("removeClass(Function) with incoming value", function() {
568         expect(41);
569
570         var $divs = jQuery('div').addClass("test"), old = $divs.map(function(){
571                 return jQuery(this).attr("class");
572         });
573
574         $divs.removeClass(function(i, val) {
575                 if ( this.id !== "_firebugConsole" ) {
576                         equals( val, old[i], "Make sure the incoming value is correct." );
577                         return "test";
578                 }
579         });
580
581         ok( !$divs.is('.test'), "Remove Class" );
582
583         QUnit.reset();  
584 });
585
586 var testToggleClass = function(valueObj) {
587         expect(17);
588
589         var e = jQuery("#firstp");
590         ok( !e.is(".test"), "Assert class not present" );
591         e.toggleClass( valueObj("test") );
592         ok( e.is(".test"), "Assert class present" );
593         e.toggleClass( valueObj("test") );
594         ok( !e.is(".test"), "Assert class not present" );
595
596         // class name with a boolean
597         e.toggleClass( valueObj("test"), false );
598         ok( !e.is(".test"), "Assert class not present" );
599         e.toggleClass( valueObj("test"), true );
600         ok( e.is(".test"), "Assert class present" );
601         e.toggleClass( valueObj("test"), false );
602         ok( !e.is(".test"), "Assert class not present" );
603
604         // multiple class names
605         e.addClass("testA testB");
606         ok( (e.is(".testA.testB")), "Assert 2 different classes present" );
607         e.toggleClass( valueObj("testB testC") );
608         ok( (e.is(".testA.testC") && !e.is(".testB")), "Assert 1 class added, 1 class removed, and 1 class kept" );
609         e.toggleClass( valueObj("testA testC") );
610         ok( (!e.is(".testA") && !e.is(".testB") && !e.is(".testC")), "Assert no class present" );
611
612         // toggleClass storage
613         e.toggleClass(true);
614         ok( e.get(0).className === "", "Assert class is empty (data was empty)" );
615         e.addClass("testD testE");
616         ok( e.is(".testD.testE"), "Assert class present" );
617         e.toggleClass();
618         ok( !e.is(".testD.testE"), "Assert class not present" );
619         ok( e.data('__className__') === 'testD testE', "Assert data was stored" );
620         e.toggleClass();
621         ok( e.is(".testD.testE"), "Assert class present (restored from data)" );
622         e.toggleClass(false);
623         ok( !e.is(".testD.testE"), "Assert class not present" );
624         e.toggleClass(true);
625         ok( e.is(".testD.testE"), "Assert class present (restored from data)" );
626         e.toggleClass();
627         e.toggleClass(false);
628         e.toggleClass();
629         ok( e.is(".testD.testE"), "Assert class present (restored from data)" );
630
631
632
633         // Cleanup
634         e.removeClass("testD");
635         e.removeData('__className__');
636 };
637
638 test("toggleClass(String|boolean|undefined[, boolean])", function() {
639         testToggleClass(bareObj);
640 });
641
642 test("toggleClass(Function[, boolean])", function() {
643         testToggleClass(functionReturningObj);
644 });
645
646 test("toggleClass(Fucntion[, boolean]) with incoming value", function() {
647         expect(14);
648
649         var e = jQuery("#firstp"), old = e.attr("class");
650         ok( !e.is(".test"), "Assert class not present" );
651         
652         e.toggleClass(function(i, val) {
653                 equals( val, old, "Make sure the incoming value is correct." );
654                 return "test";
655         });
656         ok( e.is(".test"), "Assert class present" );
657         
658         old = e.attr("class");
659         
660         e.toggleClass(function(i, val) {
661                 equals( val, old, "Make sure the incoming value is correct." );
662                 return "test";
663         });
664         ok( !e.is(".test"), "Assert class not present" );
665         
666         old = e.attr("class");
667
668         // class name with a boolean
669         e.toggleClass(function(i, val, state) {
670                 equals( val, old, "Make sure the incoming value is correct." );
671                 equals( state, false, "Make sure that the state is passed in." );
672                 return "test";
673         }, false );
674         ok( !e.is(".test"), "Assert class not present" );
675         
676         old = e.attr("class");
677         
678         e.toggleClass(function(i, val, state) {
679                 equals( val, old, "Make sure the incoming value is correct." );
680                 equals( state, true, "Make sure that the state is passed in." );
681                 return "test";
682         }, true );
683         ok( e.is(".test"), "Assert class present" );
684         
685         old = e.attr("class");
686         
687         e.toggleClass(function(i, val, state) {
688                 equals( val, old, "Make sure the incoming value is correct." );
689                 equals( state, false, "Make sure that the state is passed in." );
690                 return "test";
691         }, false );
692         ok( !e.is(".test"), "Assert class not present" );
693
694         // Cleanup
695         e.removeClass("test");
696         e.removeData('__className__');
697 });
698
699 test("addClass, removeClass, hasClass", function() {
700         expect(14);
701  
702         var jq = jQuery("<p>Hi</p>"), x = jq[0];
703  
704         jq.addClass("hi");
705         equals( x.className, "hi", "Check single added class" );
706  
707         jq.addClass("foo bar");
708         equals( x.className, "hi foo bar", "Check more added classes" );
709  
710         jq.removeClass();
711         equals( x.className, "", "Remove all classes" );
712  
713         jq.addClass("hi foo bar");
714         jq.removeClass("foo");
715         equals( x.className, "hi bar", "Check removal of one class" );
716  
717         ok( jq.hasClass("hi"), "Check has1" );
718         ok( jq.hasClass("bar"), "Check has2" );
719  
720         var jq = jQuery("<p class='class1\nclass2\tcla.ss3\n'></p>");
721         ok( jq.hasClass("class1"), "Check hasClass with carriage return" );
722         ok( jq.is(".class1"), "Check is with carriage return" );
723         ok( jq.hasClass("class2"), "Check hasClass with tab" );
724         ok( jq.is(".class2"), "Check is with tab" );
725         ok( jq.hasClass("cla.ss3"), "Check hasClass with dot" );
726  
727         jq.removeClass("class2");
728         ok( jq.hasClass("class2")==false, "Check the class has been properly removed" );
729         jq.removeClass("cla");
730         ok( jq.hasClass("cla.ss3"), "Check the dotted class has not been removed" );
731         jq.removeClass("cla.ss3");
732         ok( jq.hasClass("cla.ss3")==false, "Check the dotted class has been removed" );
733 });