aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojo/tests/_base/NodeList.html
blob: e3f08c5bf769cbb9824e4c7a35e5589a69fdb28d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
	"http://www.w3.org/TR/html4/strict.dtd">
<!--
	we use a strict-mode DTD to ensure that the box model is the same for these
	basic tests
-->
<html>
	<head>
		<style type="text/css">
			@import "../../resources/dojo.css";
			html, body {
				padding: 0px;
				margin: 0px;
				border: 0px;
			}

			#sq100 {
				background-color: black;
				color: white;
				position: absolute;
				left: 100px;
				top: 100px;
				width: 100px;
				height: 100px;
				border: 0px;
				padding: 0px;
				margin: 0px;
				overflow: hidden;
			}

		</style>
		<title>testing dojo.NodeList</title>
		<script type="text/javascript" src="../../dojo.js" 
			djConfig="isDebug: true, noFirebugLite: true"></script>
		<script type="text/javascript">
			dojo.require("doh.runner");
			dojo.addOnLoad(function(){
				var c = dojo.byId("c1");
				var t = dojo.byId("t"); 
				var s = dojo.byId("sq100"); 
				var fourElementNL = new dojo.NodeList(c, t, c, t);
				doh.register("t", 
					[
						// constructor tests
						function ctor(){
							var nl = new dojo.NodeList();
							nl.push(c);
							doh.is(1, nl.length);
						},
						function ctorArgs(){
							var nl = new dojo.NodeList(4);
							nl.push(c);
							doh.is(5, nl.length);
						},
						function ctorArgs2(){
							var nl = new dojo.NodeList(c, t);
							doh.is(2, nl.length);
							doh.is(c, nl[0]);
							doh.is(t, nl[1]);
						},
						// iteration and array tests
						function forEach(){
							var lastItem;
							var nl = new dojo.NodeList(c, t);
							nl.forEach(function(i){ lastItem = i; });
							doh.is(t, lastItem);

							var r = nl.forEach(function(i, idx, arr){
								doh.t(arr.constructor == dojo.NodeList);
								doh.is(2, arr.length);
							});
							doh.t(r.constructor == dojo.NodeList);
							doh.is(r, nl);
						},
						
						function indexOf(){
							doh.is(0, fourElementNL.indexOf(c));
							doh.is(1, fourElementNL.indexOf(t));
							doh.is(-1, fourElementNL.indexOf(null));
						},
						
						function lastIndexOf(){
							doh.is(2, fourElementNL.lastIndexOf(c));
							doh.is(3, fourElementNL.lastIndexOf(t));
							doh.is(-1, fourElementNL.lastIndexOf(null));
						},
						
						function every(){
							var ctr = 0;
							var ret = fourElementNL.every(function(){
								ctr++;
								return true;
							});
							doh.is(4, ctr);
							doh.t(ret);

							ctr = 0;
							var ret = fourElementNL.every(function(){
								ctr++;
								return false;
							});
							doh.is(1, ctr);
							doh.f(ret);
						},
						
						function some(){
							var ret = fourElementNL.some(function(){
								return true;
							});
							doh.t(ret);

							var ret = fourElementNL.some(function(i){
								return (i.id == "t");
							});
							doh.t(ret);
						},
						
						function map(){
							var ret = fourElementNL.map(function(){
								return true;
							});

							doh.is(ret, [true, true, true, true]);
							var cnt = 0;
							var ret = fourElementNL.map(function(){
								return cnt++;
							});
							// doh.is(ret, [0, 1, 2, 3]);

							doh.t(ret.constructor == dojo.NodeList);

							// make sure that map() returns a NodeList
							var sum = 0;
							fourElementNL.map(function(){ return 2; }).forEach( function(x){ sum += x; } );
							doh.is(sum, 8);
						},

						function slice(){
							var pnl = new dojo.NodeList(t, t, c);
							doh.is(2, pnl.slice(1).length);
							doh.is(3, pnl.length);
							doh.is(c, pnl.slice(-1)[0]);
							doh.is(2, pnl.slice(-2).length);
						},

						function splice(){
							var pnl = new dojo.NodeList(t, t, c);
							console.debug(pnl.splice(1));
							/*
							doh.is(2, pnl.splice(1).length);
							doh.is(1, pnl.length);
							pnl = new dojo.NodeList(t, t, c);
							doh.is(c, pnl.splice(-1)[0]);
							doh.is(2, pnl.length);
							pnl = new dojo.NodeList(t, t, c);
							doh.is(2, pnl.splice(-2).length);
							*/
						},

						function spliceInsert(){
							// insert 1
							var pnl = new dojo.NodeList(t, t, c);
							pnl.splice(0, 0, c);
							doh.is(4, pnl.length);
							doh.is(c, pnl[0]);

							// insert multiple
							pnl = new dojo.NodeList(t, t, c);
							pnl.splice(0, 0, c, s);
							doh.is(5, pnl.length);
							doh.is(c, pnl[0]);
							doh.is(s, pnl[1]);
							doh.is(t, pnl[2]);

							// insert multiple at offset
							pnl = new dojo.NodeList(t, t, c);
							pnl.splice(1, 0, c, s);
							doh.is(5, pnl.length);
							doh.is(t, pnl[0]);
							doh.is(c, pnl[1]);
							doh.is(s, pnl[2]);
							doh.is(t, pnl[3]);
						},

						function spliceDel(){
							// clobbery 1
							var pnl = new dojo.NodeList(c, t, s);
							pnl.splice(0, 1);
							doh.is(2, pnl.length);
							doh.is(t, pnl[0]);

							// clobber multiple
							pnl = new dojo.NodeList(c, t, s);
							pnl.splice(0, 2);
							doh.is(1, pnl.length);
							doh.is(s, pnl[0]);

							// ...at an offset
							pnl = new dojo.NodeList(c, t, s);
							pnl.splice(1, 1);
							doh.is(2, pnl.length);
							doh.is(c, pnl[0]);
							doh.is(s, pnl[1]);

						},

						function spliceInsertDel(){
							// clobbery 1
							var pnl = new dojo.NodeList(c, t, s);
							pnl.splice(1, 1, s);
							doh.is(3, pnl.length);
							doh.is(dojo.NodeList(c, s, s), pnl);

							pnl = new dojo.NodeList(c, t, s);
							pnl.splice(1, 2, s);
							doh.is(2, pnl.length);
							doh.is(dojo.NodeList(c, s), pnl);
						},

						// sub-search
						function query(){
							var pnl = new dojo.NodeList(t);
							doh.is(c, pnl.query("span")[0]);
							doh.is(t, dojo.query("body").query(":last-child")[0]);
							doh.is(c, dojo.query("body").query(":last-child")[1]);
							doh.is(1, pnl.query().length);
						},
						
						function filter(){
							doh.is(dojo.query("body :first-child").filter(":last-child")[0], c);
							doh.is(1, dojo.query("*").filter(function(n){ return (n.nodeName.toLowerCase() == "span"); }).length);

							var filterObj = {
								filterFunc: function(n){
									return (n.nodeName.toLowerCase() == "span");
								}
							};
							doh.is(1, dojo.query("*").filter(filterObj.filterFunc).length);
							doh.is(1, dojo.query("*").filter(filterObj.filterFunc, filterObj).length);
						},

						// layout DOM functions
						function coords(){
							var tnl = new dojo.NodeList(dojo.byId('sq100'))
							doh.t(dojo.isArray(tnl));
							doh.is(100, tnl.coords()[0].w);
							doh.is(100, tnl.coords()[0].h);
							doh.is(document.body.getElementsByTagName("*").length, dojo.query("body *").coords().length);
						},
						
						function styleGet(){
							// test getting
							var tnl = new dojo.NodeList(s);
							doh.is(1, tnl.style("opacity")[0]);
							tnl.push(t);
							dojo.style(t, "opacity", 0.5);
							doh.is(0.5, tnl.style("opacity").slice(-1)[0]);
							tnl.style("opacity", 1);
						},

						function styleSet(){
							// test setting
							var tnl = new dojo.NodeList(s, t);
							tnl.style("opacity", 0.5);
							doh.is(0.5, dojo.style(tnl[0], "opacity"));
							doh.is(0.5, dojo.style(tnl[1], "opacity"));
							// reset
							tnl.style("opacity", 1);
						},
						
						function style(){
							var tnl = new dojo.NodeList(s, t);
							tnl.style("opacity", 1);
							doh.is(1, tnl.style("opacity")[0]);
							dojo.style(t, "opacity", 0.5);
							doh.is(1.0, tnl.style("opacity")[0]);
							doh.is(0.5, tnl.style("opacity")[1]);
							// reset things
							tnl.style("opacity", 1);
						},

						function concat(){
							var spans = dojo.query("span");
							var divs = dojo.query("div");
							console.debug(spans.concat(divs));
							doh.is(spans.concat(divs).constructor, dojo.NodeList);
							doh.is((divs.length + spans.length), spans.concat(divs).length);
						},

						function concat2(t){
							var spans = dojo.query("span");
							var divs = dojo.query("div");
							doh.is(spans.concat([]).constructor, dojo.NodeList);
						},
						
						function place(t){
							var ih = "<div><span></span></div><span class='thud'><b>blah</b></span>";
							
							var tn = document.createElement("div");
							tn.innerHTML = ih;
							dojo.body().appendChild(tn);
							var nl = dojo.query("b", tn).place(tn, "first");
							doh.t(nl.constructor == dojo.NodeList);
							doh.is(1, nl.length);
							doh.is("b", nl[0].nodeName.toLowerCase());
							doh.is(tn, nl[0].parentNode);
							doh.is(tn.firstChild, nl[0]);
						},
						
						function orphan(t){
							var ih = "<div><span></span></div><span class='thud'><b>blah</b></span>";
							
							var tn = document.createElement("div");
							tn.innerHTML = ih;
							dojo.body().appendChild(tn);
							var nl = dojo.query("span", tn).orphan();
							doh.t(nl.constructor == dojo.NodeList);

							doh.is(2, nl.length);
							doh.is(1, tn.getElementsByTagName("*").length);

							tn.innerHTML = ih;
							var nl = dojo.query("*", tn).orphan("b");
							doh.is(1, nl.length);
							doh.is("blah", nl[0].innerHTML);
						},

						/*						
						// FIXME
						function adopt(t){
						},
						
						function addContent(t){
						},
						*/
						
						function connect(t){
							var ih = "<div><span></span></div><span class='thud'><button>blah</button></span>";
							
							var tn = document.createElement("div");
							tn.innerHTML = ih;
							dojo.body().appendChild(tn);

							var ctr = 0;
							var nl = dojo.query("button", tn).connect("onclick", function(){
								ctr++;
							});
							nl[0].click();
							doh.is(1, ctr);
							nl[0].click();
							nl[0].click();
							doh.is(3, ctr);
						}
					]
				);
				doh.run();
			});
		</script>
	</head>
	<body>
		<h1>testing dojo.NodeList</h1>
		<div id="sq100">
			100px square, abs
		</div>
		<div id="t">
			<span id="c1">c1</span>
		</div>
	</body>
</html>