Merged Sizzle changes back into jQuery.
[jquery.git] / test / unit / selector.js
1 module("selector");
2
3 test("element", function() {
4         expect(9);
5         reset();
6
7         ok( jQuery("*").size() >= 30, "Select all" );
8         var all = jQuery("*"), good = true;
9         for ( var i = 0; i < all.length; i++ )
10                 if ( all[i].nodeType == 8 )
11                         good = false;
12         ok( good, "Select all elements, no comment nodes" );
13         t( "Element Selector", "p", ["firstp","ap","sndp","en","sap","first"] );
14         t( "Element Selector", "body", ["body"] );
15         t( "Element Selector", "html", ["html"] );
16         t( "Parent Element", "div p", ["firstp","ap","sndp","en","sap","first"] );
17         equals( jQuery("param", "#object1").length, 2, "Object/param as context" );
18         
19         ok( jQuery("#length").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' );
20         ok( jQuery("#lengthtest input").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' );
21 });
22
23 if ( location.protocol != "file:" ) {
24         test("Element Selector with underscore", function() {
25                 expect(1);
26                 stop();
27                 jQuery.get("data/with_fries.xml", function(xml) {
28                         equals( jQuery("foo_bar", xml).length, 1, "Element Selector with underscore" );
29                         start();
30                 });
31         });
32 }
33
34 test("broken", function() {
35         expect(7);
36         function broken(name, selector) {
37                 try {
38                         jQuery(selector);
39                 } catch(e){
40                         ok(  typeof e === "string" && e.indexOf("Syntax error") >= 0,
41                                 name + ": " + selector );
42                 }
43         }
44         
45         broken( "Broken Selector", "[", [] );
46         broken( "Broken Selector", "(", [] );
47         broken( "Broken Selector", "{", [] );
48         broken( "Broken Selector", "<", [] );
49         broken( "Broken Selector", "()", [] );
50         broken( "Broken Selector", "<>", [] );
51         broken( "Broken Selector", "{}", [] );
52 });
53
54 test("id", function() {
55         expect(25);
56         t( "ID Selector", "#body", ["body"] );
57         t( "ID Selector w/ Element", "body#body", ["body"] );
58         t( "ID Selector w/ Element", "ul#first", [] );
59         t( "ID selector with existing ID descendant", "#firstp #simon1", ["simon1"] );
60         t( "ID selector with non-existant descendant", "#firstp #foobar", [] );
61         t( "ID selector using UTF8", "#台北Táiběi", ["台北Táiběi"] );
62         t( "Multiple ID selectors using UTF8", "#台北Táiběi, #台北", ["台北Táiběi","台北"] );
63         t( "Descendant ID selector using UTF8", "div #台北", ["台北"] );
64         t( "Child ID selector using UTF8", "form > #台北", ["台北"] );
65         
66         t( "Escaped ID", "#foo\\:bar", ["foo:bar"] );
67         t( "Escaped ID", "#test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
68         t( "Descendant escaped ID", "div #foo\\:bar", ["foo:bar"] );
69         t( "Descendant escaped ID", "div #test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
70         t( "Child escaped ID", "form > #foo\\:bar", ["foo:bar"] );
71         t( "Child escaped ID", "form > #test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
72         
73         t( "ID Selector, child ID present", "#form > #radio1", ["radio1"] ); // bug #267
74         t( "ID Selector, not an ancestor ID", "#form #first", [] );
75         t( "ID Selector, not a child ID", "#form > #option1a", [] );
76         
77         t( "All Children of ID", "#foo > *", ["sndp", "en", "sap"] );
78         t( "All Children of ID with no children", "#firstUL > *", [] );
79         
80         jQuery('<a name="tName1">tName1 A</a><a name="tName2">tName2 A</a><div id="tName1">tName1 Div</div>').appendTo('#main');
81         equals( jQuery("#tName1")[0].id, 'tName1', "ID selector with same value for a name attribute" );
82         equals( jQuery("#tName2").length, 0, "ID selector non-existing but name attribute on an A tag" );
83         t( "ID Selector on Form with an input that has a name of 'id'", "#lengthtest", ["lengthtest"] );
84         
85         t( "ID selector with non-existant ancestor", "#asdfasdf #foobar", [] ); // bug #986
86
87         isSet( jQuery("body").find("div#form"), [], "ID selector within the context of another element" );
88 });
89
90 test("class", function() {
91         expect(15);
92         t( "Class Selector", ".blog", ["mark","simon"] );
93         t( "Class Selector", ".blog.link", ["simon"] );
94         t( "Class Selector w/ Element", "a.blog", ["mark","simon"] );
95         t( "Parent Class Selector", "p .blog", ["mark","simon"] );
96         
97         t( "Class selector using UTF8", ".台北Táiběi", ["utf8class1"] );
98         //t( "Class selector using UTF8", ".台北", ["utf8class1","utf8class2"] );
99         t( "Class selector using UTF8", ".台北Táiběi.台北", ["utf8class1"] );
100         t( "Class selector using UTF8", ".台北Táiběi, .台北", ["utf8class1","utf8class2"] );
101         t( "Descendant class selector using UTF8", "div .台北Táiběi", ["utf8class1"] );
102         t( "Child class selector using UTF8", "form > .台北Táiběi", ["utf8class1"] );
103         
104         t( "Escaped Class", ".foo\\:bar", ["foo:bar"] );
105         t( "Escaped Class", ".test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
106         t( "Descendant scaped Class", "div .foo\\:bar", ["foo:bar"] );
107         t( "Descendant scaped Class", "div .test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
108         t( "Child escaped Class", "form > .foo\\:bar", ["foo:bar"] );
109         t( "Child escaped Class", "form > .test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
110 });
111
112 test("name", function() {
113         expect(7);
114
115         t( "Name selector", "input[name=action]", ["text1"] );
116         t( "Name selector with single quotes", "input[name='action']", ["text1"] );
117         t( "Name selector with double quotes", 'input[name="action"]', ["text1"] );
118
119         t( "Name selector non-input", "*[name=iframe]", ["iframe"] );
120
121         t( "Name selector for grouped input", "input[name='types[]']", ["types_all", "types_anime", "types_movie"] )
122
123         isSet( jQuery("#form").find("input[name=action]"), q("text1"), "Name selector within the context of another element" );
124         isSet( jQuery("#form").find("input[name='foo[bar]']"), q("hidden2"), "Name selector for grouped form element within the context of another element" );
125 });
126
127
128 test("multiple", function() {
129         expect(4);
130         
131         var results = ["mark","simon","firstp","ap","sndp","en","sap","first"];
132         
133         if ( document.querySelectorAll ) {
134                 results = ["firstp","ap","mark","sndp","en","sap","simon","first"];
135         }
136         
137         t( "Comma Support", "a.blog, p", results);
138         t( "Comma Support", "a.blog , p", results);
139         t( "Comma Support", "a.blog ,p", results);
140         t( "Comma Support", "a.blog,p", results);
141 });
142
143 test("child and adjacent", function() {
144         expect(41);
145         t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] );
146         t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] );
147         t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] );
148         t( "Child", "p>a", ["simon1","google","groups","mark","yahoo","simon"] );
149         t( "Child w/ Class", "p > a.blog", ["mark","simon"] );
150         t( "All Children", "code > *", ["anchor1","anchor2"] );
151         t( "All Grandchildren", "p > * > *", ["anchor1","anchor2"] );
152         t( "Adjacent", "a + a", ["groups"] );
153         t( "Adjacent", "a +a", ["groups"] );
154         t( "Adjacent", "a+ a", ["groups"] );
155         t( "Adjacent", "a+a", ["groups"] );
156         t( "Adjacent", "p + p", ["ap","en","sap"] );
157         t( "Comma, Child, and Adjacent", "a + a, code > a", ["groups","anchor1","anchor2"] );
158
159         isSet( jQuery("> :first", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
160         isSet( jQuery("> :eq(0)", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
161         isSet( jQuery("> *:first", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
162
163         t( "Non-existant ancestors", ".fototab > .thumbnails > a", [] );
164         
165         t( "First Child", "p:first-child", ["firstp","sndp"] );
166         t( "Nth Child", "p:nth-child(1)", ["firstp","sndp"] );
167         
168         t( "Last Child", "p:last-child", ["sap"] );
169         t( "Last Child", "a:last-child", ["simon1","anchor1","mark","yahoo","anchor2","simon"] );
170         
171         t( "Nth-child", "#main form#form > *:nth-child(2)", ["text1"] );
172         t( "Nth-child", "#main form#form > :nth-child(2)", ["text1"] );
173
174         t( "Nth-child", "#form select:first option:nth-child(3)", ["option1c"] );
175         t( "Nth-child", "#form select:first option:nth-child(0n+3)", ["option1c"] );
176         t( "Nth-child", "#form select:first option:nth-child(1n+0)", ["option1a", "option1b", "option1c", "option1d"] );
177         t( "Nth-child", "#form select:first option:nth-child(1n)", ["option1a", "option1b", "option1c", "option1d"] );
178         t( "Nth-child", "#form select:first option:nth-child(n)", ["option1a", "option1b", "option1c", "option1d"] );
179         t( "Nth-child", "#form select:first option:nth-child(even)", ["option1b", "option1d"] );
180         t( "Nth-child", "#form select:first option:nth-child(odd)", ["option1a", "option1c"] );
181         t( "Nth-child", "#form select:first option:nth-child(2n)", ["option1b", "option1d"] );
182         t( "Nth-child", "#form select:first option:nth-child(2n+1)", ["option1a", "option1c"] );
183         t( "Nth-child", "#form select:first option:nth-child(3n)", ["option1c"] );
184         t( "Nth-child", "#form select:first option:nth-child(3n+1)", ["option1a", "option1d"] );
185         t( "Nth-child", "#form select:first option:nth-child(3n+2)", ["option1b"] );
186         t( "Nth-child", "#form select:first option:nth-child(3n+3)", ["option1c"] );
187         t( "Nth-child", "#form select:first option:nth-child(3n-1)", ["option1b"] );
188         t( "Nth-child", "#form select:first option:nth-child(3n-2)", ["option1a", "option1d"] );
189         t( "Nth-child", "#form select:first option:nth-child(3n-3)", ["option1c"] );
190         t( "Nth-child", "#form select:first option:nth-child(3n+0)", ["option1c"] );
191         t( "Nth-child", "#form select:first option:nth-child(-n+3)", ["option1a", "option1b", "option1c"] );
192 });
193
194 test("attributes", function() {
195         expect(27);
196         t( "Attribute Exists", "a[title]", ["google"] );
197         t( "Attribute Exists", "*[title]", ["google"] );
198         t( "Attribute Exists", "[title]", ["google"] );
199         t( "Attribute Exists", "a[ title ]", ["google"] );
200         
201         t( "Attribute Equals", "a[rel='bookmark']", ["simon1"] );
202         t( "Attribute Equals", 'a[rel="bookmark"]', ["simon1"] );
203         t( "Attribute Equals", "a[rel=bookmark]", ["simon1"] );
204         t( "Attribute Equals", "a[href='http://www.google.com/']", ["google"] );
205         t( "Attribute Equals", "a[ rel = 'bookmark' ]", ["simon1"] );
206
207         document.getElementById("anchor2").href = "#2";
208         t( "href Attribute", "p a[href^=#]", ["anchor2"] );
209         t( "href Attribute", "p a[href*=#]", ["simon1", "anchor2"] );
210
211         t( "for Attribute", "form label[for]", ["label-for"] );
212         t( "for Attribute in form", "#form [for=action]", ["label-for"] );
213         
214         var results = ["hidden1","radio1","radio2"];
215         
216         if ( document.querySelectorAll ) {
217                 results = ["radio1", "radio2", "hidden1"];
218         }
219         
220         t( "Multiple Attribute Equals", "#form input[type='hidden'],#form input[type='radio']", results );
221         t( "Multiple Attribute Equals", "#form input[type=\"hidden\"],#form input[type='radio']", results );
222         t( "Multiple Attribute Equals", "#form input[type=hidden],#form input[type=radio]", results );
223         
224         t( "Attribute selector using UTF8", "span[lang=中文]", ["台北"] );
225         
226         t( "Attribute Begins With", "a[href ^= 'http://www']", ["google","yahoo"] );
227         t( "Attribute Ends With", "a[href $= 'org/']", ["mark"] );
228         t( "Attribute Contains", "a[href *= 'google']", ["google","groups"] );
229         
230         t("Select options via :selected", "#select1 option:selected", ["option1a"] );
231         t("Select options via :selected", "#select2 option:selected", ["option2d"] );
232         t("Select options via :selected", "#select3 option:selected", ["option3b", "option3c"] );
233         
234         t( "Grouped Form Elements", "input[name='foo[bar]']", ["hidden2"] );
235         
236         t( ":not() Existing attribute", "#form select:not([multiple])", ["select1", "select2"]);
237         t( ":not() Equals attribute", "#form select:not([name=select1])", ["select2", "select3"]);
238         t( ":not() Equals quoted attribute", "#form select:not([name='select1'])", ["select2", "select3"]);
239 });
240
241 test("pseudo (:) selectors", function() {
242         expect(34);
243         t( "First Child", "p:first-child", ["firstp","sndp"] );
244         t( "Last Child", "p:last-child", ["sap"] );
245         t( "Only Child", "a:only-child", ["simon1","anchor1","yahoo","anchor2"] );
246         t( "Empty", "ul:empty", ["firstUL"] );
247         t( "Enabled UI Element", "#form input:not([type=hidden]):enabled", ["text1","radio1","radio2","check1","check2","hidden2","name"] );
248         t( "Disabled UI Element", "#form input:disabled", ["text2"] );
249         t( "Checked UI Element", "#form input:checked", ["radio2","check1"] );
250         t( "Selected Option Element", "#form option:selected", ["option1a","option2d","option3b","option3c"] );
251         t( "Text Contains", "a:contains('Google')", ["google","groups"] );
252         t( "Text Contains", "a:contains('Google Groups')", ["groups"] );
253         t( "Element Preceded By", "p ~ div", ["foo","fx-queue","fx-tests", "moretests","tabindex-tests"] );
254         t( "Not", "a.blog:not(.link)", ["mark"] );
255         t( "Not - multiple", "#form option:not(:contains('Nothing'),#option1b,:selected)", ["option1c", "option1d", "option2b", "option2c", "option3d", "option3e"] );
256         //t( "Not - complex", "#form option:not([id^='opt']:nth-child(-n+3))", [ "option1a", "option1d", "option2d", "option3d", "option3e"] );
257         t( "Not - recursive", "#form option:not(:not(:selected))[id^='option3']", [ "option3b", "option3c"] );
258         
259         t( "nth Element", "p:nth(1)", ["ap"] );
260         t( "First Element", "p:first", ["firstp"] );
261         t( "Last Element", "p:last", ["first"] );
262         t( "Even Elements", "p:even", ["firstp","sndp","sap"] );
263         t( "Odd Elements", "p:odd", ["ap","en","first"] );
264         t( "Position Equals", "p:eq(1)", ["ap"] );
265         t( "Position Greater Than", "p:gt(0)", ["ap","sndp","en","sap","first"] );
266         t( "Position Less Than", "p:lt(3)", ["firstp","ap","sndp"] );
267         t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] );
268         t( "Is Visible", "#form input:visible", ["text1","text2","radio1","radio2","check1","check2","name"] );
269         t( "Is Hidden", "#form input:hidden", ["hidden1","hidden2"] );
270         
271         t( "Form element :input", "#form :input", ["text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "button", "area1", "select1", "select2", "select3"] );
272         t( "Form element :radio", "#form :radio", ["radio1", "radio2"] );
273         t( "Form element :checkbox", "#form :checkbox", ["check1", "check2"] );
274         t( "Form element :text", "#form :text", ["text1", "text2", "hidden2", "name"] );
275         t( "Form element :radio:checked", "#form :radio:checked", ["radio2"] );
276         t( "Form element :checkbox:checked", "#form :checkbox:checked", ["check1"] );
277         t( "Form element :checkbox:checked, :radio:checked", "#form :checkbox:checked, #form :radio:checked", ["check1", "radio2"] );
278
279         t( "Headers", ":header", ["header", "banner", "userAgent"] );
280         t( "Has Children - :has()", "p:has(a)", ["firstp","ap","en","sap"] );
281 });