3 test("Basic requirements", function() {
\r
5 ok( Array.prototype.push, "Array.push()" );
\r
6 ok( Function.prototype.apply, "Function.apply()" );
\r
7 ok( document.getElementById, "getElementById" );
\r
8 ok( document.getElementsByTagName, "getElementsByTagName" );
\r
9 ok( RegExp, "RegExp" );
\r
10 ok( jQuery, "jQuery" );
\r
14 test("length", function() {
\r
15 ok( $("div").length == 2, "Get Number of Elements Found" );
\r
18 test("size()", function() {
\r
19 ok( $("div").size() == 2, "Get Number of Elements Found" );
\r
22 test("get()", function() {
\r
23 isSet( $("div").get(), q("main","foo"), "Get All Elements" );
\r
26 test("get(Number)", function() {
\r
27 ok( $("div").get(0) == document.getElementById("main"), "Get A Single Element" );
\r
30 test("add(String|Element|Array)", function() {
\r
31 isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
\r
33 ok( $([]).add($("#form")[0].elements).length > 13, "Check elements from array" );
\r
35 var x = $([]).add($("<p id='x1'>xxx</p>")).add($("<p id='x2'>xxx</p>"));
\r
36 ok( x[0].id == "x1", "Check on-the-fly element1" );
\r
37 ok( x[1].id == "x2", "Check on-the-fly element2" );
\r
39 var x = $([]).add("<p id='x1'>xxx</p>").add("<p id='x2'>xxx</p>");
\r
40 ok( x[0].id == "x1", "Check on-the-fly element1" );
\r
41 ok( x[1].id == "x2", "Check on-the-fly element2" );
\r
44 test("each(Function)", function() {
\r
47 div.each(function(){this.foo = 'zoo';});
\r
49 for ( var i = 0; i < div.size(); i++ ) {
\r
50 if ( div.get(i).foo != "zoo" ) pass = false;
\r
52 ok( pass, "Execute a function, Relative" );
\r
55 test("index(Object)", function() {
\r
57 ok( $([window, document]).index(window) == 0, "Check for index of elements" );
\r
58 ok( $([window, document]).index(document) == 1, "Check for index of elements" );
\r
59 var inputElements = $('#radio1,#radio2,#check1,#check2');
\r
60 ok( inputElements.index(document.getElementById('radio1')) == 0, "Check for index of elements" );
\r
61 ok( inputElements.index(document.getElementById('radio2')) == 1, "Check for index of elements" );
\r
62 ok( inputElements.index(document.getElementById('check1')) == 2, "Check for index of elements" );
\r
63 ok( inputElements.index(document.getElementById('check2')) == 3, "Check for index of elements" );
\r
64 ok( inputElements.index(window) == -1, "Check for not found index" );
\r
65 ok( inputElements.index(document) == -1, "Check for not found index" );
\r
68 test("attr(String)", function() {
\r
70 ok( $('#text1').attr('value') == "Test", 'Check for value attribute' );
\r
71 ok( $('#text1').attr('type') == "text", 'Check for type attribute' );
\r
72 ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' );
\r
73 ok( $('#check1').attr('type') == "checkbox", 'Check for type attribute' );
\r
74 ok( $('#simon1').attr('rel') == "bookmark", 'Check for rel attribute' );
\r
75 ok( $('#google').attr('title') == "Google!", 'Check for title attribute' );
\r
76 ok( $('#mark').attr('hreflang') == "en", 'Check for hreflang attribute' );
\r
77 ok( $('#en').attr('lang') == "en", 'Check for lang attribute' );
\r
78 ok( $('#simon').attr('class') == "blog link", 'Check for class attribute' );
\r
79 ok( $('#name').attr('name') == "name", 'Check for name attribute' );
\r
80 ok( $('#text1').attr('name') == "action", 'Check for name attribute' );
\r
81 ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
\r
84 test("attr(String, Function)", function() {
\r
86 ok( $('#text1').attr('value', function() { return this.id })[0].value == "text1", "Set value from id" );
\r
87 ok( $('#text1').attr('title', function(i) { return i }).attr('title') == "0", "Set value with an index");
\r
90 test("attr(Hash)", function() {
\r
93 $("div").attr({foo: 'baz', zoo: 'ping'}).each(function(){
\r
94 if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
\r
96 ok( pass, "Set Multiple Attributes" );
\r
99 test("attr(String, Object)", function() {
\r
101 var div = $("div");
\r
102 div.attr("foo", "bar");
\r
104 for ( var i = 0; i < div.size(); i++ ) {
\r
105 if ( div.get(i).getAttribute('foo') != "bar" ) pass = false;
\r
107 ok( pass, "Set Attribute" );
\r
109 $("#name").attr('name', 'something');
\r
110 ok( $("#name").attr('name') == 'something', 'Set name attribute' );
\r
111 $("#check2").attr('checked', true);
\r
112 ok( document.getElementById('check2').checked == true, 'Set checked attribute' );
\r
113 $("#check2").attr('checked', false);
\r
114 ok( document.getElementById('check2').checked == false, 'Set checked attribute' );
\r
115 $("#text1").attr('readonly', true);
\r
116 ok( document.getElementById('text1').readOnly == true, 'Set readonly attribute' );
\r
117 $("#text1").attr('readonly', false);
\r
118 ok( document.getElementById('text1').readOnly == false, 'Set readonly attribute' );
\r
121 if ( location.protocol != "file:" ) {
\r
122 test("attr(String, Object)x", function() {
\r
125 $.get('data/dashboard.xml', function(xml) {
\r
127 $('tab', xml).each(function() {
\r
128 titles.push($(this).attr('title'));
\r
130 ok( titles[0] == 'Location', 'attr() in XML context: Check first title' );
\r
131 ok( titles[1] == 'Users', 'attr() in XML context: Check second title' );
\r
137 test("css(String|Hash)", function() {
\r
140 ok( $('#main').css("display") == 'none', 'Check for css property "display"');
\r
142 ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
\r
143 $('#foo').css({display: 'none'});
\r
144 ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
\r
145 $('#foo').css({display: 'block'});
\r
146 ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
\r
148 $('#floatTest').css({styleFloat: 'right'});
\r
149 ok( $('#floatTest').css('styleFloat') == 'right', 'Modified CSS float using "styleFloat": Assert float is right');
\r
150 $('#floatTest').css({cssFloat: 'left'});
\r
151 ok( $('#floatTest').css('cssFloat') == 'left', 'Modified CSS float using "cssFloat": Assert float is left');
\r
152 $('#floatTest').css({'float': 'right'});
\r
153 ok( $('#floatTest').css('float') == 'right', 'Modified CSS float using "float": Assert float is right');
\r
154 $('#floatTest').css({'font-size': '30px'});
\r
155 ok( $('#floatTest').css('font-size') == '30px', 'Modified CSS font-size: Assert font-size is 30px');
\r
158 test("css(String, Object)", function() {
\r
160 ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
\r
161 $('#foo').css('display', 'none');
\r
162 ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
\r
163 $('#foo').css('display', 'block');
\r
164 ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
\r
166 $('#floatTest').css('styleFloat', 'left');
\r
167 ok( $('#floatTest').css('styleFloat') == 'left', 'Modified CSS float using "styleFloat": Assert float is left');
\r
168 $('#floatTest').css('cssFloat', 'right');
\r
169 ok( $('#floatTest').css('cssFloat') == 'right', 'Modified CSS float using "cssFloat": Assert float is right');
\r
170 $('#floatTest').css('float', 'left');
\r
171 ok( $('#floatTest').css('float') == 'left', 'Modified CSS float using "float": Assert float is left');
\r
172 $('#floatTest').css('font-size', '20px');
\r
173 ok( $('#floatTest').css('font-size') == '20px', 'Modified CSS font-size: Assert font-size is 20px');
\r
176 test("text()", function() {
\r
177 var expected = "This link has class=\"blog\": Simon Willison's Weblog";
\r
178 ok( $('#sap').text() == expected, 'Check for merged text of more then one element.' );
\r
181 test("wrap(String|Element)", function() {
\r
183 var defaultText = 'Try them out:'
\r
184 var result = $('#first').wrap('<div class="red"><span></span></div>').text();
\r
185 ok( defaultText == result, 'Check for wrapping of on-the-fly html' );
\r
186 ok( $('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
\r
189 var defaultText = 'Try them out:'
\r
190 var result = $('#first').wrap(document.getElementById('empty')).parent();
\r
191 ok( result.is('ol'), 'Check for element wrapping' );
\r
192 ok( result.text() == defaultText, 'Check for element wrapping' );
\r
195 test("append(String|Element|Array<Element>|jQuery)", function() {
\r
197 var defaultText = 'Try them out:'
\r
198 var result = $('#first').append('<b>buga</b>');
\r
199 ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
\r
200 ok( $('#select3').append('<option value="appendTest">Append Test</option>').find('option:last-child').attr('value') == 'appendTest', 'Appending html options to select element');
\r
203 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
\r
204 $('#sap').append(document.getElementById('first'));
\r
205 ok( expected == $('#sap').text(), "Check for appending of element" );
\r
208 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
\r
209 $('#sap').append([document.getElementById('first'), document.getElementById('yahoo')]);
\r
210 ok( expected == $('#sap').text(), "Check for appending of array of elements" );
\r
213 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
\r
214 $('#sap').append($("#first, #yahoo"));
\r
215 ok( expected == $('#sap').text(), "Check for appending of jQuery object" );
\r
218 $("#sap").append( 5 );
\r
219 ok( $("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
\r
222 ok( $("#sap").append([]), "Check for appending an empty array." );
\r
223 ok( $("#sap").append(""), "Check for appending an empty string." );
\r
224 ok( $("#sap").append(document.getElementsByTagName("foo")), "Check for appending an empty nodelist." );
\r
227 test("appendTo(String|Element|Array<Element>|jQuery)", function() {
\r
229 var defaultText = 'Try them out:'
\r
230 $('<b>buga</b>').appendTo('#first');
\r
231 ok( $("#first").text() == defaultText + 'buga', 'Check if text appending works' );
\r
232 ok( $('<option value="appendTest">Append Test</option>').appendTo('#select3').parent().find('option:last-child').attr('value') == 'appendTest', 'Appending html options to select element');
\r
235 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
\r
236 $(document.getElementById('first')).appendTo('#sap');
\r
237 ok( expected == $('#sap').text(), "Check for appending of element" );
\r
240 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
\r
241 $([document.getElementById('first'), document.getElementById('yahoo')]).appendTo('#sap');
\r
242 ok( expected == $('#sap').text(), "Check for appending of array of elements" );
\r
245 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
\r
246 $("#first, #yahoo").appendTo('#sap');
\r
247 ok( expected == $('#sap').text(), "Check for appending of jQuery object" );
\r
250 test("prepend(String|Element|Array<Element>|jQuery)", function() {
\r
252 var defaultText = 'Try them out:'
\r
253 var result = $('#first').prepend('<b>buga</b>');
\r
254 ok( result.text() == 'buga' + defaultText, 'Check if text prepending works' );
\r
255 ok( $('#select3').prepend('<option value="prependTest">Prepend Test</option>').find('option:first-child').attr('value') == 'prependTest', 'Prepending html options to select element');
\r
258 expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
\r
259 $('#sap').prepend(document.getElementById('first'));
\r
260 ok( expected == $('#sap').text(), "Check for prepending of element" );
\r
263 expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
\r
264 $('#sap').prepend([document.getElementById('first'), document.getElementById('yahoo')]);
\r
265 ok( expected == $('#sap').text(), "Check for prepending of array of elements" );
\r
268 expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
\r
269 $('#sap').prepend($("#first, #yahoo"));
\r
270 ok( expected == $('#sap').text(), "Check for prepending of jQuery object" );
\r
273 test("prependTo(String|Element|Array<Element>|jQuery)", function() {
\r
275 var defaultText = 'Try them out:'
\r
276 $('<b>buga</b>').prependTo('#first');
\r
277 ok( $('#first').text() == 'buga' + defaultText, 'Check if text prepending works' );
\r
278 ok( $('<option value="prependTest">Prepend Test</option>').prependTo('#select3').parent().find('option:first-child').attr('value') == 'prependTest', 'Prepending html options to select element');
\r
281 expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
\r
282 $(document.getElementById('first')).prependTo('#sap');
\r
283 ok( expected == $('#sap').text(), "Check for prepending of element" );
\r
286 expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
\r
287 $([document.getElementById('yahoo'), document.getElementById('first')]).prependTo('#sap');
\r
288 ok( expected == $('#sap').text(), "Check for prepending of array of elements" );
\r
291 expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
\r
292 $("#yahoo, #first").prependTo('#sap');
\r
293 ok( expected == $('#sap').text(), "Check for prepending of jQuery object" );
\r
296 test("before(String|Element|Array<Element>|jQuery)", function() {
\r
298 var expected = 'This is a normal link: bugaYahoo';
\r
299 $('#yahoo').before('<b>buga</b>');
\r
300 ok( expected == $('#en').text(), 'Insert String before' );
\r
303 expected = "This is a normal link: Try them out:Yahoo";
\r
304 $('#yahoo').before(document.getElementById('first'));
\r
305 ok( expected == $('#en').text(), "Insert element before" );
\r
308 expected = "This is a normal link: Try them out:diveintomarkYahoo";
\r
309 $('#yahoo').before([document.getElementById('first'), document.getElementById('mark')]);
\r
310 ok( expected == $('#en').text(), "Insert array of elements before" );
\r
313 expected = "This is a normal link: Try them out:diveintomarkYahoo";
\r
314 $('#yahoo').before($("#first, #mark"));
\r
315 ok( expected == $('#en').text(), "Insert jQuery before" );
\r
318 test("insertBefore(String|Element|Array<Element>|jQuery)", function() {
\r
320 var expected = 'This is a normal link: bugaYahoo';
\r
321 $('<b>buga</b>').insertBefore('#yahoo');
\r
322 ok( expected == $('#en').text(), 'Insert String before' );
\r
325 expected = "This is a normal link: Try them out:Yahoo";
\r
326 $(document.getElementById('first')).insertBefore('#yahoo');
\r
327 ok( expected == $('#en').text(), "Insert element before" );
\r
330 expected = "This is a normal link: Try them out:diveintomarkYahoo";
\r
331 $([document.getElementById('first'), document.getElementById('mark')]).insertBefore('#yahoo');
\r
332 ok( expected == $('#en').text(), "Insert array of elements before" );
\r
335 expected = "This is a normal link: Try them out:diveintomarkYahoo";
\r
336 $("#first, #mark").insertBefore('#yahoo');
\r
337 ok( expected == $('#en').text(), "Insert jQuery before" );
\r
340 test("after(String|Element|Array<Element>|jQuery)", function() {
\r
342 var expected = 'This is a normal link: Yahoobuga';
\r
343 $('#yahoo').after('<b>buga</b>');
\r
344 ok( expected == $('#en').text(), 'Insert String after' );
\r
347 expected = "This is a normal link: YahooTry them out:";
\r
348 $('#yahoo').after(document.getElementById('first'));
\r
349 ok( expected == $('#en').text(), "Insert element after" );
\r
352 expected = "This is a normal link: YahooTry them out:diveintomark";
\r
353 $('#yahoo').after([document.getElementById('first'), document.getElementById('mark')]);
\r
354 ok( expected == $('#en').text(), "Insert array of elements after" );
\r
357 expected = "This is a normal link: YahooTry them out:diveintomark";
\r
358 $('#yahoo').after($("#first, #mark"));
\r
359 ok( expected == $('#en').text(), "Insert jQuery after" );
\r
362 test("insertAfter(String|Element|Array<Element>|jQuery)", function() {
\r
364 var expected = 'This is a normal link: Yahoobuga';
\r
365 $('<b>buga</b>').insertAfter('#yahoo');
\r
366 ok( expected == $('#en').text(), 'Insert String after' );
\r
369 expected = "This is a normal link: YahooTry them out:";
\r
370 $(document.getElementById('first')).insertAfter('#yahoo');
\r
371 ok( expected == $('#en').text(), "Insert element after" );
\r
374 expected = "This is a normal link: YahooTry them out:diveintomark";
\r
375 $([document.getElementById('mark'), document.getElementById('first')]).insertAfter('#yahoo');
\r
376 ok( expected == $('#en').text(), "Insert array of elements after" );
\r
379 expected = "This is a normal link: YahooTry them out:diveintomark";
\r
380 $("#mark, #first").insertAfter('#yahoo');
\r
381 ok( expected == $('#en').text(), "Insert jQuery after" );
\r
384 test("end()", function() {
\r
386 ok( 'Yahoo' == $('#yahoo').parent().end().text(), 'Check for end' );
\r
387 ok( $('#yahoo').end(), 'Check for end with nothing to end' );
\r
389 var x = $('#yahoo');
\r
391 ok( 'Yahoo' == $('#yahoo').text(), 'Check for non-destructive behaviour' );
\r
394 test("find(String)", function() {
\r
395 ok( 'Yahoo' == $('#foo').find('.blogTest').text(), 'Check for find' );
\r
398 test("clone()", function() {
\r
400 ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' );
\r
401 var clone = $('#yahoo').clone();
\r
402 ok( 'Try them out:Yahoo' == $('#first').append(clone).text(), 'Check for clone' );
\r
403 ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Reassert text for #en' );
\r
406 test("is(String)", function() {
\r
408 ok( $('#form').is('form'), 'Check for element: A form must be a form' );
\r
409 ok( !$('#form').is('div'), 'Check for element: A form is not a div' );
\r
410 ok( $('#mark').is('.blog'), 'Check for class: Expected class "blog"' );
\r
411 ok( !$('#mark').is('.link'), 'Check for class: Did not expect class "link"' );
\r
412 ok( $('#simon').is('.blog.link'), 'Check for multiple classes: Expected classes "blog" and "link"' );
\r
413 ok( !$('#simon').is('.blogTest'), 'Check for multiple classes: Expected classes "blog" and "link", but not "blogTest"' );
\r
414 ok( $('#en').is('[@lang="en"]'), 'Check for attribute: Expected attribute lang to be "en"' );
\r
415 ok( !$('#en').is('[@lang="de"]'), 'Check for attribute: Expected attribute lang to be "en", not "de"' );
\r
416 ok( $('#text1').is('[@type="text"]'), 'Check for attribute: Expected attribute type to be "text"' );
\r
417 ok( !$('#text1').is('[@type="radio"]'), 'Check for attribute: Expected attribute type to be "text", not "radio"' );
\r
418 ok( $('#text2').is(':disabled'), 'Check for pseudoclass: Expected to be disabled' );
\r
419 ok( !$('#text1').is(':disabled'), 'Check for pseudoclass: Expected not disabled' );
\r
420 ok( $('#radio2').is(':checked'), 'Check for pseudoclass: Expected to be checked' );
\r
421 ok( !$('#radio1').is(':checked'), 'Check for pseudoclass: Expected not checked' );
\r
422 ok( $('#foo').is('[p]'), 'Check for child: Expected a child "p" element' );
\r
423 ok( !$('#foo').is('[ul]'), 'Check for child: Did not expect "ul" element' );
\r
424 ok( $('#foo').is('[p][a][code]'), 'Check for childs: Expected "p", "a" and "code" child elements' );
\r
425 ok( !$('#foo').is('[p][a][code][ol]'), 'Check for childs: Expected "p", "a" and "code" child elements, but no "ol"' );
\r
426 ok( !$('#foo').is(0), 'Expected false for an invalid expression - 0' );
\r
427 ok( !$('#foo').is(null), 'Expected false for an invalid expression - null' );
\r
428 ok( !$('#foo').is(''), 'Expected false for an invalid expression - ""' );
\r
429 ok( !$('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );
\r
432 test("$.extend(Object, Object)", function() {
\r
434 var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
\r
435 options = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
\r
436 optionsCopy = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
\r
437 merged = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "x", xxx: "newstring" };
\r
438 jQuery.extend(settings, options);
\r
439 isSet( settings, merged, "Check if extended: settings must be extended" );
\r
440 isSet ( options, optionsCopy, "Check if not modified: options must not be modified" );
\r
443 test("$.extend(Object, Object, Object, Object)", function() {
\r
445 var defaults = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
\r
446 defaultsCopy = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
\r
447 options1 = { xnumber2: 1, xstring2: "x" },
\r
448 options1Copy = { xnumber2: 1, xstring2: "x" },
\r
449 options2 = { xstring2: "xx", xxx: "newstringx" },
\r
450 options2Copy = { xstring2: "xx", xxx: "newstringx" },
\r
451 merged = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "xx", xxx: "newstringx" };
\r
452 var settings = jQuery.extend({}, defaults, options1, options2);
\r
453 isSet( settings, merged, "Check if extended: settings must be extended" );
\r
454 isSet ( defaults, defaultsCopy, "Check if not modified: options1 must not be modified" );
\r
455 isSet ( options1, options1Copy, "Check if not modified: options1 must not be modified" );
\r
456 isSet ( options2, options2Copy, "Check if not modified: options2 must not be modified" );
\r
459 test("val()", function() {
\r
461 ok( $("#text1").val() == "Test", "Check for value of input element" );
\r
462 ok( !$("#text1").val() == "", "Check for value of input element" );
\r
465 test("val(String)", function() {
\r
467 document.getElementById('text1').value = "bla";
\r
468 ok( $("#text1").val() == "bla", "Check for modified value of input element" );
\r
469 $("#text1").val('test');
\r
470 ok ( document.getElementById('text1').value == "test", "Check for modified (via val(String)) value of input element" );
\r
473 test("html(String)", function() {
\r
475 var div = $("div");
\r
476 div.html("<b>test</b>");
\r
478 for ( var i = 0; i < div.size(); i++ ) {
\r
479 if ( div.get(i).childNodes.length == 0 ) pass = false;
\r
481 ok( pass, "Set HTML" );
\r
484 test("filter()", function() {
\r
486 isSet( $("input").filter(":checked").get(), q("radio2", "check1"), "filter(String)" );
\r
487 isSet( $("p").filter("#ap, #sndp").get(), q("ap", "sndp"), "filter('String, String')" );
\r
488 isSet( $("p").filter("#ap,#sndp").get(), q("ap", "sndp"), "filter('String,String')" );
\r
489 isSet( $("p").filter(function() { return !$("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );
\r
492 test("not(String)", function() {
\r
494 ok( $("#main > p#ap > a").not("#google").length == 2, "not('selector')" );
\r
495 isSet( $("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );
\r
499 test("siblings([String])", function() {
\r
501 isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
\r
502 isSet( $("#sndp").siblings("[code]").get(), q("sap"), "Check for filtered siblings (has code child element)" );
\r
503 isSet( $("#sndp").siblings("[a]").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
\r
504 isSet( $("#foo").siblings("form, b").get(), q("form", "floatTest"), "Check for multiple filters" );
\r
507 test("children([String])", function() {
\r
509 isSet( $("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" );
\r
510 isSet( $("#foo").children("[code]").get(), q("sndp", "sap"), "Check for filtered children" );
\r
511 isSet( $("#foo").children("#en, #sap").get(), q("en", "sap"), "Check for multiple filters" );
\r
514 test("parent[s]([String])", function() {
\r
516 ok( $("#groups").parent()[0].id == "ap", "Simple parent check" );
\r
517 ok( $("#groups").parent("p")[0].id == "ap", "Filtered parent check" );
\r
518 ok( $("#groups").parent("div").length == 0, "Filtered parent check, no match" );
\r
519 ok( $("#groups").parent("div, p")[0].id == "ap", "Check for multiple filters" );
\r
521 ok( $("#groups").parents()[0].id == "ap", "Simple parents check" );
\r
522 ok( $("#groups").parents("p")[0].id == "ap", "Filtered parents check" );
\r
523 ok( $("#groups").parents("div")[0].id == "main", "Filtered parents check2" );
\r
524 isSet( $("#groups").parents("p, div").get(), q("ap", "main"), "Check for multiple filters" );
\r
527 test("next/prev([String])", function() {
\r
529 ok( $("#ap").next()[0].id == "foo", "Simple next check" );
\r
530 ok( $("#ap").next("div")[0].id == "foo", "Filtered next check" );
\r
531 ok( $("#ap").next("p").length == 0, "Filtered next check, no match" );
\r
532 ok( $("#ap").next("div, p")[0].id == "foo", "Multiple filters" );
\r
534 ok( $("#foo").prev()[0].id == "ap", "Simple prev check" );
\r
535 ok( $("#foo").prev("p")[0].id == "ap", "Filtered prev check" );
\r
536 ok( $("#foo").prev("div").length == 0, "Filtered prev check, no match" );
\r
537 ok( $("#foo").prev("p, div")[0].id == "ap", "Multiple filters" );
\r
540 test("show()", function() {
\r
542 var pass = true, div = $("div");
\r
543 div.show().each(function(){
\r
544 if ( this.style.display == "none" ) pass = false;
\r
546 ok( pass, "Show" );
\r
549 test("addClass(String)", function() {
\r
550 var div = $("div");
\r
551 div.addClass("test");
\r
553 for ( var i = 0; i < div.size(); i++ ) {
\r
554 if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
\r
556 ok( pass, "Add Class" );
\r
559 test("removeClass(String) - simple", function() {
\r
561 var div = $("div").addClass("test").removeClass("test"),
\r
563 for ( var i = 0; i < div.size(); i++ ) {
\r
564 if ( div.get(i).className.indexOf("test") != -1 ) pass = false;
\r
566 ok( pass, "Remove Class" );
\r
569 test("removeClass(String) - add three classes and remove again", function() {
\r
571 var div = $("div").addClass("test").addClass("foo").addClass("bar");
\r
572 div.removeClass("test").removeClass("bar").removeClass("foo");
\r
574 for ( var i = 0; i < div.size(); i++ ) {
\r
575 if ( div.get(i).className.match(/test|bar|foo/) ) pass = false;
\r
577 ok( pass, "Remove multiple classes" );
\r
580 test("toggleClass(String)", function() {
\r
582 var e = $("#firstp");
\r
583 ok( !e.is(".test"), "Assert class not present" );
\r
584 e.toggleClass("test");
\r
585 ok( e.is(".test"), "Assert class present" );
\r
586 e.toggleClass("test");
\r
587 ok( !e.is(".test"), "Assert class not present" );
\r
590 test("removeAttr(String", function() {
\r
591 ok( $('#mark').removeAttr("class")[0].className == "", "remove class" );
\r
594 test("text(String)", function() {
\r
596 ok( $("#foo").text("<div><b>Hello</b> cruel world!</div>")[0].innerHTML == "<div><b>Hello</b> cruel world!</div>", "Check escaped text" );
\r
599 test("$.each(Object,Function)", function() {
\r
601 $.each( [0,1,2], function(i, n){
\r
602 ok( i == n, "Check array iteration" );
\r
605 $.each( [5,6,7], function(i, n){
\r
606 ok( i == n - 5, "Check array iteration" );
\r
609 $.each( { name: "name", lang: "lang" }, function(i, n){
\r
610 ok( i == n, "Check object iteration" );
\r
614 test("$.prop", function() {
\r
616 var handle = function() { return this.id };
\r
617 ok( $.prop($("#ap")[0], handle) == "ap", "Check with Function argument" );
\r
618 ok( $.prop($("#ap")[0], "value") == "value", "Check with value argument" );
\r
621 test("$.className", function() {
\r
623 var x = $("<p>Hi</p>")[0];
\r
624 var c = $.className;
\r
626 ok( x.className == "hi", "Check single added class" );
\r
627 c.add(x, "foo bar");
\r
628 ok( x.className == "hi foo bar", "Check more added classes" );
\r
630 ok( x.className == "", "Remove all classes" );
\r
631 c.add(x, "hi foo bar");
\r
632 c.remove(x, "foo");
\r
633 ok( x.className == "hi bar", "Check removal of one class" );
\r
634 ok( c.has(x, "hi"), "Check has1" );
\r
635 ok( c.has(x, "bar"), "Check has2" );
\r
638 test("remove()", function() {
\r
639 $("#ap").children().remove();
\r
640 ok( $("#ap").text().length > 10, "Check text is not removed" );
\r
641 ok( $("#ap").children().length == 0, "Check remove" );
\r
644 $("#ap").children().remove("a");
\r
645 ok( $("#ap").text().length > 10, "Check text is not removed" );
\r
646 ok( $("#ap").children().length == 1, "Check filtered remove" );
\r
649 test("empty()", function() {
\r
650 ok( $("#ap").children().empty().text().length == 0, "Check text is removed" );
\r
651 ok( $("#ap").children().length == 4, "Check elements are not removed" );
\r
654 test("eq(), gt(), lt(), contains()", function() {
\r
655 ok( $("#ap a").eq(1)[0].id == "groups", "eq()" );
\r
656 isSet( $("#ap a").gt(0).get(), q("groups", "anchor1", "mark"), "gt()" );
\r
657 isSet( $("#ap a").lt(3).get(), q("google", "groups", "anchor1"), "lt()" );
\r
658 isSet( $("#foo a").contains("log").get(), q("anchor2", "simon"), "contains()" );
\r