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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
x25
 
x25
 
 
 
x25
x25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x255
x255
x255
x255
x255
x255
x255
x255
x255
 
 
 
 
x255
x255
x255
x255
x489
x483
x707
x707
x707
x707
x255
x320
x320
x373
x373
x320
x332
x332
x332
x255
x423
x423
x423
x420
x582
x582
x594
x582
x732
x732
x582
x582
 
x255
x771
x255
x255
x255
x255
x255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
 
 
 
 
 
x220
x220
x220
x220
x220
x220
 
x220
x220
x367
x220
x268
x268
x268
x268
x268
x268
x268
x268
x268
x268
x268
x268
x268
x305
x305
x305
x305
x305
x305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x305
x305
x268
x268
x291
x291
x268
x290
x290
x268
x283
x283
x268
x283
x283
x268
x283
x283
x268
x283
x283
x268
x268
x220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x43
x43
x43
x43
x43
x25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x42
x42
x42
x42
x42
x25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x27
x25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x36
x36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x26
x25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x26
x25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x26
x25
 
x73
x73
x73
 
x73
 
 
 
 
 
x80
x80
x80
x80
x73
x114
x114
x73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x37
x37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x27
x27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x37
x37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x27
x27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x37
x37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x37
x37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x156
x156
x156
x156
x156
x156
x156
x156
x156
 
 
 
 
x156
x156
x156
x156
x160
x156
x283
x283
x283
x283
x156
x226
x226
x271
x271
x226
x251
x251
x269
x269
x251
x156
x220
x220
x220
x217
 
x275
x287
x275
x321
x321
 
x275
 
x156
x283
x283
x156
x172
x516
x172
 
x156
x156
x156
x156
x156
x156
x156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
 
 
 
 
 
x122
x122
x122
x366
x122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x43
x43
x43
x43
x43
x25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x41
x41
x41
x41
x41
x25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x25
x25
 
