Added in the new .closest(Array) method, will be used to improve the performance...
[jquery.git] / test / unit / traversing.js
1 module("traversing");
2
3 test("end()", function() {
4         expect(3);
5         equals( 'Yahoo', jQuery('#yahoo').parent().end().text(), 'Check for end' );
6         ok( jQuery('#yahoo').end(), 'Check for end with nothing to end' );
7
8         var x = jQuery('#yahoo');
9         x.parent();
10         equals( 'Yahoo', jQuery('#yahoo').text(), 'Check for non-destructive behaviour' );
11 });
12
13 test("find(String)", function() {
14         expect(2);
15         equals( 'Yahoo', jQuery('#foo').find('.blogTest').text(), 'Check for find' );
16
17         // using contents will get comments regular, text, and comment nodes
18         var j = jQuery("#nonnodes").contents();
19         equals( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
20 });
21
22 test("is(String)", function() {
23         expect(26);
24         ok( jQuery('#form').is('form'), 'Check for element: A form must be a form' );
25         ok( !jQuery('#form').is('div'), 'Check for element: A form is not a div' );
26         ok( jQuery('#mark').is('.blog'), 'Check for class: Expected class "blog"' );
27         ok( !jQuery('#mark').is('.link'), 'Check for class: Did not expect class "link"' );
28         ok( jQuery('#simon').is('.blog.link'), 'Check for multiple classes: Expected classes "blog" and "link"' );
29         ok( !jQuery('#simon').is('.blogTest'), 'Check for multiple classes: Expected classes "blog" and "link", but not "blogTest"' );
30         ok( jQuery('#en').is('[lang="en"]'), 'Check for attribute: Expected attribute lang to be "en"' );
31         ok( !jQuery('#en').is('[lang="de"]'), 'Check for attribute: Expected attribute lang to be "en", not "de"' );
32         ok( jQuery('#text1').is('[type="text"]'), 'Check for attribute: Expected attribute type to be "text"' );
33         ok( !jQuery('#text1').is('[type="radio"]'), 'Check for attribute: Expected attribute type to be "text", not "radio"' );
34         ok( jQuery('#text2').is(':disabled'), 'Check for pseudoclass: Expected to be disabled' );
35         ok( !jQuery('#text1').is(':disabled'), 'Check for pseudoclass: Expected not disabled' );
36         ok( jQuery('#radio2').is(':checked'), 'Check for pseudoclass: Expected to be checked' );
37         ok( !jQuery('#radio1').is(':checked'), 'Check for pseudoclass: Expected not checked' );
38         ok( jQuery('#foo').is(':has(p)'), 'Check for child: Expected a child "p" element' );
39         ok( !jQuery('#foo').is(':has(ul)'), 'Check for child: Did not expect "ul" element' );
40         ok( jQuery('#foo').is(':has(p):has(a):has(code)'), 'Check for childs: Expected "p", "a" and "code" child elements' );
41         ok( !jQuery('#foo').is(':has(p):has(a):has(code):has(ol)'), 'Check for childs: Expected "p", "a" and "code" child elements, but no "ol"' );
42         ok( !jQuery('#foo').is(0), 'Expected false for an invalid expression - 0' );
43         ok( !jQuery('#foo').is(null), 'Expected false for an invalid expression - null' );
44         ok( !jQuery('#foo').is(''), 'Expected false for an invalid expression - ""' );
45         ok( !jQuery('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );
46
47         // test is() with comma-seperated expressions
48         ok( jQuery('#en').is('[lang="en"],[lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
49         ok( jQuery('#en').is('[lang="de"],[lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
50         ok( jQuery('#en').is('[lang="en"] , [lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
51         ok( jQuery('#en').is('[lang="de"] , [lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
52 });
53
54 test("filter(Selector)", function() {
55         expect(5);
56         same( jQuery("#form input").filter(":checked").get(), q("radio2", "check1"), "filter(String)" );
57         same( jQuery("p").filter("#ap, #sndp").get(), q("ap", "sndp"), "filter('String, String')" );
58         same( jQuery("p").filter("#ap,#sndp").get(), q("ap", "sndp"), "filter('String,String')" );
59
60         // using contents will get comments regular, text, and comment nodes
61         var j = jQuery("#nonnodes").contents();
62         equals( j.filter("span").length, 1, "Check node,textnode,comment to filter the one span" );
63         equals( j.filter("[name]").length, 0, "Check node,textnode,comment to filter the one span" );
64 });
65
66 test("filter(Function)", function() {
67         expect(1);
68
69         same( jQuery("p").filter(function() { return !jQuery("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );
70 });
71
72 test("filter(Element)", function() {
73         expect(1);
74
75         var element = document.getElementById("text1");
76         same( jQuery("#form input").filter(element).get(), q("text1"), "filter(Element)" );
77 });
78
79 test("filter(Array)", function() {
80         expect(1);
81
82         var elements = [ document.getElementById("text1") ];
83         same( jQuery("#form input").filter(elements).get(), q("text1"), "filter(Element)" );
84 });
85
86 test("filter(jQuery)", function() {
87         expect(1);
88
89         var elements = jQuery("#text1");
90         same( jQuery("#form input").filter(elements).get(), q("text1"), "filter(Element)" );
91 })
92
93 test("closest()", function() {
94         expect(9);
95         same( jQuery("body").closest("body").get(), q("body"), "closest(body)" );
96         same( jQuery("body").closest("html").get(), q("html"), "closest(html)" );
97         same( jQuery("body").closest("div").get(), [], "closest(div)" );
98         same( jQuery("#main").closest("span,#html").get(), q("html"), "closest(span,#html)" );
99
100         same( jQuery("div:eq(1)").closest("div:first").get(), [], "closest(div:first)" );
101         same( jQuery("div").closest("body:first div:last").get(), q("fx-tests"), "closest(body:first div:last)" );
102
103         // Test .closest() limited by the context
104         var jq = jQuery("#nothiddendivchild");
105         same( jq.closest("html", document.body).get(), [], "Context limited." );
106         same( jq.closest("body", document.body).get(), [], "Context limited." );
107         same( jq.closest("#nothiddendiv", document.body).get(), q("nothiddendiv"), "Context not reached." );
108 });
109
110 test("closest(Array)", function() {
111         expect(6);
112         same( jQuery("body").closest(["body"]), [{selector:"body", elem:document.body}], "closest([body])" );
113         same( jQuery("body").closest(["html"]), [{selector:"html", elem:document.documentElement}], "closest([html])" );
114         same( jQuery("body").closest(["div"]), [], "closest([div])" );
115         same( jQuery("#main").closest(["span,#html"]), [{selector:"span,#html", elem:document.documentElement}], "closest([span,#html])" );
116
117         same( jQuery("body").closest(["body","html"]), [{selector:"body", elem:document.body}, {selector:"html", elem:document.documentElement}], "closest([body, html])" );
118         same( jQuery("body").closest(["span","html"]), [{selector:"html", elem:document.documentElement}], "closest([body, html])" );
119 });
120
121 test("not(Selector)", function() {
122         expect(7);
123         equals( jQuery("#main > p#ap > a").not("#google").length, 2, "not('selector')" );
124         same( jQuery("p").not(".result").get(), q("firstp", "ap", "sndp", "en", "sap", "first"), "not('.class')" );
125         same( jQuery("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );
126         same( jQuery("#form option").not("option.emptyopt:contains('Nothing'),[selected],[value='1']").get(), q("option1c", "option1d", "option2c", "option3d", "option3e" ), "not('complex selector')");
127
128         same( jQuery('#ap *').not('code').get(), q("google", "groups", "anchor1", "mark"), "not('tag selector')" );
129         same( jQuery('#ap *').not('code, #mark').get(), q("google", "groups", "anchor1"), "not('tag, ID selector')" );
130         same( jQuery('#ap *').not('#mark, code').get(), q("google", "groups", "anchor1"), "not('ID, tag selector')");
131 });
132
133 test("not(Element)", function() {
134         expect(1);
135
136         var selects = jQuery("#form select");
137         same( selects.not( selects[1] ).get(), q("select1", "select3"), "filter out DOM element");
138 });
139
140 test("not(Function)", function() {
141         same( jQuery("p").not(function() { return jQuery("a", this).length }).get(), q("sndp", "first"), "not(Function)" );
142 });
143
144 test("not(Array)", function() {
145         expect(2);
146
147         equals( jQuery("#main > p#ap > a").not(document.getElementById("google")).length, 2, "not(DOMElement)" );
148         equals( jQuery("p").not(document.getElementsByTagName("p")).length, 0, "not(Array-like DOM collection)" );
149 });
150
151 test("not(jQuery)", function() {
152         expect(1);
153
154         same( jQuery("p").not(jQuery("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );
155 })
156
157 test("andSelf()", function() {
158         expect(4);
159         same( jQuery("#en").siblings().andSelf().get(), q("sndp", "en", "sap"), "Check for siblings and self" );
160         same( jQuery("#foo").children().andSelf().get(), q("foo", "sndp", "en", "sap"), "Check for children and self" );
161         same( jQuery("#sndp, #en").parent().andSelf().get(), q("foo","sndp","en"), "Check for parent and self" );
162         same( jQuery("#groups").parents("p, div").andSelf().get(), q("main", "ap", "groups"), "Check for parents and self" );
163 });
164
165 test("siblings([String])", function() {
166         expect(5);
167         same( jQuery("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
168         same( jQuery("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" );
169         same( jQuery("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
170         same( jQuery("#foo").siblings("form, b").get(), q("form", "floatTest", "lengthtest", "name-tests", "testForm"), "Check for multiple filters" );
171         var set = q("sndp", "en", "sap");
172         same( jQuery("#en, #sndp").siblings().get(), set, "Check for unique results from siblings" );
173 });
174
175 test("children([String])", function() {
176         expect(3);
177         same( jQuery("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" );
178         same( jQuery("#foo").children(":has(code)").get(), q("sndp", "sap"), "Check for filtered children" );
179         same( jQuery("#foo").children("#en, #sap").get(), q("en", "sap"), "Check for multiple filters" );
180 });
181
182 test("parent([String])", function() {
183         expect(5);
184         equals( jQuery("#groups").parent()[0].id, "ap", "Simple parent check" );
185         equals( jQuery("#groups").parent("p")[0].id, "ap", "Filtered parent check" );
186         equals( jQuery("#groups").parent("div").length, 0, "Filtered parent check, no match" );
187         equals( jQuery("#groups").parent("div, p")[0].id, "ap", "Check for multiple filters" );
188         same( jQuery("#en, #sndp").parent().get(), q("foo"), "Check for unique results from parent" );
189 });
190
191 test("parents([String])", function() {
192         expect(5);
193         equals( jQuery("#groups").parents()[0].id, "ap", "Simple parents check" );
194         equals( jQuery("#groups").parents("p")[0].id, "ap", "Filtered parents check" );
195         equals( jQuery("#groups").parents("div")[0].id, "main", "Filtered parents check2" );
196         same( jQuery("#groups").parents("p, div").get(), q("main", "ap"), "Check for multiple filters" );
197         same( jQuery("#en, #sndp").parents().get(), q("foo", "main", "dl", "body", "html"), "Check for unique results from parents" );
198 });
199
200 test("next([String])", function() {
201         expect(4);
202         equals( jQuery("#ap").next()[0].id, "foo", "Simple next check" );
203         equals( jQuery("#ap").next("div")[0].id, "foo", "Filtered next check" );
204         equals( jQuery("#ap").next("p").length, 0, "Filtered next check, no match" );
205         equals( jQuery("#ap").next("div, p")[0].id, "foo", "Multiple filters" );
206 });
207
208 test("prev([String])", function() {
209         expect(4);
210         equals( jQuery("#foo").prev()[0].id, "ap", "Simple prev check" );
211         equals( jQuery("#foo").prev("p")[0].id, "ap", "Filtered prev check" );
212         equals( jQuery("#foo").prev("div").length, 0, "Filtered prev check, no match" );
213         equals( jQuery("#foo").prev("p, div")[0].id, "ap", "Multiple filters" );
214 });
215
216 test("slice()", function() {
217         expect(7);
218
219         var $links = jQuery("#ap a");
220
221         same( $links.slice(1,2).get(), q("groups"), "slice(1,2)" );
222         same( $links.slice(1).get(), q("groups", "anchor1", "mark"), "slice(1)" );
223         same( $links.slice(0,3).get(), q("google", "groups", "anchor1"), "slice(0,3)" );
224         same( $links.slice(-1).get(), q("mark"), "slice(-1)" );
225
226         same( $links.eq(1).get(), q("groups"), "eq(1)" );
227         same( $links.eq('2').get(), q("anchor1"), "eq('2')" );
228         same( $links.eq(-1).get(), q("mark"), "eq(-1)" );
229 });
230
231 test("first()/last()", function() {
232         expect(4);
233
234         var $links = jQuery("#ap a"), $none = jQuery("asdf");
235
236         same( $links.first().get(), q("google"), "first()" );
237         same( $links.last().get(), q("mark"), "last()" );
238
239         same( $none.first().get(), [], "first() none" );
240         same( $none.last().get(), [], "last() none" );
241 });
242
243 test("map()", function() {
244         expect(2);//expect(6);
245
246         same(
247                 jQuery("#ap").map(function(){
248                         return jQuery(this).find("a").get();
249                 }).get(),
250                 q("google", "groups", "anchor1", "mark"),
251                 "Array Map"
252         );
253
254         same(
255                 jQuery("#ap > a").map(function(){
256                         return this.parentNode;
257                 }).get(),
258                 q("ap","ap","ap"),
259                 "Single Map"
260         );
261
262         return;//these haven't been accepted yet
263
264         //for #2616
265         var keys = jQuery.map( {a:1,b:2}, function( v, k ){
266                 return k;
267         }, [ ] );
268
269         equals( keys.join(""), "ab", "Map the keys from a hash to an array" );
270
271         var values = jQuery.map( {a:1,b:2}, function( v, k ){
272                 return v;
273         }, [ ] );
274
275         equals( values.join(""), "12", "Map the values from a hash to an array" );
276
277         var scripts = document.getElementsByTagName("script");
278         var mapped = jQuery.map( scripts, function( v, k ){
279                 return v;
280         }, {length:0} );
281
282         equals( mapped.length, scripts.length, "Map an array(-like) to a hash" );
283
284         var flat = jQuery.map( Array(4), function( v, k ){
285                 return k % 2 ? k : [k,k,k];//try mixing array and regular returns
286         });
287
288         equals( flat.join(""), "00012223", "try the new flatten technique(#2616)" );
289 });
290
291 test("contents()", function() {
292         expect(12);
293         equals( jQuery("#ap").contents().length, 9, "Check element contents" );
294         ok( jQuery("#iframe").contents()[0], "Check existance of IFrame document" );
295         var ibody = jQuery("#loadediframe").contents()[0].body;
296         ok( ibody, "Check existance of IFrame body" );
297
298         equals( jQuery("span", ibody).text(), "span text", "Find span in IFrame and check its text" );
299
300         jQuery(ibody).append("<div>init text</div>");
301         equals( jQuery("div", ibody).length, 2, "Check the original div and the new div are in IFrame" );
302
303         equals( jQuery("div:last", ibody).text(), "init text", "Add text to div in IFrame" );
304
305         jQuery("div:last", ibody).text("div text");
306         equals( jQuery("div:last", ibody).text(), "div text", "Add text to div in IFrame" );
307
308         jQuery("div:last", ibody).remove();
309         equals( jQuery("div", ibody).length, 1, "Delete the div and check only one div left in IFrame" );
310
311         equals( jQuery("div", ibody).text(), "span text", "Make sure the correct div is still left after deletion in IFrame" );
312
313         jQuery("<table/>", ibody).append("<tr><td>cell</td></tr>").appendTo(ibody);
314         jQuery("table", ibody).remove();
315         equals( jQuery("div", ibody).length, 1, "Check for JS error on add and delete of a table in IFrame" );
316
317         // using contents will get comments regular, text, and comment nodes
318         var c = jQuery("#nonnodes").contents().contents();
319         equals( c.length, 1, "Check node,textnode,comment contents is just one" );
320         equals( c[0].nodeValue, "hi", "Check node,textnode,comment contents is just the one from span" );
321 });