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