-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathtraversing.spec.ts
1651 lines (1398 loc) · 57 KB
/
traversing.spec.ts
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import cheerio from '../../src';
import { Cheerio } from '../cheerio.js';
import type { CheerioAPI } from '../load.js';
import { AnyNode, Element, Text, isText } from 'domhandler';
import {
food,
fruits,
eleven,
drinks,
text,
forms,
mixedText,
vegetables,
} from '../__fixtures__/fixtures.js';
function getText(el: Cheerio<Element>) {
if (!el.length) return undefined;
const [firstChild] = el[0].childNodes;
return isText(firstChild) ? firstChild.data : undefined;
}
describe('$(...)', () => {
let $: CheerioAPI;
beforeEach(() => {
$ = cheerio.load(fruits);
});
describe('.load', () => {
it('should throw a TypeError if given invalid input', () => {
expect(() => {
(cheerio.load as any)();
}).toThrow('cheerio.load() expects a string');
});
});
describe('.find', () => {
it('() : should find nothing', () => {
expect($('ul').find()).toHaveLength(0);
});
it('(single) : should find one descendant', () => {
expect($('#fruits').find('.apple')[0].attribs).toHaveProperty(
'class',
'apple'
);
});
// #1679 - text tags not filtered
it('(single) : should filter out text nodes', () => {
const $root = $(`<html>\n${fruits.replace(/></g, '>\n<')}\n</html>`);
expect($root.find('.apple')[0].attribs).toHaveProperty('class', 'apple');
});
it('(many) : should find all matching descendant', () => {
expect($('#fruits').find('li')).toHaveLength(3);
});
it('(many) : should merge all selected elems with matching descendants', () => {
expect($('#fruits, #food', food).find('.apple')).toHaveLength(1);
});
it('(invalid single) : should return empty if cant find', () => {
expect($('ul').find('blah')).toHaveLength(0);
});
it('(invalid single) : should query descendants only', () => {
expect($('#fruits').find('ul')).toHaveLength(0);
});
it('should return empty if search already empty result', () => {
expect($('#not-fruits').find('li')).toHaveLength(0);
});
it('should lowercase selectors', () => {
expect($('#fruits').find('LI')).toHaveLength(3);
});
it('should query immediate descendant only', () => {
const q = cheerio.load('<foo><bar><bar></bar><bar></bar></bar></foo>');
expect(q('foo').find('> bar')).toHaveLength(1);
});
it('should find siblings', () => {
const q = cheerio.load('<p class=a><p class=b></p>');
expect(q('.a').find('+.b')).toHaveLength(1);
expect(q('.a').find('~.b')).toHaveLength(1);
expect(q('.a').find('+.a')).toHaveLength(0);
expect(q('.a').find('~.a')).toHaveLength(0);
});
it('should query case-sensitively when in xml mode', () => {
const q = cheerio.load('<caseSenSitive allTheWay>', { xml: true });
expect(q('caseSenSitive')).toHaveLength(1);
expect(q('[allTheWay]')).toHaveLength(1);
expect(q('casesensitive')).toHaveLength(0);
expect(q('[alltheway]')).toHaveLength(0);
});
it('should throw an Error if given an invalid selector', () => {
expect(() => {
$('#fruits').find(':bah');
}).toThrow('Unknown pseudo-class :bah');
});
describe('(cheerio object) :', () => {
it('returns only those nodes contained within the current selection', () => {
const q = cheerio.load(food);
const $selection = q('#fruits').find(q('li'));
expect($selection).toHaveLength(3);
expect($selection[0]).toBe(q('.apple')[0]);
expect($selection[1]).toBe(q('.orange')[0]);
expect($selection[2]).toBe(q('.pear')[0]);
});
it('returns only those nodes contained within any element in the current selection', () => {
const q = cheerio.load(food);
const $selection = q('.apple, #vegetables').find(q('li'));
expect($selection).toHaveLength(2);
expect($selection[0]).toBe(q('.carrot')[0]);
expect($selection[1]).toBe(q('.sweetcorn')[0]);
});
});
describe('(node) :', () => {
it('returns node when contained within the current selection', () => {
const q = cheerio.load(food);
const $selection = q('#fruits').find(q('.apple')[0]);
expect($selection).toHaveLength(1);
expect($selection[0]).toBe(q('.apple')[0]);
});
it('returns node when contained within any element the current selection', () => {
const q = cheerio.load(food);
const $selection = q('#fruits, #vegetables').find(q('.carrot')[0]);
expect($selection).toHaveLength(1);
expect($selection[0]).toBe(q('.carrot')[0]);
});
it('does not return node that is not contained within the current selection', () => {
const q = cheerio.load(food);
const $selection = q('#fruits').find(q('.carrot')[0]);
expect($selection).toHaveLength(0);
});
});
});
describe('.children', () => {
it('() : should get all children', () => {
expect($('ul').children()).toHaveLength(3);
});
it('() : should skip text nodes', () => {
expect($(mixedText).children()).toHaveLength(0);
});
it('() : should return children of all matched elements', () => {
expect($('ul ul', food).children()).toHaveLength(5);
});
it('(selector) : should return children matching selector', () => {
const { attribs } = $('ul').children('.orange')[0];
expect(attribs).toHaveProperty('class', 'orange');
});
it('(invalid selector) : should return empty', () => {
expect($('ul').children('.lulz')).toHaveLength(0);
});
it('should only match immediate children, not ancestors', () => {
expect($(food).children('li')).toHaveLength(0);
});
});
describe('.contents', () => {
beforeEach(() => {
$ = cheerio.load(text);
});
it('() : should get all contents', () => {
expect($('p').contents()).toHaveLength(5);
});
it('() : should skip text nodes', () => {
expect($(mixedText).contents()).toHaveLength(2);
});
it('() : should include text nodes', () => {
expect($('p').contents().first()[0].type).toBe('text');
});
it('() : should include comment nodes', () => {
expect($('p').contents().last()[0].type).toBe('comment');
});
});
describe('.next', () => {
it('() : should return next element', () => {
const { attribs } = $('.orange').next()[0];
expect(attribs).toHaveProperty('class', 'pear');
});
it('() : should skip text nodes', () => {
expect($(mixedText).next()[0]).toHaveProperty('name', 'b');
});
it('(no next) : should return empty for last child', () => {
expect($('.pear').next()).toHaveLength(0);
});
it('(next on empty object) : should return empty', () => {
expect($('.banana').next()).toHaveLength(0);
});
it('() : should operate over all elements in the selection', () => {
expect($('.apple, .orange', food).next()).toHaveLength(2);
});
it('() : should return elements in order', () => {
const result = cheerio.load(eleven)('.red').next();
expect(result).toHaveLength(2);
expect(result.eq(0).text()).toBe('Six');
expect(result.eq(1).text()).toBe('Ten');
});
it('should reject elements that violate the filter', () => {
expect($('.apple').next('.non-existent')).toHaveLength(0);
});
it('should accept elements that satisify the filter', () => {
expect($('.apple').next('.orange')).toHaveLength(1);
});
describe('(selector) :', () => {
it('should reject elements that violate the filter', () => {
expect($('.apple').next('.non-existent')).toHaveLength(0);
});
it('should accept elements that satisify the filter', () => {
expect($('.apple').next('.orange')).toHaveLength(1);
});
});
});
describe('.nextAll', () => {
it('() : should return all following siblings', () => {
const elems = $('.apple').nextAll();
expect(elems).toHaveLength(2);
expect(elems[0].attribs).toHaveProperty('class', 'orange');
expect(elems[1].attribs).toHaveProperty('class', 'pear');
});
it('(no next) : should return empty for last child', () => {
expect($('.pear').nextAll()).toHaveLength(0);
});
it('(nextAll on empty object) : should return empty', () => {
expect($('.banana').nextAll()).toHaveLength(0);
});
it('() : should operate over all elements in the selection', () => {
expect($('.apple, .carrot', food).nextAll()).toHaveLength(3);
});
it('() : should not contain duplicate elements', () => {
const elems = $('.apple, .orange', food);
expect(elems.nextAll()).toHaveLength(2);
});
it('() : should not contain text elements', () => {
const elems = $('.apple', fruits.replace(/></g, '>\n<'));
expect(elems.nextAll()).toHaveLength(2);
});
describe('(selector) :', () => {
it('should filter according to the provided selector', () => {
expect($('.apple').nextAll('.pear')).toHaveLength(1);
});
it("should not consider siblings' contents when filtering", () => {
expect($('#fruits', food).nextAll('li')).toHaveLength(0);
});
});
});
describe('.nextUntil', () => {
it('() : should return all following siblings if no selector specified', () => {
const elems = $('.apple', food).nextUntil();
expect(elems).toHaveLength(2);
expect(elems[0].attribs).toHaveProperty('class', 'orange');
expect(elems[1].attribs).toHaveProperty('class', 'pear');
});
it('() : should filter out non-element nodes', () => {
const elems = $('<div><div></div><!-- comment -->text<div></div></div>');
const div = elems.children().eq(0);
expect(div.nextUntil()).toHaveLength(1);
});
it('() : should operate over all elements in the selection', () => {
const elems = $('.apple, .carrot', food);
expect(elems.nextUntil()).toHaveLength(3);
});
it('() : should not contain duplicate elements', () => {
const elems = $('.apple, .orange', food);
expect(elems.nextUntil()).toHaveLength(2);
});
it('(selector) : should return all following siblings until selector', () => {
const elems = $('.apple', food).nextUntil('.pear');
expect(elems).toHaveLength(1);
expect(elems[0].attribs).toHaveProperty('class', 'orange');
});
it('(selector) : should support selector matching multiple elements', () => {
const elems = $('#disabled', forms).nextUntil('option, #unnamed');
expect(elems).toHaveLength(2);
expect(elems[0].attribs).toHaveProperty('id', 'submit');
expect(elems[1].attribs).toHaveProperty('id', 'select');
});
it('(selector not sibling) : should return all following siblings', () => {
const elems = $('.apple').nextUntil('#vegetables');
expect(elems).toHaveLength(2);
});
it('(selector, filterString) : should return all following siblings until selector, filtered by filter', () => {
const elems = $('.beer', drinks).nextUntil('.water', '.milk');
expect(elems).toHaveLength(1);
expect(elems[0].attribs).toHaveProperty('class', 'milk');
});
it('(null, filterString) : should return all following siblings until selector, filtered by filter', () => {
const elems = $('<ul><li></li><li><p></p></li></ul>');
const empty = elems.find('li').eq(0).nextUntil(null, 'p');
expect(empty).toHaveLength(0);
});
it('() : should return an empty object for last child', () => {
expect($('.pear').nextUntil()).toHaveLength(0);
});
it('() : should return an empty object when called on an empty object', () => {
expect($('.banana').nextUntil()).toHaveLength(0);
});
it('(node) : should return all following siblings until the node', () => {
const $fruits = $('#fruits').children();
const elems = $fruits.eq(0).nextUntil($fruits[2]);
expect(elems).toHaveLength(1);
});
it('(cheerio object) : should return all following siblings until any member of the cheerio object', () => {
const $drinks = $(drinks).children();
const $until = $([$drinks[4], $drinks[3]]);
const elems = $drinks.eq(0).nextUntil($until);
expect(elems).toHaveLength(2);
});
});
describe('.prev', () => {
it('() : should return previous element', () => {
const { attribs } = $('.orange').prev()[0];
expect(attribs).toHaveProperty('class', 'apple');
});
it('() : should skip text nodes', () => {
expect($($(mixedText)[2]).prev()[0]).toHaveProperty('name', 'a');
});
it('(no prev) : should return empty for first child', () => {
expect($('.apple').prev()).toHaveLength(0);
});
it('(prev on empty object) : should return empty', () => {
expect($('.banana').prev()).toHaveLength(0);
});
it('() : should operate over all elements in the selection', () => {
expect($('.orange, .pear', food).prev()).toHaveLength(2);
});
it('() : should maintain elements order', () => {
const sel = cheerio.load(eleven)('.sel');
expect(sel).toHaveLength(3);
expect(sel.eq(0).text()).toBe('Three');
expect(sel.eq(1).text()).toBe('Nine');
expect(sel.eq(2).text()).toBe('Eleven');
// Swap last elements
const el = sel[2];
sel[2] = sel[1];
sel[1] = el;
const result = sel.prev();
expect(result).toHaveLength(3);
expect(result.eq(0).text()).toBe('Two');
expect(result.eq(1).text()).toBe('Ten');
expect(result.eq(2).text()).toBe('Eight');
});
describe('(selector) :', () => {
it('should reject elements that violate the filter', () => {
expect($('.orange').prev('.non-existent')).toHaveLength(0);
});
it('should accept elements that satisify the filter', () => {
expect($('.orange').prev('.apple')).toHaveLength(1);
});
it('(selector) : should reject elements that violate the filter', () => {
expect($('.orange').prev('.non-existent')).toHaveLength(0);
});
it('(selector) : should accept elements that satisify the filter', () => {
expect($('.orange').prev('.apple')).toHaveLength(1);
});
});
});
describe('.prevAll', () => {
it('() : should return all preceding siblings', () => {
const elems = $('.pear').prevAll();
expect(elems).toHaveLength(2);
expect(elems[0].attribs).toHaveProperty('class', 'orange');
expect(elems[1].attribs).toHaveProperty('class', 'apple');
});
it('() : should not contain text elements', () => {
const elems = $('.pear', fruits.replace(/></g, '>\n<'));
expect(elems.prevAll()).toHaveLength(2);
});
it('(no prev) : should return empty for first child', () => {
expect($('.apple').prevAll()).toHaveLength(0);
});
it('(prevAll on empty object) : should return empty', () => {
expect($('.banana').prevAll()).toHaveLength(0);
});
it('() : should operate over all elements in the selection', () => {
expect($('.orange, .sweetcorn', food).prevAll()).toHaveLength(2);
});
it('() : should not contain duplicate elements', () => {
const elems = $('.orange, .pear', food);
expect(elems.prevAll()).toHaveLength(2);
});
describe('(selector) :', () => {
it('should filter returned elements', () => {
const elems = $('.pear').prevAll('.apple');
expect(elems).toHaveLength(1);
});
it("should not consider siblings's descendents", () => {
const elems = $('#vegetables', food).prevAll('li');
expect(elems).toHaveLength(0);
});
});
});
describe('.prevUntil', () => {
it('() : should return all preceding siblings if no selector specified', () => {
const elems = $('.pear').prevUntil();
expect(elems).toHaveLength(2);
expect(elems[0].attribs).toHaveProperty('class', 'orange');
expect(elems[1].attribs).toHaveProperty('class', 'apple');
});
it('() : should filter out non-element nodes', () => {
const elems = $(
'<div class="1"><div class="2"></div><!-- comment -->text<div class="3"></div></div>'
);
const div = elems.children().last();
expect(div.prevUntil()).toHaveLength(1);
});
it('() : should operate over all elements in the selection', () => {
const elems = $('.pear, .sweetcorn', food);
expect(elems.prevUntil()).toHaveLength(3);
});
it('() : should not contain duplicate elements', () => {
const elems = $('.orange, .pear', food);
expect(elems.prevUntil()).toHaveLength(2);
});
it('(selector) : should return all preceding siblings until selector', () => {
const elems = $('.pear').prevUntil('.apple');
expect(elems).toHaveLength(1);
expect(elems[0].attribs).toHaveProperty('class', 'orange');
});
it('(selector) : should support selector matching multiple elements', () => {
const elems = $('#unnamed', forms).prevUntil('option, #disabled');
expect(elems).toHaveLength(2);
expect(elems[0].attribs).toHaveProperty('id', 'select');
expect(elems[1].attribs).toHaveProperty('id', 'submit');
});
it('(selector not sibling) : should return all preceding siblings', () => {
const elems = $('.sweetcorn', food).prevUntil('#fruits');
expect(elems).toHaveLength(1);
expect(elems[0].attribs).toHaveProperty('class', 'carrot');
});
it('(selector, filterString) : should return all preceding siblings until selector, filtered by filter', () => {
const elems = $('.cider', drinks).prevUntil('.juice', '.water');
expect(elems).toHaveLength(1);
expect(elems[0].attribs).toHaveProperty('class', 'water');
});
it('(selector, filterString) : should return all preceding siblings until selector', () => {
const elems = $('<ul><li><p></p></li><li></li></ul>');
const empty = elems.find('li').eq(1).prevUntil(null, 'p');
expect(empty).toHaveLength(0);
});
it('() : should return an empty object for first child', () => {
expect($('.apple').prevUntil()).toHaveLength(0);
});
it('() : should return an empty object when called on an empty object', () => {
expect($('.banana').prevUntil()).toHaveLength(0);
});
it('(node) : should return all previous siblings until the node', () => {
const $fruits = $('#fruits').children();
const elems = $fruits.eq(2).prevUntil($fruits[0]);
expect(elems).toHaveLength(1);
});
it('(cheerio object) : should return all previous siblings until any member of the cheerio object', () => {
const $drinks = $(drinks).children();
const $until = $([$drinks[0], $drinks[1]]);
const elems = $drinks.eq(4).prevUntil($until);
expect(elems).toHaveLength(2);
});
});
describe('.siblings', () => {
it('() : should get all the siblings', () => {
expect($('.orange').siblings()).toHaveLength(2);
expect($('#fruits').siblings()).toHaveLength(0);
expect($('.apple, .carrot', food).siblings()).toHaveLength(3);
});
it('(selector) : should get all siblings that match the selector', () => {
expect($('.orange').siblings('.apple')).toHaveLength(1);
expect($('.orange').siblings('.peach')).toHaveLength(0);
});
it('(selector) : should throw an Error if given an invalid selector', () => {
expect(() => {
$('.orange').siblings(':bah');
}).toThrow('Unknown pseudo-class :bah');
});
it('(selector) : does not consider the contents of siblings when filtering (GH-374)', () => {
expect($('#fruits', food).siblings('li')).toHaveLength(0);
});
it('() : when two elements are siblings to each other they have to be included', () => {
const result = cheerio.load(eleven)('.sel').siblings();
expect(result).toHaveLength(7);
expect(result.eq(0).text()).toBe('One');
expect(result.eq(1).text()).toBe('Two');
expect(result.eq(2).text()).toBe('Four');
expect(result.eq(3).text()).toBe('Eight');
expect(result.eq(4).text()).toBe('Nine');
expect(result.eq(5).text()).toBe('Ten');
expect(result.eq(6).text()).toBe('Eleven');
});
it('(selector) : when two elements are siblings to each other they have to be included', () => {
const result = cheerio.load(eleven)('.sel').siblings('.red');
expect(result).toHaveLength(2);
expect(result.eq(0).text()).toBe('Four');
expect(result.eq(1).text()).toBe('Nine');
});
it('(cheerio) : test filtering with cheerio object', () => {
const doc = cheerio.load(eleven);
const result = doc('.sel').siblings(doc(':not([class])'));
expect(result).toHaveLength(4);
expect(result.eq(0).text()).toBe('One');
expect(result.eq(1).text()).toBe('Two');
expect(result.eq(2).text()).toBe('Eight');
expect(result.eq(3).text()).toBe('Ten');
});
});
describe('.parents', () => {
beforeEach(() => {
$ = cheerio.load(food);
});
it('() : should get all of the parents in logical order', () => {
let result = $('.orange').parents();
expect(result).toHaveLength(4);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
expect(result[1].attribs).toHaveProperty('id', 'food');
expect(result[2].tagName).toBe('body');
expect(result[3].tagName).toBe('html');
result = $('#fruits').parents();
expect(result).toHaveLength(3);
expect(result[0].attribs).toHaveProperty('id', 'food');
expect(result[1].tagName).toBe('body');
expect(result[2].tagName).toBe('html');
});
it('(selector) : should get all of the parents that match the selector in logical order', () => {
let result = $('.orange').parents('#fruits');
expect(result).toHaveLength(1);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
result = $('.orange').parents('ul');
expect(result).toHaveLength(2);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
expect(result[1].attribs).toHaveProperty('id', 'food');
});
it('() : should not break if the selector does not have any results', () => {
const result = $('.saladbar').parents();
expect(result).toHaveLength(0);
});
it('() : should return an empty set for top-level elements', () => {
const result = $('html').parents();
expect(result).toHaveLength(0);
});
it('() : should return the parents of every element in the *reveresed* collection, omitting duplicates', () => {
const $parents = $('li').parents();
expect($parents).toHaveLength(5);
expect($parents[0]).toBe($('#vegetables')[0]);
expect($parents[1]).toBe($('#fruits')[0]);
expect($parents[2]).toBe($('#food')[0]);
expect($parents[3]).toBe($('body')[0]);
expect($parents[4]).toBe($('html')[0]);
});
});
describe('.parentsUntil', () => {
beforeEach(() => {
$ = cheerio.load(food);
});
it('() : should get all of the parents in logical order', () => {
const result = $('.orange').parentsUntil();
expect(result).toHaveLength(4);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
expect(result[1].attribs).toHaveProperty('id', 'food');
expect(result[2].tagName).toBe('body');
expect(result[3].tagName).toBe('html');
});
it('() : should get all of the parents in reversed order, omitting duplicates', () => {
const result = $('.apple, .sweetcorn').parentsUntil();
expect(result).toHaveLength(5);
expect(result[0]).toBe($('#vegetables')[0]);
expect(result[1]).toBe($('#fruits')[0]);
expect(result[2]).toBe($('#food')[0]);
expect(result[3]).toBe($('body')[0]);
expect(result[4]).toBe($('html')[0]);
});
it('(selector) : should get all of the parents until selector', () => {
let result = $('.orange').parentsUntil('#food');
expect(result).toHaveLength(1);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
result = $('.orange').parentsUntil('#fruits');
expect(result).toHaveLength(0);
});
it('(selector) : Less simple parentsUntil check with selector', () => {
const result = $('#fruits').parentsUntil('html, body');
expect(result.eq(0).attr('id')).toBe('food');
});
it('(selector not parent) : should return all parents', () => {
const result = $('.orange').parentsUntil('.apple');
expect(result).toHaveLength(4);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
expect(result[1].attribs).toHaveProperty('id', 'food');
expect(result[2].tagName).toBe('body');
expect(result[3].tagName).toBe('html');
});
it('(selector, filter) : should get all of the parents that match the filter', () => {
const result = $('.apple, .sweetcorn').parentsUntil(
'.saladbar',
'#vegetables'
);
expect(result).toHaveLength(1);
expect(result[0].attribs).toHaveProperty('id', 'vegetables');
});
it('(selector, filter) : Multiple-filtered parentsUntil check', () => {
const result = $('.orange').parentsUntil('html', 'ul,body');
expect(result).toHaveLength(3);
expect(result.eq(0).attr('id')).toBe('fruits');
expect(result.eq(1).attr('id')).toBe('food');
expect(result.eq(2).prop('tagName')).toBe('BODY');
});
it('() : should return empty object when called on an empty object', () => {
const result = $('.saladbar').parentsUntil();
expect(result).toHaveLength(0);
});
it('() : should return an empty set for top-level elements', () => {
const result = $('html').parentsUntil();
expect(result).toHaveLength(0);
});
it('(cheerio object) : should return all parents until any member of the cheerio object', () => {
const $fruits = $('#fruits');
const $until = $('#food');
const result = $fruits.children().eq(1).parentsUntil($until);
expect(result).toHaveLength(1);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
});
it('(cheerio object) : should return all parents until body element', () => {
const body = $('body')[0];
const result = $('.carrot').parentsUntil(body);
expect(result).toHaveLength(2);
expect(result.eq(0).is('ul#vegetables')).toBe(true);
});
});
describe('.parent', () => {
it('() : should return the parent of each matched element', () => {
let result = $('.orange').parent();
expect(result).toHaveLength(1);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
result = $('li', food).parent();
expect(result).toHaveLength(2);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
expect(result[1].attribs).toHaveProperty('id', 'vegetables');
});
it('(undefined) : should not throw an exception', () => {
expect(() => {
$('li').parent(undefined);
}).not.toThrow();
});
it('() : should return an empty object for top-level elements', () => {
const result = $('html').parent();
expect(result).toHaveLength(0);
});
it('() : should not contain duplicate elements', () => {
const result = $('li').parent();
expect(result).toHaveLength(1);
});
it('(selector) : should filter the matched parent elements by the selector', () => {
let result = $('.orange').parent();
expect(result).toHaveLength(1);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
result = $('li', food).parent('#fruits');
expect(result).toHaveLength(1);
expect(result[0].attribs).toHaveProperty('id', 'fruits');
});
});
describe('.closest', () => {
it('() : should return an empty array', () => {
const result = $('.orange').closest();
expect(result).toHaveLength(0);
expect(result).toBeInstanceOf(Cheerio);
});
it('(selector) : should find the closest element that matches the selector, searching through its ancestors and itself', () => {
expect($('.orange').closest('.apple')).toHaveLength(0);
let result = $('.orange', food).closest('#food') as Cheerio<Element>;
expect(result[0].attribs).toHaveProperty('id', 'food');
result = $('.orange', food).closest('ul') as Cheerio<Element>;
expect(result[0].attribs).toHaveProperty('id', 'fruits');
result = $('.orange', food).closest('li') as Cheerio<Element>;
expect(result[0].attribs).toHaveProperty('class', 'orange');
});
it('(selector) : should find the closest element of each item, removing duplicates', () => {
const result = $('li', food).closest('ul');
expect(result).toHaveLength(2);
});
it('() : should not break if the selector does not have any results', () => {
const result = $('.saladbar', food).closest('ul');
expect(result).toHaveLength(0);
});
});
describe('.each', () => {
it('( (i, elem) -> ) : should loop selected returning fn with (i, elem)', () => {
const items: Element[] = [];
const classes = ['apple', 'orange', 'pear'];
$('li').each(function (idx, elem) {
items[idx] = elem;
expect(this.attribs).toHaveProperty('class', classes[idx]);
});
expect(items[0].attribs).toHaveProperty('class', 'apple');
expect(items[1].attribs).toHaveProperty('class', 'orange');
expect(items[2].attribs).toHaveProperty('class', 'pear');
});
it('( (i, elem) -> ) : should break iteration when the iterator function returns false', () => {
let iterationCount = 0;
$('li').each((idx) => {
iterationCount++;
return idx < 1;
});
expect(iterationCount).toBe(2);
});
});
if (typeof Symbol !== 'undefined') {
describe('[Symbol.iterator]', () => {
it('should yield each element', () => {
// The equivalent of: for (const element of $('li')) ...
const $li = $('li');
const iterator = $li[Symbol.iterator]();
expect(iterator.next().value.attribs).toHaveProperty('class', 'apple');
expect(iterator.next().value.attribs).toHaveProperty('class', 'orange');
expect(iterator.next().value.attribs).toHaveProperty('class', 'pear');
expect(iterator.next().done).toBe(true);
});
});
}
describe('.map', () => {
it('(fn) : should be invoked with the correct arguments and context', () => {
const $fruits = $('li');
const args: [number, AnyNode][] = [];
const thisVals: AnyNode[] = [];
$fruits.map(function (...myArgs) {
args.push(myArgs);
thisVals.push(this);
return undefined;
});
expect(args).toStrictEqual([
[0, $fruits[0]],
[1, $fruits[1]],
[2, $fruits[2]],
]);
expect(thisVals).toStrictEqual([$fruits[0], $fruits[1], $fruits[2]]);
});
it('(fn) : should return an Cheerio object wrapping the returned items', () => {
const $fruits = $('li');
const $mapped = $fruits.map((i) => $fruits[2 - i]);
expect($mapped).toHaveLength(3);
expect($mapped[0]).toBe($fruits[2]);
expect($mapped[1]).toBe($fruits[1]);
expect($mapped[2]).toBe($fruits[0]);
});
it('(fn) : should ignore `null` and `undefined` returned by iterator', () => {
const $fruits = $('li');
const retVals = [null, undefined, $fruits[1]];
const $mapped = $fruits.map((i) => retVals[i]);
expect($mapped).toHaveLength(1);
expect($mapped[0]).toBe($fruits[1]);
});
it('(fn) : should preform a shallow merge on arrays returned by iterator', () => {
const $fruits = $('li');
const $mapped = $fruits.map(() => [1, [3, 4]] as any);
expect($mapped.get()).toStrictEqual([1, [3, 4], 1, [3, 4], 1, [3, 4]]);
});
it('(fn) : should tolerate `null` and `undefined` when flattening arrays returned by iterator', () => {
const $fruits = $('li');
const $mapped = $fruits.map(() => [null, undefined] as any);
expect($mapped.get()).toStrictEqual([
null,
undefined,
null,
undefined,
null,
undefined,
]);
});
});
describe('.filter', () => {
it('(selector) : should reduce the set of matched elements to those that match the selector', () => {
const pear = $('li').filter('.pear').text();
expect(pear).toBe('Pear');
});
it('(selector) : should not consider nested elements', () => {
const lis = $('#fruits').filter('li');
expect(lis).toHaveLength(0);
});
it('(selection) : should reduce the set of matched elements to those that are contained in the provided selection', () => {
const $fruits = $('li');
const $pear = $fruits.filter('.pear, .apple');
expect($fruits.filter($pear)).toHaveLength(2);
});
it('(element) : should reduce the set of matched elements to those that specified directly', () => {
const $fruits = $('li');
const pear = $fruits.filter('.pear')[0];
expect($fruits.filter(pear)).toHaveLength(1);
});
it("(fn) : should reduce the set of matched elements to those that pass the function's test", () => {
const orange = $('li')
.filter(function (i, el) {
expect(this).toBe(el);
expect(el.tagName).toBe('li');
expect(typeof i).toBe('number');
return $(this).attr('class') === 'orange';
})
.text();
expect(orange).toBe('Orange');
});
it('should also iterate over text nodes (#1867)', () => {
const text = $('<a>a</a>b<c></c>').filter((_, el): el is Text =>
isText(el)
);
expect(text[0].data).toBe('b');
});
});
describe('.not', () => {
it('(selector) : should reduce the set of matched elements to those that do not match the selector', () => {
const $fruits = $('li');
const $notPear = $fruits.not('.pear');
expect($notPear).toHaveLength(2);
expect($notPear[0]).toBe($fruits[0]);
expect($notPear[1]).toBe($fruits[1]);
});
it('(selector) : should not consider nested elements', () => {
const lis = $('#fruits').not('li');
expect(lis).toHaveLength(1);
});
it('(selection) : should reduce the set of matched elements to those that are mot contained in the provided selection', () => {
const $fruits = $('li');
const $orange = $('.orange');
const $notOrange = $fruits.not($orange);
expect($notOrange).toHaveLength(2);
expect($notOrange[0]).toBe($fruits[0]);
expect($notOrange[1]).toBe($fruits[2]);
});
it('(element) : should reduce the set of matched elements to those that specified directly', () => {
const $fruits = $('li');
const apple = $('.apple')[0];
const $notApple = $fruits.not(apple);
expect($notApple).toHaveLength(2);
expect($notApple[0]).toBe($fruits[1]);
expect($notApple[1]).toBe($fruits[2]);
});
it("(fn) : should reduce the set of matched elements to those that do not pass the function's test", () => {
const $fruits = $('li');
const $notOrange = $fruits.not(function (i, el) {
expect(this).toBe(el);
expect(el).toHaveProperty('name', 'li');
expect(typeof i).toBe('number');
return $(this).attr('class') === 'orange';
});
expect($notOrange).toHaveLength(2);
expect($notOrange[0]).toBe($fruits[0]);
expect($notOrange[1]).toBe($fruits[2]);