x27
x25 |
I
I
I
I
I
I
I
|
// Copyright 2018-2025 the Deno authors. MIT license.
/**
* A {@link https://en.wikipedia.org/wiki/Behavior-driven_development | BDD} interface
* to `Deno.test()` API.
*
* With `@std/testing/bdd` module you can write your tests in a familiar format for
* grouping tests and adding setup/teardown hooks used by other JavaScript testing
* frameworks like Jasmine, Jest, and Mocha.
*
* The `describe` function creates a block that groups together several related
* tests. The `it` function registers an individual test case.
*
* ## Hooks
*
* There are 4 types of hooks available for test suites. A test suite can have
* multiples of each type of hook, they will be called in the order that they are
* registered. The `afterEach` and `afterAll` hooks will be called whether or not
* the test case passes. The *All hooks will be called once for the whole group
* while the *Each hooks will be called for each individual test case.
*
* - `beforeAll`: Runs before all of the tests in the group.
* - `afterAll`: Runs after all of the tests in the group finish.
* - `beforeEach`: Runs before each of the individual test cases in the group.
* - `afterEach`: Runs after each of the individual test cases in the group.
*
* If a hook is registered at the top level, a global test suite will be registered
* and all tests will belong to it. Hooks registered at the top level must be
* registered before any individual test cases or test suites.
*
* ## Focusing tests
*
* If you would like to run only specific test cases, you can do so by calling
* `it.only` instead of `it`. If you would like to run only specific test suites,
* you can do so by calling `describe.only` instead of `describe`.
*
* There is one limitation to this when using the flat test grouping style. When
* `describe` is called without being nested, it registers the test with
* `Deno.test`. If a child test case or suite is registered with `it.only` or
* `describe.only`, it will be scoped to the top test suite instead of the file. To
* make them the only tests that run in the file, you would need to register the
* top test suite with `describe.only` too.
*
* ## Ignoring tests
*
* If you would like to not run specific individual test cases, you can do so by
* calling `it.ignore` instead of `it`. If you would like to not run specific test
* suites, you can do so by calling `describe.ignore` instead of `describe`.
*
* ## Sanitization options
*
* Like `Deno.TestDefinition`, the `DescribeDefinition` and `ItDefinition` have
* sanitization options. They work in the same way.
*
* - `sanitizeExit`: Ensure the test case does not prematurely cause the process to
* exit, for example via a call to Deno.exit. Defaults to true.
* - `sanitizeOps`: Check that the number of async completed ops after the test is
* the same as number of dispatched ops. Defaults to true.
* - `sanitizeResources`: Ensure the test case does not "leak" resources - ie. the
* resource table after the test has exactly the same contents as before the
* test. Defaults to true.
*
* ## Permissions option
*
* Like `Deno.TestDefinition`, the `DescribeDefinition` and `ItDefinition` have a
* `permissions` option. They specify the permissions that should be used to run an
* individual test case or test suite. Set this to `"inherit"` to keep the calling
* thread's permissions. Set this to `"none"` to revoke all permissions.
*
* This setting defaults to `"inherit"`.
*
* There is currently one limitation to this, you cannot use the permissions option
* on an individual test case or test suite that belongs to another test suite.
* That's because internally those tests are registered with `t.step` which does
* not support the permissions option.
*
* ## Comparing to Deno\.test
*
* The default way of writing tests is using `Deno.test` and `t.step`. The
* `describe` and `it` functions have similar call signatures to `Deno.test`,
* making it easy to switch between the default style and the behavior-driven
* development style of writing tests. Internally, `describe` and `it` are
* registering tests with `Deno.test` and `t.step`.
*
* Below is an example of a test file using `Deno.test` and `t.step`. In the
* following sections there are examples of how the same test could be written with
* `describe` and `it` using nested test grouping, flat test grouping, or a mix of
* both styles.
*
* ```ts
* import {
* assertEquals,
* assertStrictEquals,
* assertThrows,
* } from "@std/assert";
*
* class User {
* static users: Map<string, User> = new Map();
* name: string;
* age?: number;
*
* constructor(name: string) {
* if (User.users.has(name)) {
* throw new Deno.errors.AlreadyExists(`User ${name} already exists`);
* }
* this.name = name;
* User.users.set(name, this);
* }
*
* getAge(): number {
* if (!this.age) {
* throw new Error("Age unknown");
* }
* return this.age;
* }
*
* setAge(age: number) {
* this.age = age;
* }
* }
*
* Deno.test("User.users initially empty", () => {
* assertEquals(User.users.size, 0);
* });
*
* Deno.test("User constructor", () => {
* try {
* const user = new User("Kyle");
* assertEquals(user.name, "Kyle");
* assertStrictEquals(User.users.get("Kyle"), user);
* } finally {
* User.users.clear();
* }
* });
*
* Deno.test("User age", async (t) => {
* const user = new User("Kyle");
*
* await t.step("getAge", () => {
* assertThrows(() => user.getAge(), Error, "Age unknown");
* user.age = 18;
* assertEquals(user.getAge(), 18);
* });
*
* await t.step("setAge", () => {
* user.setAge(18);
* assertEquals(user.getAge(), 18);
* });
* });
* ```
*
* ### Nested test grouping
*
* Tests created within the callback of a `describe` function call will belong to
* the new test suite it creates. The hooks can be created within it or be added to
* the options argument for describe.
*
* ```ts
* import {
* assertEquals,
* assertStrictEquals,
* assertThrows,
* } from "@std/assert";
* import {
* afterEach,
* beforeEach,
* describe,
* it,
* } from "@std/testing/bdd";
*
* class User {
* static users: Map<string, User> = new Map();
* name: string;
* age?: number;
*
* constructor(name: string) {
* if (User.users.has(name)) {
* throw new Deno.errors.AlreadyExists(`User ${name} already exists`);
* }
* this.name = name;
* User.users.set(name, this);
* }
*
* getAge(): number {
* if (!this.age) {
* throw new Error("Age unknown");
* }
* return this.age;
* }
*
* setAge(age: number) {
* this.age = age;
* }
* }
*
* describe("User", () => {
* it("users initially empty", () => {
* assertEquals(User.users.size, 0);
* });
*
* it("constructor", () => {
* try {
* const user = new User("Kyle");
* assertEquals(user.name, "Kyle");
* assertStrictEquals(User.users.get("Kyle"), user);
* } finally {
* User.users.clear();
* }
* });
*
* describe("age", () => {
* let user: User;
*
* beforeEach(() => {
* user = new User("Kyle");
* });
*
* afterEach(() => {
* User.users.clear();
* });
*
* it("getAge", function () {
* assertThrows(() => user.getAge(), Error, "Age unknown");
* user.age = 18;
* assertEquals(user.getAge(), 18);
* });
*
* it("setAge", function () {
* user.setAge(18);
* assertEquals(user.getAge(), 18);
* });
* });
* });
* ```
*
* ### Flat test grouping
*
* The `describe` function returns a unique symbol that can be used to reference
* the test suite for adding tests to it without having to create them within a
* callback. The gives you the ability to have test grouping without any extra
* indentation in front of the grouped tests.
*
* ```ts
* import {
* assertEquals,
* assertStrictEquals,
* assertThrows,
* } from "@std/assert";
* import {
* describe,
* it,
* } from "@std/testing/bdd";
*
* class User {
* static users: Map<string, User> = new Map();
* name: string;
* age?: number;
*
* constructor(name: string) {
* if (User.users.has(name)) {
* throw new Deno.errors.AlreadyExists(`User ${name} already exists`);
* }
* this.name = name;
* User.users.set(name, this);
* }
*
* getAge(): number {
* if (!this.age) {
* throw new Error("Age unknown");
* }
* return this.age;
* }
*
* setAge(age: number) {
* this.age = age;
* }
* }
*
* const userTests = describe("User");
*
* it(userTests, "users initially empty", () => {
* assertEquals(User.users.size, 0);
* });
*
* it(userTests, "constructor", () => {
* try {
* const user = new User("Kyle");
* assertEquals(user.name, "Kyle");
* assertStrictEquals(User.users.get("Kyle"), user);
* } finally {
* User.users.clear();
* }
* });
*
* const ageTests = describe({
* name: "age",
* suite: userTests,
* beforeEach(this: { user: User }) {
* this.user = new User("Kyle");
* },
* afterEach() {
* User.users.clear();
* },
* });
*
* it(ageTests, "getAge", function () {
* const { user } = this;
* assertThrows(() => user.getAge(), Error, "Age unknown");
* user.age = 18;
* assertEquals(user.getAge(), 18);
* });
*
* it(ageTests, "setAge", function () {
* const { user } = this;
* user.setAge(18);
* assertEquals(user.getAge(), 18);
* });
* ```
*
* ### Mixed test grouping
*
* Both nested test grouping and flat test grouping can be used together. This can
* be useful if you'd like to create deep groupings without all the extra
* indentation in front of each line.
*
* ```ts
* import {
* assertEquals,
* assertStrictEquals,
* assertThrows,
* } from "@std/assert";
* import {
* describe,
* it,
* } from "@std/testing/bdd";
*
* class User {
* static users: Map<string, User> = new Map();
* name: string;
* age?: number;
*
* constructor(name: string) {
* if (User.users.has(name)) {
* throw new Deno.errors.AlreadyExists(`User ${name} already exists`);
* }
* this.name = name;
* User.users.set(name, this);
* }
*
* getAge(): number {
* if (!this.age) {
* throw new Error("Age unknown");
* }
* return this.age;
* }
*
* setAge(age: number) {
* this.age = age;
* }
* }
*
* describe("User", () => {
* it("users initially empty", () => {
* assertEquals(User.users.size, 0);
* });
*
* it("constructor", () => {
* try {
* const user = new User("Kyle");
* assertEquals(user.name, "Kyle");
* assertStrictEquals(User.users.get("Kyle"), user);
* } finally {
* User.users.clear();
* }
* });
*
* const ageTests = describe({
* name: "age",
* beforeEach(this: { user: User }) {
* this.user = new User("Kyle");
* },
* afterEach() {
* User.users.clear();
* },
* });
*
* it(ageTests, "getAge", function () {
* const { user } = this;
* assertThrows(() => user.getAge(), Error, "Age unknown");
* user.age = 18;
* assertEquals(user.getAge(), 18);
* });
*
* it(ageTests, "setAge", function () {
* const { user } = this;
* user.setAge(18);
* assertEquals(user.getAge(), 18);
* });
* });
* ```
*
* @module
*/
import { getAssertionState } from "@std/internal/assertion-state";
import { AssertionError } from "@std/assert/assertion-error";
import {
type DescribeDefinition,
globalSanitizersState,
type HookNames,
type ItDefinition,
type TestSuite,
TestSuiteInternal,
} from "./_test_suite.ts";
export type { DescribeDefinition, ItDefinition, TestSuite };
/** The arguments for an ItFunction. */
export type ItArgs<T> =
| [options: ItDefinition<T>]
| [
name: string,
options: Omit<ItDefinition<T>, "name">,
]
| [
name: string,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
]
| [fn: (this: T, t: Deno.TestContext) => void | Promise<void>]
| [
name: string,
options: Omit<ItDefinition<T>, "fn" | "name">,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
]
| [
options: Omit<ItDefinition<T>, "fn">,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
]
| [
options: Omit<ItDefinition<T>, "fn" | "name">,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
]
| [
suite: TestSuite<T>,
name: string,
options: Omit<ItDefinition<T>, "name" | "suite">,
]
| [
suite: TestSuite<T>,
name: string,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
]
| [
suite: TestSuite<T>,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
]
| [
suite: TestSuite<T>,
name: string,
options: Omit<ItDefinition<T>, "fn" | "name" | "suite">,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
]
| [
suite: TestSuite<T>,
options: Omit<ItDefinition<T>, "fn" | "suite">,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
]
| [
suite: TestSuite<T>,
options: Omit<ItDefinition<T>, "fn" | "name" | "suite">,
fn: (this: T, t: Deno.TestContext) => void | Promise<void>,
];
/** Generates an ItDefinition from ItArgs. */
function itDefinition<T>(...args: ItArgs<T>): ItDefinition<T> {
let [
suiteOptionsOrNameOrFn,
optionsOrNameOrFn,
optionsOrFn,
fn,
] = args;
let suite: TestSuite<T> | undefined = undefined;
let name: string;
let options:
| ItDefinition<T>
| Omit<ItDefinition<T>, "fn">
| Omit<ItDefinition<T>, "name">
| Omit<ItDefinition<T>, "fn" | "name">;
if (
typeof suiteOptionsOrNameOrFn === "object" &&
typeof (suiteOptionsOrNameOrFn as TestSuite<T>).symbol === "symbol"
) {
suite = suiteOptionsOrNameOrFn as TestSuite<T>;
} else {
fn = optionsOrFn as typeof fn;
optionsOrFn = optionsOrNameOrFn as typeof optionsOrFn;
optionsOrNameOrFn = suiteOptionsOrNameOrFn as typeof optionsOrNameOrFn;
}
if (typeof optionsOrNameOrFn === "string") {
name = optionsOrNameOrFn;
if (typeof optionsOrFn === "function") {
fn = optionsOrFn;
options = {};
} else {
options = optionsOrFn!;
if (!fn) fn = (options as Omit<ItDefinition<T>, "name">).fn;
}
} else if (typeof optionsOrNameOrFn === "function") {
fn = optionsOrNameOrFn;
name = fn.name;
options = {};
} else {
options = optionsOrNameOrFn!;
if (typeof optionsOrFn === "function") {
fn = optionsOrFn;
} else {
fn = (options as ItDefinition<T>).fn;
}
name = (options as ItDefinition<T>).name ?? fn.name;
}
return {
...(suite !== undefined ? { suite } : {}),
...options,
name,
fn,
};
}
/** Registers an individual test case. */
// deno-lint-ignore deno-style-guide/naming-convention
export interface it {
<T>(...args: ItArgs<T>): void;
/** Registers an individual test case with only set to true. */
only<T>(...args: ItArgs<T>): void;
/** Registers an individual test case with ignore set to true. */
ignore<T>(...args: ItArgs<T>): void;
/**
* Registers an individual test case with ignore set to true. Alias of
* `.ignore()`.
*/
skip<T>(...args: ItArgs<T>): void;
}
/**
* Registers an individual test case.
*
* @example Usage
* ```ts
* import { describe, it } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* it("should pass", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* });
* ```
*
* @typeParam T The self type of the function to implement the test case
* @param args The test case
*/
export function it<T>(...args: ItArgs<T>) {
if (TestSuiteInternal.runningCount > 0) {
throw new Error(
"Cannot register new test cases after already registered test cases start running",
);
}
const assertionState = getAssertionState();
const options = itDefinition(...args);
const { suite } = options;
const testSuite = suite
? TestSuiteInternal.suites.get(suite.symbol)
: TestSuiteInternal.current;
if (!TestSuiteInternal.started) TestSuiteInternal.started = true;
if (testSuite) {
TestSuiteInternal.addStep(testSuite, options);
} else {
const {
name,
fn,
ignore,
only,
permissions,
sanitizeExit = globalSanitizersState.sanitizeExit,
sanitizeOps = globalSanitizersState.sanitizeOps,
sanitizeResources = globalSanitizersState.sanitizeResources,
} = options;
const opts: Deno.TestDefinition = {
name,
async fn(t) {
TestSuiteInternal.runningCount++;
try {
await fn.call({} as T, t);
} finally {
TestSuiteInternal.runningCount--;
}
if (assertionState.checkAssertionErrorState()) {
throw new AssertionError(
"Expected at least one assertion to be called but received none",
);
}
if (assertionState.checkAssertionCountSatisfied()) {
throw new AssertionError(
`Expected at least ${assertionState.assertionCount} assertion to be called, ` +
`but received ${assertionState.assertionTriggeredCount}`,
);
}
assertionState.resetAssertionState();
},
};
if (ignore !== undefined) {
opts.ignore = ignore;
}
if (only !== undefined) {
opts.only = only;
}
if (permissions !== undefined) {
opts.permissions = permissions;
}
if (sanitizeExit !== undefined) {
opts.sanitizeExit = sanitizeExit;
}
if (sanitizeOps !== undefined) {
opts.sanitizeOps = sanitizeOps;
}
if (sanitizeResources !== undefined) {
opts.sanitizeResources = sanitizeResources;
}
TestSuiteInternal.registerTest(opts);
}
}
/**
* Only execute this test case.
*
* @example Usage
* ```ts
* import { describe, it } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* it("should pass", () => {
* assertEquals(2 + 2, 4);
* });
*
* it.only("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test case
*/
it.only = function itOnly<T>(...args: ItArgs<T>): void {
const options = itDefinition(...args);
return it({
...options,
only: true,
});
};
/**
* Ignore this test case.
*
* @example Usage
* ```ts
* import { describe, it } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* it("should pass", () => {
* assertEquals(2 + 2, 4);
* });
*
* it.ignore("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test case
*/
it.ignore = function itIgnore<T>(...args: ItArgs<T>): void {
const options = itDefinition(...args);
return it({
...options,
ignore: true,
});
};
/** Skip this test case.
*
* @example Usage
* ```ts
* import { describe, it } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* it("should pass", () => {
* assertEquals(2 + 2, 4);
* });
*
* it.skip("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test case
*/
it.skip = function itSkip<T>(...args: ItArgs<T>): void {
it.ignore(...args);
};
/**
* Alias of {@linkcode it}
*
* Registers an individual test case.
*
* @example Usage
* ```ts
* import { test } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* test("a test case", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* ```
*
* @typeParam T The self type of the function to implement the test case
* @param args The test case
*/
export function test<T>(...args: ItArgs<T>) {
it(...args);
}
/**
* Only execute this test case.
*
* @example Usage
* ```ts
* import { describe, test } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* test("should pass", () => {
* assertEquals(2 + 2, 4);
* });
*
* test.only("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test case
*/
test.only = function itOnly<T>(...args: ItArgs<T>): void {
it.only(...args);
};
/**
* Ignore this test case.
*
* @example Usage
* ```ts
* import { describe, test } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* test("should pass", () => {
* assertEquals(2 + 2, 4);
* });
*
* test.ignore("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test case
*/
test.ignore = function itIgnore<T>(...args: ItArgs<T>): void {
it.ignore(...args);
};
/** Skip this test case.
*
* @example Usage
* ```ts
* import { describe, test } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* test("should pass", () => {
* assertEquals(2 + 2, 4);
* });
*
* test.skip("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test case
*/
test.skip = function itSkip<T>(...args: ItArgs<T>): void {
it.ignore(...args);
};
function addHook<T>(
name: HookNames,
fn: (this: T) => void | Promise<void>,
) {
if (!TestSuiteInternal.current) {
if (TestSuiteInternal.started) {
throw new Error(
"Cannot add global hooks after a global test is registered",
);
}
TestSuiteInternal.current = new TestSuiteInternal({
name: "global",
[name]: fn,
});
} else {
TestSuiteInternal.setHook(TestSuiteInternal.current!, name, fn);
}
}
/**
* Run some shared setup before all of the tests in the group.
* Useful for async setup in `describe` blocks. Outside them,
* top-level initialization code should be used instead.
*
* @example Usage
* ```ts
* import { describe, it, beforeAll } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* beforeAll(() => {
* console.log("beforeAll");
* });
*
* describe("example", () => {
* it("should pass", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* });
* ```
*
* @typeParam T The self type of the function
* @param fn The function to implement the setup behavior.
*/
export function beforeAll<T>(
fn: (this: T) => void | Promise<void>,
) {
addHook("beforeAll", fn);
}
/**
* Alias of {@linkcode beforeAll}
*
* Run some shared setup before all of the tests in the suite.
*
* @example Usage
* ```ts
* import { describe, it, before } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* before(() => {
* console.log("before");
* });
*
* describe("example", () => {
* it("should pass", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* });
* ```
*
* @typeParam T The self type of the function
* @param fn The function to implement the setup behavior.
*/
export function before<T>(
fn: (this: T) => void | Promise<void>,
) {
beforeAll(fn);
}
/**
* Run some shared teardown after all of the tests in the suite.
*
* @example Usage
* ```ts
* import { describe, it, afterAll } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* afterAll(() => {
* console.log("afterAll");
* });
*
* describe("example", () => {
* it("should pass", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* });
* ```
*
* @typeParam T The self type of the function
* @param fn The function to implement the teardown behavior.
*/
export function afterAll<T>(
fn: (this: T) => void | Promise<void>,
) {
addHook("afterAll", fn);
}
/**
* Alias of {@linkcode afterAll}.
*
* Run some shared teardown after all of the tests in the suite.
*
* @example Usage
* ```ts
* import { describe, it, after } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* after(() => {
* console.log("after");
* });
*
* describe("example", () => {
* it("should pass", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* });
* ```
*
* @typeParam T The self type of the function
* @param fn The function to implement the teardown behavior.
*/
export function after<T>(
fn: (this: T) => void | Promise<void>,
) {
afterAll(fn);
}
/**
* Run some shared setup before each test in the suite.
*
* @example Usage
* ```ts
* import { describe, it, beforeEach } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* beforeEach(() => {
* console.log("beforeEach");
* });
*
* describe("example", () => {
* it("should pass", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* });
* ```
*
* @typeParam T The self type of the function
* @param fn The function to implement the shared setup behavior
*/
export function beforeEach<T>(
fn: (this: T) => void | Promise<void>,
) {
addHook("beforeEach", fn);
}
/**
* Run some shared teardown after each test in the suite.
*
* @example Usage
* ```ts
* import { describe, it, afterEach } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* afterEach(() => {
* console.log("afterEach");
* });
*
* describe("example", () => {
* it("should pass", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* });
* ```
*
* @typeParam T The self type of the function
* @param fn The function to implement the shared teardown behavior
*/
export function afterEach<T>(
fn: (this: T) => void | Promise<void>,
) {
addHook("afterEach", fn);
}
/** The arguments for a DescribeFunction. */
export type DescribeArgs<T> =
| [options: DescribeDefinition<T>]
| [name: string]
| [
name: string,
options: Omit<DescribeDefinition<T>, "name">,
]
| [name: string, fn: () => void | undefined]
| [fn: () => void | undefined]
| [
name: string,
options: Omit<DescribeDefinition<T>, "fn" | "name">,
fn: () => void | undefined,
]
| [
options: Omit<DescribeDefinition<T>, "fn">,
fn: () => void | undefined,
]
| [
options: Omit<DescribeDefinition<T>, "fn" | "name">,
fn: () => void | undefined,
]
| [
suite: TestSuite<T>,
name: string,
]
| [
suite: TestSuite<T>,
name: string,
options: Omit<DescribeDefinition<T>, "name" | "suite">,
]
| [
suite: TestSuite<T>,
name: string,
fn: () => void | undefined,
]
| [
suite: TestSuite<T>,
fn: () => void | undefined,
]
| [
suite: TestSuite<T>,
name: string,
options: Omit<DescribeDefinition<T>, "fn" | "name" | "suite">,
fn: () => void | undefined,
]
| [
suite: TestSuite<T>,
options: Omit<DescribeDefinition<T>, "fn" | "suite">,
fn: () => void | undefined,
]
| [
suite: TestSuite<T>,
options: Omit<DescribeDefinition<T>, "fn" | "name" | "suite">,
fn: () => void | undefined,
];
/** Generates a DescribeDefinition from DescribeArgs. */
function describeDefinition<T>(
...args: DescribeArgs<T>
): DescribeDefinition<T> {
let [
suiteOptionsOrNameOrFn,
optionsOrNameOrFn,
optionsOrFn,
fn,
] = args;
let suite: TestSuite<T> | undefined = undefined;
let name: string;
let options:
| DescribeDefinition<T>
| Omit<DescribeDefinition<T>, "fn">
| Omit<DescribeDefinition<T>, "name">
| Omit<DescribeDefinition<T>, "fn" | "name">;
if (
typeof suiteOptionsOrNameOrFn === "object" &&
typeof (suiteOptionsOrNameOrFn as TestSuite<T>).symbol === "symbol"
) {
suite = suiteOptionsOrNameOrFn as TestSuite<T>;
} else {
fn = optionsOrFn as typeof fn;
optionsOrFn = optionsOrNameOrFn as typeof optionsOrFn;
optionsOrNameOrFn = suiteOptionsOrNameOrFn as typeof optionsOrNameOrFn;
}
if (typeof optionsOrNameOrFn === "string") {
name = optionsOrNameOrFn;
if (typeof optionsOrFn === "function") {
fn = optionsOrFn;
options = {};
} else {
options = optionsOrFn ?? {};
if (fn === undefined) {
fn = (options as Omit<DescribeDefinition<T>, "name">).fn;
}
}
} else if (typeof optionsOrNameOrFn === "function") {
fn = optionsOrNameOrFn;
name = fn.name;
options = {};
} else {
options = optionsOrNameOrFn ?? {};
if (typeof optionsOrFn === "function") {
fn = optionsOrFn;
} else {
fn = (options as DescribeDefinition<T>).fn;
}
name = (options as DescribeDefinition<T>).name ?? fn?.name ?? "";
}
if (suite === undefined) {
suite = options.suite;
}
if (suite === undefined && TestSuiteInternal.current) {
const { symbol } = TestSuiteInternal.current;
suite = { symbol };
}
return {
...options,
suite: suite!,
name,
fn: fn!,
};
}
/** Registers a test suite. */
// deno-lint-ignore deno-style-guide/naming-convention
export interface describe {
<T>(...args: DescribeArgs<T>): TestSuite<T>;
/** Registers a test suite with only set to true. */
only<T>(...args: DescribeArgs<T>): TestSuite<T>;
/** Registers a test suite with ignore set to true. */
ignore<T>(...args: DescribeArgs<T>): TestSuite<T>;
/** Registers a test suite with ignore set to true. Alias of `.ignore()`. */
skip<T>(...args: ItArgs<T>): void;
}
/**
* Registers a test suite.
*
* @example Usage
* ```ts
* import { describe, it } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* it("should pass", () => {
* // test case
* assertEquals(2 + 2, 4);
* });
* });
* ```
*
* @typeParam T The self type of the test suite body.
* @param args The test suite body.
* @returns The test suite
*/
export function describe<T>(
...args: DescribeArgs<T>
): TestSuite<T> {
if (TestSuiteInternal.runningCount > 0) {
throw new Error(
"Cannot register new test suites after already registered test cases start running",
);
}
const options = describeDefinition(...args);
if (!TestSuiteInternal.started) TestSuiteInternal.started = true;
const { symbol } = new TestSuiteInternal(options);
return { symbol };
}
/**
* Only execute this test suite.
*
* @example Usage
* ```ts
* import { describe, it, beforeAll } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* it("should pass", () => {
* assertEquals(2 + 2, 4);
* });
* });
*
* // Only this test suite will run
* describe.only("example 2", () => {
* it("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test suite body
*/
describe.only = function describeOnly<T>(
...args: DescribeArgs<T>
): TestSuite<T> {
const options = describeDefinition(...args);
return describe({
...options,
only: true,
});
};
/**
* Ignore the test suite.
*
* @example Usage
* ```ts
* import { describe, it, beforeAll } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* it("should pass", () => {
* assertEquals(2 + 2, 4);
* });
* });
*
* describe.ignore("example 2", () => {
* it("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test suite body
*/
describe.ignore = function describeIgnore<T>(
...args: DescribeArgs<T>
): TestSuite<T> {
const options = describeDefinition(...args);
return describe({
...options,
ignore: true,
});
};
/**
* Skip the test suite.
*
* @example Usage
* ```ts
* import { describe, it, beforeAll } from "@std/testing/bdd";
* import { assertEquals } from "@std/assert";
*
* describe("example", () => {
* it("should pass", () => {
* assertEquals(2 + 2, 4);
* });
* });
*
* describe.skip("example 2", () => {
* it("should pass too", () => {
* assertEquals(3 + 4, 7);
* });
* });
* ```
*
* @param args The test suite body
*/
describe.skip = function describeSkip<T>(
...args: DescribeArgs<T>
): TestSuite<T> {
return describe.ignore(...args);
};
|