dojo/tests/unit/dom-construct.js

Maintainability

71.71

Lines of code

796

Created with Raphaël 2.1.002550751002015-5-18

2015-5-18
Maintainability: 71.71

Created with Raphaël 2.1.002004006008002015-5-18

2015-5-18
Lines of Code: 796

Difficulty

52.14

Estimated Errors

8.08

Function weight

By Complexity

Created with Raphaël 2.1.0<anonymous>1

By SLOC

Created with Raphaël 2.1.0<anonymous>790
1
define([
2
    'intern!object',
3
    'intern/chai!assert',
4
    'sinon',
5
    '../../dom-construct',
6
    '../../dom-attr'
7
], function (registerSuite, assert, sinon, domConstruct, domAttr) {
8
    var baseId = "dom-construct",
9
        uniqueId = 0;
10
 
11
    function getId() {
12
        return baseId + uniqueId++;
13
    }
14
 
15
    registerSuite({
16
        name: 'dojo/dom-construct',
17
 
18
        "toDom": (function () {
19
            return {
20
                "returns expected node when one requested": function () {
21
                    //arrange
22
                    var rawHTML = "<div></div>";
23
 
24
                    //act
25
                    var result = domConstruct.toDom(rawHTML);
26
 
27
                    //assert
28
                    assert.equal(result.nodeName.toLowerCase(), "div");
29
 
30
                },
31
                "returns expected result when tree requested": function () {
32
                    //arrange
33
                    var parent = document.createElement("div"),
34
                        child = document.createElement("span");
35
 
36
                    parent.appendChild(child);
37
 
38
                    //act
39
                    var result = domConstruct.toDom(parent.outerHTML);
40
 
41
                    //assert
42
                    assert.equal(result.outerHTML, result.outerHTML);
43
                },
44
                "returns expected result when forest requested": function () {
45
                    //arrange
46
                    var parent = document.createElement("div"),
47
                        children =
48
                        [
49
                            document.createElement("span"),
50
                            document.createElement("span")
51
                        ];
52
 
53
                    for (var i in children) {
54
                        parent.appendChild(children[i]);
55
                    }
56
 
57
                    //act
58
                    var result = domConstruct.toDom(parent.innerHTML);
59
 
60
                    //assert
61
                    assert.equal(result.outerHTML, result.innerHTML);
62
                },
63
                "able to create <option/> tag, which must be created in context of <select/>": function () {
64
                    //arrange
65
                    var node = "<option></option>";
66
 
67
                    //act
68
                    var result = domConstruct.toDom(node);
69
 
70
                    //assert
71
                    assert.equal(result.nodeName.toLowerCase(), "option");
72
 
73
                },
74
                "able to create <tbody/> tag, which must be created in context of <table/>": function () {
75
                    //arrange
76
                    var node = "<tbody></tbody>";
77
 
78
                    //act
79
                    var result = domConstruct.toDom(node);
80
 
81
                    //assert
82
                    assert.equal(result.nodeName.toLowerCase(), "tbody");
83
 
84
                },
85
                "able to create <thead/> tag, which must be created in context of <table/>": function () {
86
                    //arrange
87
                    var node = "<thead></thead>";
88
 
89
                    //act
90
                    var result = domConstruct.toDom(node);
91
 
92
                    //assert
93
                    assert.equal(result.nodeName.toLowerCase(), "thead");
94
 
95
                },
96
                "able to create <tfoot/> tag, which must be created in context of <table/>": function () {
97
                    //arrange
98
                    var node = "<tfoot></tfoot>";
99
 
100
                    //act
101
                    var result = domConstruct.toDom(node);
102
 
103
                    //assert
104
                    assert.equal(result.nodeName.toLowerCase(), "tfoot");
105
 
106
                },
107
                "able to create <tr/> tag, which must be created in context of <table><tbody/></table>": function () {
108
                    //arrange
109
                    var node = "<tr></tr>";
110
 
111
                    //act
112
                    var result = domConstruct.toDom(node);
113
 
114
                    //assert
115
                    assert.equal(result.nodeName.toLowerCase(), "tr");
116
 
117
                },
118
                "able to create <td/> tag, which must be created in context of <table><tbody><tr/></tbody></table>": function () {
119
                    //arrange
120
                    var node = "<td></td>";
121
 
122
                    //act
123
                    var result = domConstruct.toDom(node);
124
 
125
                    //assert
126
                    assert.equal(result.nodeName.toLowerCase(), "td");
127
 
128
                },
129
                "able to create <th/> tag, which must be created in context of <table><thead><tr/></thead></table>": function () {
130
                    //arrange
131
                    var node = "<th></th>";
132
 
133
                    //act
134
                    var result = domConstruct.toDom(node);
135
 
136
                    //assert
137
                    assert.equal(result.nodeName.toLowerCase(), "th");
138
 
139
                },
140
                "able to create <legend/> tag, which must be created in context of <fieldset/>": function () {
141
                    //arrange
142
                    var node = "<legend></legend>";
143
 
144
                    //act
145
                    var result = domConstruct.toDom(node);
146
 
147
                    //assert
148
                    assert.equal(result.nodeName.toLowerCase(), "legend");
149
 
150
                },
151
                "able to create <caption/> tag, which must be created in context of <table/>": function () {
152
                    //arrange
153
                    var node = "<caption></caption>";
154
 
155
                    //act
156
                    var result = domConstruct.toDom(node);
157
 
158
                    //assert
159
                    assert.equal(result.nodeName.toLowerCase(), "caption");
160
 
161
                },
162
                "able to create <colgroup/> tag, which must be created in context of <table/>": function () {
163
                    //arrange
164
                    var node = "<colgroup></colgroup>";
165
 
166
                    //act
167
                    var result = domConstruct.toDom(node);
168
 
169
                    //assert
170
                    assert.equal(result.nodeName.toLowerCase(), "colgroup");
171
 
172
                },
173
                "able to create <col/> tag, which must be created in context of <table><colgroup/></table>": function () {
174
                    //arrange
175
                    var node = "<col></col>";
176
 
177
                    //act
178
                    var result = domConstruct.toDom(node);
179
 
180
                    //assert
181
                    assert.equal(result.nodeName.toLowerCase(), "col");
182
 
183
                },
184
                "able to create <li/> tag, which must be created in context of <ul/>": function () {
185
                    //arrange
186
                    var node = "<li></li>";
187
 
188
                    //act
189
                    var result = domConstruct.toDom(node);
190
 
191
                    //assert
192
                    assert.equal(result.nodeName.toLowerCase(), "li");
193
 
194
                },
195
            };
196
        })(),
197
        "place": (function () {
198
            return {
199
                "when first arg is rawHTML, then it is converted to DOM and placed": function () {
200
                    //arrange
201
                    var container = document.createElement("div"),
202
                        child = document.createElement("span"),
203
                        reference = document.createElement("h1");
204
 
205
                    container.appendChild(child);
206
 
207
                    //act
208
                    domConstruct.place(container.outerHTML, reference, "only");
209
 
210
                    //assert
211
                    assert.equal(reference.firstElementChild.nodeName, container.nodeName);
212
                    assert.equal(reference.firstElementChild.firstElementChild.nodeName, child.nodeName);
213
                },
214
                "when first arg is a node id, then the correct node is placed": function () {
215
                    //arrange
216
                    var node = document.createElement("div"),
217
                        reference = document.createElement("h1"),
218
                        nodeId = getId();
219
 
220
                    node.id = nodeId;
221
                    document.body.appendChild(node);
222
 
223
                    //act
224
                    domConstruct.place(nodeId, reference, "only");
225
 
226
                    //assert
227
                    assert.equal(reference.firstElementChild.nodeName, node.nodeName);
228
                },
229
                "when first arg is a node, then it is placed": function () {
230
                    //arrange
231
                    var node = document.createElement("div"),
232
                        reference = document.createElement("h1");
233
 
234
                    document.body.appendChild(node);
235
 
236
                    //act
237
                    domConstruct.place(node, reference, "only");
238
 
239
                    //assert
240
                    assert.equal(reference.firstElementChild.nodeName, node.nodeName);
241
                },
242
                "when second arg is a string, then the node with that id is used as reference": function () {
243
                    //arrange
244
                    var node = document.createElement("div"),
245
                        reference = document.createElement("h1"),
246
                        referenceId = getId();
247
 
248
                    document.body.appendChild(reference);
249
                    reference.id = referenceId;
250
 
251
                    //act
252
                    domConstruct.place(node, referenceId, "only");
253
 
254
                    //assert
255
                    assert.equal(reference.firstElementChild.nodeName, node.nodeName);
256
                },
257
                "when second arg is a node, then it is used as the reference node": function () {
258
                    //arrange
259
                    var node = document.createElement("div"),
260
                        reference = document.createElement("h1");
261
 
262
                    document.body.appendChild(reference);
263
 
264
                    //act
265
                    domConstruct.place(node, reference, "only");
266
 
267
                    //assert
268
                    assert.equal(reference.firstElementChild.nodeName, node.nodeName);
269
                },
270
                "when third argument is 'before', then the first arg is placed before the second": function () {
271
                    //arrange
272
                    var node = document.createElement("div"),
273
                        reference = document.createElement("h1");
274
 
275
                    document.body.appendChild(reference);
276
 
277
                    //act
278
                    domConstruct.place(node, reference, "before");
279
 
280
                    //assert
281
                    assert.equal(reference.previousSibling.nodeName, node.nodeName);
282
                },
283
                "when third argument is 'after', then the first arg is placed after the second": function () {
284
                    //arrange
285
                    var node = document.createElement("div"),
286
                        reference = document.createElement("h1");
287
 
288
                    document.body.appendChild(reference);
289
 
290
                    //act
291
                    domConstruct.place(node, reference, "after");
292
 
293
                    //assert
294
                    assert.equal(reference.nextSibling.nodeName, node.nodeName);
295
                },
296
                "when third argument is 'replace', then the first arg replaces the second": function () {
297
                    //arrange
298
                    var container = document.createElement("div"),
299
                        node = document.createElement("span"),
300
                        reference = document.createElement("h1");
301
 
302
                    document.body.appendChild(container);
303
                    container.appendChild(reference);
304
 
305
                    //act
306
                    domConstruct.place(node, reference, "replace");
307
 
308
                    //assert
309
                    assert.equal(container.firstElementChild.nodeName, node.nodeName);
310
                },
311
                "when third argument is 'only', then the first arg is placed as only content of second": function () {
312
                    //arrange
313
                    var node = document.createElement("span"),
314
                        reference = document.createElement("h1"),
315
                        children =
316
                        [
317
                            document.createElement("button"),
318
                            document.createElement("button"),
319
                            document.createElement("button")
320
                        ];
321
 
322
                    for (var i in children) {
323
                        reference.appendChild(children[i]);
324
                    }
325
 
326
                    document.body.appendChild(reference);
327
 
328
                    //act
329
                    domConstruct.place(node, reference, "only");
330
 
331
                    //assert
332
                    assert.equal(reference.firstElementChild.nodeName, node.nodeName);
333
                    assert.equal(reference.children.length, 1);
334
                },
335
                "when third argument is 'first', then the first arg is placed as first child of second": function () {
336
                    //arrange
337
                    var node = document.createElement("span"),
338
                        reference = document.createElement("h1"),
339
                        children =
340
                        [
341
                            document.createElement("button"),
342
                            document.createElement("button"),
343
                            document.createElement("button")
344
                        ];
345
 
346
                    for (var i in children) {
347
                        reference.appendChild(children[i]);
348
                    }
349
 
350
                    document.body.appendChild(reference);
351
 
352
                    //act
353
                    domConstruct.place(node, reference, "first");
354
 
355
                    //assert
356
                    assert.equal(reference.firstElementChild.nodeName, node.nodeName);
357
                    assert.equal(reference.children.length, children.length + 1);
358
                },
359
                "when third argument is 'last', then the first arg is placed as last child of second": function () {
360
                    //arrange
361
                    var node = document.createElement("span"),
362
                        reference = document.createElement("h1"),
363
                        children =
364
                        [
365
                            document.createElement("button"),
366
                            document.createElement("button"),
367
                            document.createElement("button")
368
                        ];
369
 
370
                    for (var i in children) {
371
                        reference.appendChild(children[i]);
372
                    }
373
 
374
                    document.body.appendChild(reference);
375
 
376
                    //act
377
                    domConstruct.place(node, reference, "last");
378
 
379
                    //assert
380
                    assert.equal(reference.lastElementChild.nodeName, node.nodeName);
381
                    assert.equal(reference.children.length, children.length + 1);
382
                },
383
                "when third argument is a number, then the first arg is placed as the correct child of second": function () {
384
                    //arrange
385
                    var node = document.createElement("span"),
386
                        reference = document.createElement("h1"),
387
                        children =
388
                        [
389
                            document.createElement("button"),
390
                            document.createElement("button"),
391
                            document.createElement("button")
392
                        ],
393
                        position = 2;
394
 
395
                    for (var i in children) {
396
                        reference.appendChild(children[i]);
397
                    }
398
 
399
                    document.body.appendChild(reference);
400
 
401
                    //act
402
                    domConstruct.place(node, reference, position);
403
 
404
                    //assert
405
                    assert.equal(reference.children[position].nodeName, node.nodeName);
406
                    assert.equal(reference.children.length, children.length + 1);
407
                },
408
                "when third argument is a number and the reference node is empty, then the first arg is placed as the first child of second": function () {
409
                    //arrange
410
                    var node = document.createElement("span"),
411
                        reference = document.createElement("h1"),
412
                        position = 2;
413
 
414
                    document.body.appendChild(reference);
415
 
416
                    //act
417
                    domConstruct.place(node, reference, position);
418
 
419
                    //assert
420
                    assert.equal(reference.firstElementChild.nodeName, node.nodeName);
421
                    assert.equal(reference.children.length, 1);
422
                },
423
                "when third argument is a number that is greater than the number of children in the reference, then the first arg is placed as the first child of second": function () {
424
                    //arrange
425
                    var node = document.createElement("span"),
426
                        reference = document.createElement("h1"),
427
                        children =
428
                        [
429
                            document.createElement("button"),
430
                            document.createElement("button"),
431
                            document.createElement("button")
432
                        ],
433
                        position = children + 42;
434
 
435
                    for (var i in children) {
436
                        reference.appendChild(children[i]);
437
                    }
438
 
439
                    document.body.appendChild(reference);
440
 
441
                    //act
442
                    domConstruct.place(node, reference, position);
443
 
444
                    //assert
445
                    assert.equal(reference.lastElementChild.nodeName, node.nodeName);
446
                    assert.equal(reference.children.length, children.length + 1);
447
                }
448
            };
449
        })(),
450
        "create": (function () {
451
            return {
452
                "when first arg is a string, then correct element type is created": function () {
453
                    //arrange
454
                    var tagType = "div";
455
 
456
                    //act
457
                    var result = domConstruct.create(tagType);
458
 
459
                    //assert
460
                    assert.equal(result.nodeName.toLowerCase(), tagType);
461
 
462
                },
463
                "when attributes provided, then dojo/dom-attr:set called with correct args": function () {
464
                    //arrange
465
                    var tag = document.createElement("div"),
466
                        attrs = { foo: "bar", baz: "buz" },
467
                        mock = sinon.spy(domAttr, "set");
468
 
469
                    //act
470
                    domConstruct.create(tag, attrs);
471
 
472
                    //assert
473
                    assert.isTrue(mock.calledWith(tag, attrs));
474
 
475
                    mock.restore();
476
                },
477
                "when reference node provided, then dojo/dom-construct::place() called with correct args": function () {
478
                    //arrange
479
                    var tag = document.createElement("div"),
480
                        reference = document.createElement("h1"),
481
                        position = "only",
482
                        mock = sinon.spy(domConstruct, "place");
483
 
484
                    //act
485
                    domConstruct.create(tag, null, reference, position);
486
 
487
                    //assert
488
                    assert.isTrue(mock.calledWith(tag, reference, position));
489
 
490
                    mock.restore();
491
                },
492
                "when reference node not part of global document, then new element created in correct context": function () {
493
                    //arrange
494
                    var iframe = document.createElement("iframe");
495
 
496
                    document.body.appendChild(iframe);
497
                    tagType = "div",
498
                    reference = iframe.contentDocument.createElement("h1"),
499
                    position = "only";
Column: 32 "Expected an assignment or function call and instead saw an expression."
500
 
501
                    //act
502
                    var result = domConstruct.create(tagType, null, reference, position);
503
 
504
                    //assert
505
                    assert.equal(result.ownerDocument, iframe.contentDocument);
506
                }
507
            };
508
        })(),
509
        "empty": (function () {
510
            return {
511
                "when given a node's id, then the related node is emptied": function () {
512
                    //arrange
513
                    var container = document.createElement("div"),
514
                        child = document.createElement("button"),
515
                        id = getId();
516
 
517
                    container.id = id;
518
                    container.appendChild(child);
519
                    document.body.appendChild(container);
520
 
521
                    //act
522
                    domConstruct.empty(id);
523
 
524
                    //assert
525
                    assert.equal(container.children.length, 0);
526
 
527
                },
528
                "when given a node, then it is emptied": function () {
529
                    //arrange
530
                    var container = document.createElement("div"),
531
                        child = document.createElement("button");
532
 
533
                    container.appendChild(child);
534
 
535
                    //act
536
                    domConstruct.empty(container);
537
 
538
                    //assert
539
                    assert.equal(container.children.length, 0);
540
                },
541
                "when given an svg element, then it is emptied": function () {
542
                    //arrange
543
                    var container = document.createElement("div"),
544
                        svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
545
 
546
                    svg.innerHTML = "<rect></rect>";
547
 
548
                    //act
549
                    domConstruct.empty(svg);
550
 
551
                    //assert
552
                    assert.equal(svg.children.length, 0);
553
                }
554
            };
555
        })(),
556
        "destroy": (function () {
557
            return {
558
                "when given a node's id, then it is removed": function () {
559
                    //arrange
560
                    var node = document.createElement("h1"),
561
                        container = document.createElement("div"),
562
                        id = getId();
563
 
564
                    node.id = id;
565
                    document.body.appendChild(container);
566
                    container.appendChild(node);
567
 
568
                    //act
569
                    domConstruct.destroy(id);
570
 
571
                    //assert
572
                    assert.equal(container.children.length, 0);
573
                },
574
                "when given a node, then it is removed": function () {
575
                    //arrange
576
                    var node = document.createElement("h1"),
577
                        container = document.createElement("div");
578
 
579
                    document.body.appendChild(container);
580
                    container.appendChild(node);
581
 
582
                    //act
583
                    domConstruct.destroy(node);
584
 
585
                    //assert
586
                    assert.equal(container.children.length, 0);
587
                }
588
            };
589
        })(),
590
        "validation tests": (function () {
591
            var TEST_POSITION = 2;
592
            var lastHtml = "<div id='last'><h1>First</h1></div>";
593
            var firstHtml = "<div id='first'><h1>First</h1></div>";
594
            var beforeHtml = "<div id='before'></div>";
595
            var afterHtml = "<div id='after'></div>";
596
            var replaceHtml = "<div id='replace'></div>";
597
            var onlyHtml = "<div id='only'><h1>first</h1></div>";
598
 
599
            var posHtml = "<div id='pos'><div>first</div><div>second</div><div>last</div></div>";
600
 
601
            var HTMLString = "<div id=\"test\">Test</div>";
602
 
603
            var nodes = {};
604
            var child;
605
            var fragment;
606
 
607
            function clearTarget() {
608
                document.body.innerHTML = "";
609
                child = domConstruct.toDom(HTMLString);
610
                nodes.last = domConstruct.toDom(lastHtml);
611
                nodes.first = domConstruct.toDom(firstHtml);
612
                nodes.before = domConstruct.toDom(beforeHtml);
613
                nodes.after = domConstruct.toDom(afterHtml);
614
                nodes.replace = domConstruct.toDom(replaceHtml);
615
                nodes.only = domConstruct.toDom(onlyHtml);
616
                nodes.pos = domConstruct.toDom(posHtml);
617
                document.body.appendChild(nodes.last);
618
                document.body.appendChild(nodes.first);
619
                document.body.appendChild(nodes.before);
620
                document.body.appendChild(nodes.after);
621
                document.body.appendChild(nodes.replace);
622
                document.body.appendChild(nodes.only);
623
                document.body.appendChild(nodes.pos);
624
                fragment = document.createDocumentFragment();
625
                fragment.appendChild(document.createElement("div"));
626
                fragment.appendChild(document.createElement("div"));
627
                fragment.appendChild(document.createElement("div"));
628
            }
629
 
630
            function elementsEqual(elementA, elementB) {
631
                return elementA.id === elementB.id &&
632
                    elementA.tagName === elementB.tagName &&
633
                    elementA.innerHTML === elementB.innerHTML;
634
            }
635
 
636
            return {
637
                beforeEach: clearTarget,
638
                "last - place html string with node reference": function () {
639
                    domConstruct.place(HTMLString, nodes.last);
640
                    assert.isTrue(elementsEqual(child, nodes.last.lastChild));
641
                },
642
                "last - place html string with id reference": function () {
643
                    domConstruct.place(HTMLString, "last");
644
                    assert.isTrue(elementsEqual(child, nodes.last.lastChild));
645
                },
646
                "last - place html string with fragment reference": function () {
647
                    domConstruct.place(HTMLString, fragment);
648
                    assert.isTrue(elementsEqual(child, fragment.lastChild));
649
                },
650
                "last - place node with node reference": function () {
651
                    domConstruct.place(child, nodes.last);
652
                    assert.equal(nodes.last.lastChild, child);
653
                },
654
                "last - place node with id reference": function () {
655
                    domConstruct.place(child, "last");
656
                    assert.equal(nodes.last.lastChild, child);
657
                },
658
                "last - place node with fragment reference": function () {
659
                    domConstruct.place(child, fragment);
660
                    assert.equal(fragment.lastChild, child);
661
                },
662
                "first - place html string with node reference": function () {
663
                    domConstruct.place(HTMLString, nodes.first, "first");
664
                    assert.isTrue(elementsEqual(child, nodes.first.firstChild));
665
                },
666
                "first - place html string with id reference": function () {
667
                    domConstruct.place(HTMLString, "first", "first");
668
                    assert.isTrue(elementsEqual(child, nodes.first.firstChild));
669
                },
670
                "first - place html string with fragment reference": function () {
671
                    domConstruct.place(HTMLString, fragment, "first");
672
                    assert.isTrue(elementsEqual(child, fragment.firstChild));
673
                },
674
                "first - place node with node reference": function () {
675
                    domConstruct.place(child, nodes.first, "first");
676
                    assert.equal( nodes.first.firstChild, child);
677
                },
678
                "first - place node with id reference": function () {
679
                    domConstruct.place(child, "first", "first");
680
                    assert.equal(nodes.first.firstChild, child);
681
                },
682
                "first - place node with fragment reference": function () {
683
                    domConstruct.place(child, fragment, "first");
684
                    assert.equal(fragment.firstChild, child);
685
                },
686
                "before - place html string with node reference": function () {
687
                    domConstruct.place(HTMLString, nodes.before, "before");
688
                    assert.isTrue(elementsEqual(child, nodes.before.previousSibling));
689
                },
690
                "before - place html string with id reference": function () {
691
                    domConstruct.place(HTMLString, "before", "before");
692
                    assert.isTrue(elementsEqual(child, nodes.before.previousSibling));
693
                },
694
                "before - place node with node reference": function () {
695
                    domConstruct.place(child, nodes.before, "before");
696
                    assert.equal(nodes.before.previousSibling, child);
697
                },
698
                "before - place node with id reference": function () {
699
                    domConstruct.place(child, "before", "before");
700
                    assert.equal(nodes.before.previousSibling, child);
701
                },
702
                "after - place html string with node reference": function () {
703
                    domConstruct.place(HTMLString, nodes.after, "after");
704
                    assert.isTrue(elementsEqual(child, nodes.after.nextSibling));
705
                },
706
                "after - place html string with id reference": function () {
707
                    domConstruct.place(HTMLString, "after", "after");
708
                    assert.isTrue(elementsEqual(child, nodes.after.nextSibling));
709
                },
710
                "after - place node with node reference": function () {
711
                    domConstruct.place(child, nodes.after, "after");
712
                    assert.equal(nodes.after.nextSibling, child);
713
                },
714
                "after - place node with id reference": function () {
715
                    domConstruct.place(child, "after", "after");
716
                    assert.equal(nodes.after.nextSibling, child);
717
                },
718
                "replace - place html string with node reference": function () {
719
                    domConstruct.place(HTMLString, nodes.replace, "replace");
720
                    assert.equal(undefined, document.getElementById("replace"));
721
                    assert.isTrue(elementsEqual(child, document.getElementById('test')));
722
                },
723
                "replace - place html string with id reference": function () {
724
                    domConstruct.place(HTMLString, "replace", "replace");
725
                    assert.equal(undefined, document.getElementById("replace"));
726
                    assert.isTrue(elementsEqual(child, document.getElementById('test')));
727
                },
728
                "replace - place node with node reference": function () {
729
                    domConstruct.place(child, nodes.replace, "replace");
730
                    assert.equal(document.getElementById("replace"), undefined);
731
                    assert.equal(child, document.getElementById('test'));
732
                },
733
                "replace - place node with id reference": function () {
734
                    domConstruct.place(child, "replace", "replace");
735
                    assert.equal(undefined, document.getElementById("replace"));
736
                    assert.equal(document.getElementById('test'), child);
737
                },
738
                "only - place html string with node reference": function () {
739
                    domConstruct.place(HTMLString, nodes.only, "only");
740
                    assert.equal( 1, nodes.only.children.length);
741
                    assert.isTrue(elementsEqual(child, nodes.only.firstChild));
742
                },
743
                "only - place html string with id reference": function () {
744
                    domConstruct.place(HTMLString, "only", "only");
745
                    assert.equal(1, nodes.only.children.length);
746
                    assert.isTrue(elementsEqual(child, nodes.only.firstChild));
747
                },
748
                setUp: clearTarget,
749
                "only - place html string with fragment reference": function () {
750
                    domConstruct.place(HTMLString, fragment, "only");
751
                    assert.equal(1, fragment.childNodes.length);
752
                    assert.isTrue(elementsEqual(child, fragment.firstChild));
753
                },
754
                "only - place node with node reference": function () {
755
                    domConstruct.place(child, nodes.only, "only");
756
                    assert.equal(nodes.only.firstChild, child);
757
                    assert.equal(nodes.only.children.length, 1);
758
                },
759
                "only - place node with id reference": function () {
760
                    domConstruct.place(child, "only", "only");
761
                    assert.equal(nodes.only.firstChild, child);
762
                    assert.equal(nodes.only.children.length, 1);
763
                },
764
                "only - place node with fragment reference": function () {
765
                    domConstruct.place(child, fragment, "only");
766
                    assert.equal(1, fragment.childNodes.length);
767
                    assert.equal(fragment.firstChild, child);
768
                },
769
                "pos - place html string with node reference": function () {
770
                    domConstruct.place(HTMLString, nodes.pos, TEST_POSITION);
771
                    assert.isTrue(elementsEqual(child, nodes.pos.children[TEST_POSITION]));
772
                },
773
                "pos - place html string with id reference": function () {
774
                    domConstruct.place(HTMLString, "pos", TEST_POSITION);
775
                    assert.isTrue(elementsEqual(child, nodes.pos.children[TEST_POSITION]));
776
                },
777
                "pos - place html string with fragment reference": function () {
778
                    domConstruct.place(HTMLString, fragment, TEST_POSITION);
779
                    assert.isTrue(elementsEqual(child, fragment.childNodes[TEST_POSITION]));
780
                },
781
                "pos - place node with node reference": function () {
782
                    domConstruct.place(child, nodes.pos, TEST_POSITION);
783
                    assert.equal(nodes.pos.children[TEST_POSITION], child);
784
                },
785
                "pos - place node with id reference": function () {
786
                    domConstruct.place(child, "pos", TEST_POSITION);
787
                    assert.equal(nodes.pos.children[TEST_POSITION], child);
788
                },
789
                "pos - place node with fragment reference": function () {
790
                    domConstruct.place(child, fragment, TEST_POSITION);
791
                    assert.equal(fragment.childNodes[TEST_POSITION], child);
792
                }
793
            }
Column: 14 "Missing semicolon."
794
        })()
795
    });
796
});