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
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
x59
x59
x59
x59
x59
x59
x59
x59
x59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
 
x59
x112
x112
x112
x59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
x59
x291
x291
x291
x1662
x554
x554
x554
x554
x556
x556
x556
x556
x815
x815
x291
x291
x291
x291
x291
x291
x291
x291
x291
x291
x291
x291
x291
x291
x291
x291
x291
x293
x293
 
x293
x291
x291
x291
x291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
 
x67
x70
x73
x73
x73
x73
x73
x73
x73
x70
x67
x72
x72
x72
x67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
 
x62
x65
x65
x65
x65
x65
x65
x65
x62
x62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
x133
x133
x262
x262
x262
x491
x491
x262
x262
x133
 
 
x59
 
 
 
x59
x295
x297
x297
 
x297
x530
x531
x531
 
x531
 
x763
x295
x531
x531
 
x531
 
x762
 
 
 
x762
x762
x762
x2676
x892
x892
x892
x892
x893
x893
x893
x893
x1021
x1021
x762
x762
x762
x762
x762
x762
x762
x762
x762
x762
x762
x762
x762
x762
x762
x762
x762
x817
x821
x821
 
x821
x817
x828
x817
x857
x857
x868
x868
x817
x762
x762
x762
x768
x768
x762
x762
 
x762
x762
x295
x295
x295
x295
 
x295
x295
x295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
x59
 
x63
x63
 
x63
 
x63
x207
x69
x69
x69
x69
x70
x70
x70
x70
x74
x69
x63
x67
x67
x63
x63
x64
x64
 
x64
x63
x63
x63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
 
 
x59
x59
 
x531
x700
x531
x1070
x834
x905
x905
 
x901
x964
x964
 
x964
x531
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
x59
x59
 
x370
x371
x371
 
x371
x370
x371
x371
 
x371
 
x679
x370
x371
x371
 
x370
 
x370
 
 
 
x370
x370
x370
x4116
x1372
x1372
x1372
x1372
x1376
x1376
x1376
x1376
x2370
x2370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x370
x679
x683
x683
 
x683
x679
x820
x679
x843
x843
x984
x984
x679
x370
x370
x370
x482
x482
x370
x370
 
x370
x370
x370
x370
x370
x370
 
x370
x370
x370
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
x59
 
x521
x521
x521
x524
x524
x524
x524
x524
x524
x524
x521
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x565
 
 
 
 
x565
x565
 
x565
x584
x584
x1052
x565
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
x59
x59
 
x474
x474
x771
x998
x998
x998
x1014
x1014
x1014
x1014
 
x1014
x998
 
x771
x976
x976
x976
x984
x984
x984
x984
x984
x984
x984
x976
 
x771
x956
x957
x957
 
x957
x956
x957
x957
 
x957
x1139
x1139
x956
x959
x959
x959
x959
 
x959
x956
 
x771
x785
x787
x787
 
x787
x785
x785
x785
x785
 
x785
x771
x474
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
x59
x59
 
x421
x123
x175
x175
x175
x123
x123
 
x123
x124
x124
 
x124
x123
x124
x124
 
x124
 
x123
x163
x185
x186
x186
 
x186
x206
x206
x206
x185
x186
x186
 
x186
 
x205
x205
x205
x185
x186
x186
 
x204
x204
x185
x191
x191
x191
x191
 
x191
x185
 
x163
x173
x173
x173
x173
 
x178
x163
x123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
 
x59
x59
x59
x59
 
x78
x78
x78
x78
x78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
 
x59
x59
x59
x59
x59
 
x85
x85
x100
x100
x100
x85
x93
x93
x93
x85
x85
x85
x85
x85
x85
x85
x85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
 
x61
x65
x61
x61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
 
x62
x70
x62
x62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
x59
x59
 
x63
x75
x63
x63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
 
 
x59
 
x68
x77
x68
x68
x68
x111
x111
x123
x123
 
x123
x142
x142
x111
x135
x68
x68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x59
 
 
 
 
 
 
x59
 
x59
 
x66
x73
x66
x66
x66
x115
x115
x127
x127
 
x127
x152
x152
x115
x139
x66
x66 |
|
// Copyright 2018-2025 the Deno authors. MIT license.
/** A mocking and spying library.
*
* Test spies are function stand-ins that are used to assert if a function's
* internal behavior matches expectations. Test spies on methods keep the original
* behavior but allow you to test how the method is called and what it returns.
* Test stubs are an extension of test spies that also replaces the original
* methods behavior.
*
* ## Spying
*
* Say we have two functions, `square` and `multiply`, if we want to assert that
* the `multiply` function is called during execution of the `square` function we
* need a way to spy on the `multiply` function. There are a few ways to achieve
* this with Spies, one is to have the `square` function take the `multiply`
* multiply as a parameter.
*
* This way, we can call `square(multiply, value)` in the application code or wrap
* a spy function around the `multiply` function and call
* `square(multiplySpy, value)` in the testing code.
*
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* spy,
* } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* function multiply(a: number, b: number): number {
* return a * b;
* }
*
* function square(
* multiplyFn: (a: number, b: number) => number,
* value: number,
* ): number {
* return multiplyFn(value, value);
* }
*
* Deno.test("square calls multiply and returns results", () => {
* const multiplySpy = spy(multiply);
*
* assertEquals(square(multiplySpy, 5), 25);
*
* // asserts that multiplySpy was called at least once and details about the first call.
* assertSpyCall(multiplySpy, 0, {
* args: [5, 5],
* returned: 25,
* });
*
* // asserts that multiplySpy was only called once.
* assertSpyCalls(multiplySpy, 1);
* });
* ```
*
* If you prefer not adding additional parameters for testing purposes only, you
* can use spy to wrap a method on an object instead. In the following example, the
* exported `_internals` object has the `multiply` function we want to call as a
* method and the `square` function calls `_internals.multiply` instead of
* `multiply`.
*
* This way, we can call `square(value)` in both the application code and testing
* code. Then spy on the `multiply` method on the `_internals` object in the
* testing code to be able to spy on how the `square` function calls the `multiply`
* function.
*
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* spy,
* } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* function multiply(a: number, b: number): number {
* return a * b;
* }
*
* function square(value: number): number {
* return _internals.multiply(value, value);
* }
*
* const _internals = { multiply };
*
* Deno.test("square calls multiply and returns results", () => {
* const multiplySpy = spy(_internals, "multiply");
*
* try {
* assertEquals(square(5), 25);
* } finally {
* // unwraps the multiply method on the _internals object
* multiplySpy.restore();
* }
*
* // asserts that multiplySpy was called at least once and details about the first call.
* assertSpyCall(multiplySpy, 0, {
* args: [5, 5],
* returned: 25,
* });
*
* // asserts that multiplySpy was only called once.
* assertSpyCalls(multiplySpy, 1);
* });
* ```
*
* One difference you may have noticed between these two examples is that in the
* second we call the `restore` method on `multiplySpy` function. That is needed to
* remove the spy wrapper from the `_internals` object's `multiply` method. The
* `restore` method is called in a finally block to ensure that it is restored
* whether or not the assertion in the try block is successful. The `restore`
* method didn't need to be called in the first example because the `multiply`
* function was not modified in any way like the `_internals` object was in the
* second example.
*
* Method spys are disposable, meaning that you can have them automatically restore
* themselves with the `using` keyword. Using this approach is cleaner because you
* do not need to wrap your assertions in a try statement to ensure you restore the
* methods before the tests finish.
*
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* spy,
* } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* function multiply(a: number, b: number): number {
* return a * b;
* }
*
* function square(value: number): number {
* return _internals.multiply(value, value);
* }
*
* const _internals = { multiply };
*
* Deno.test("square calls multiply and returns results", () => {
* using multiplySpy = spy(_internals, "multiply");
*
* assertEquals(square(5), 25);
*
* // asserts that multiplySpy was called at least once and details about the first call.
* assertSpyCall(multiplySpy, 0, {
* args: [5, 5],
* returned: 25,
* });
*
* // asserts that multiplySpy was only called once.
* assertSpyCalls(multiplySpy, 1);
* });
* ```
*
* ## Stubbing
*
* Say we have two functions, `randomMultiple` and `randomInt`, if we want to
* assert that `randomInt` is called during execution of `randomMultiple` we need a
* way to spy on the `randomInt` function. That could be done with either of the
* spying techniques previously mentioned. To be able to verify that the
* `randomMultiple` function returns the value we expect it to for what `randomInt`
* returns, the easiest way would be to replace the `randomInt` function's behavior
* with more predictable behavior.
*
* You could use the first spying technique to do that but that would require
* adding a `randomInt` parameter to the `randomMultiple` function.
*
* You could also use the second spying technique to do that, but your assertions
* would not be as predictable due to the `randomInt` function returning random
* values.
*
* Say we want to verify it returns correct values for both negative and positive
* random integers. We could easily do that with stubbing. The below example is
* similar to the second spying technique example but instead of passing the call
* through to the original `randomInt` function, we are going to replace
* `randomInt` with a function that returns pre-defined values.
*
* The mock module includes some helper functions to make creating common stubs
* easy. The `returnsNext` function takes an array of values we want it to return
* on consecutive calls.
*
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* returnsNext,
* stub,
* } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* function randomInt(lowerBound: number, upperBound: number): number {
* return lowerBound + Math.floor(Math.random() * (upperBound - lowerBound));
* }
*
* function randomMultiple(value: number): number {
* return value * _internals.randomInt(-10, 10);
* }
*
* const _internals = { randomInt };
*
* Deno.test("randomMultiple uses randomInt to generate random multiples between -10 and 10 times the value", () => {
* const randomIntStub = stub(_internals, "randomInt", returnsNext([-3, 3]));
*
* try {
* assertEquals(randomMultiple(5), -15);
* assertEquals(randomMultiple(5), 15);
* } finally {
* // unwraps the randomInt method on the _internals object
* randomIntStub.restore();
* }
*
* // asserts that randomIntStub was called at least once and details about the first call.
* assertSpyCall(randomIntStub, 0, {
* args: [-10, 10],
* returned: -3,
* });
* // asserts that randomIntStub was called at least twice and details about the second call.
* assertSpyCall(randomIntStub, 1, {
* args: [-10, 10],
* returned: 3,
* });
*
* // asserts that randomIntStub was only called twice.
* assertSpyCalls(randomIntStub, 2);
* });
* ```
*
* Like method spys, stubs are disposable, meaning that you can have them automatically
* restore themselves with the `using` keyword. Using this approach is cleaner because
* you do not need to wrap your assertions in a try statement to ensure you restore the
* methods before the tests finish.
*
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* returnsNext,
* stub,
* } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* function randomInt(lowerBound: number, upperBound: number): number {
* return lowerBound + Math.floor(Math.random() * (upperBound - lowerBound));
* }
*
* function randomMultiple(value: number): number {
* return value * _internals.randomInt(-10, 10);
* }
*
* const _internals = { randomInt };
*
* Deno.test("randomMultiple uses randomInt to generate random multiples between -10 and 10 times the value", () => {
* using randomIntStub = stub(_internals, "randomInt", returnsNext([-3, 3]));
*
* assertEquals(randomMultiple(5), -15);
* assertEquals(randomMultiple(5), 15);
*
* // asserts that randomIntStub was called at least once and details about the first call.
* assertSpyCall(randomIntStub, 0, {
* args: [-10, 10],
* returned: -3,
* });
* // asserts that randomIntStub was called at least twice and details about the second call.
* assertSpyCall(randomIntStub, 1, {
* args: [-10, 10],
* returned: 3,
* });
*
* // asserts that randomIntStub was only called twice.
* assertSpyCalls(randomIntStub, 2);
* });
* ```
*
* ## Faking time
*
* Say we have a function that has time based behavior that we would like to test.
* With real time, that could cause tests to take much longer than they should. If
* you fake time, you could simulate how your function would behave over time
* starting from any point in time. Below is an example where we want to test that
* the callback is called every second.
*
* With `FakeTime` we can do that. When the `FakeTime` instance is created, it
* splits from real time. The `Date`, `setTimeout`, `clearTimeout`, `setInterval`
* and `clearInterval` globals are replaced with versions that use the fake time
* until real time is restored. You can control how time ticks forward with the
* `tick` method on the `FakeTime` instance.
*
* ```ts
* import {
* assertSpyCalls,
* spy,
* } from "@std/testing/mock";
* import { FakeTime } from "@std/testing/time";
*
* function secondInterval(cb: () => void): number {
* return setInterval(cb, 1000);
* }
*
* Deno.test("secondInterval calls callback every second and stops after being cleared", () => {
* using time = new FakeTime();
*
* const cb = spy();
* const intervalId = secondInterval(cb);
* assertSpyCalls(cb, 0);
* time.tick(500);
* assertSpyCalls(cb, 0);
* time.tick(500);
* assertSpyCalls(cb, 1);
* time.tick(3500);
* assertSpyCalls(cb, 4);
*
* clearInterval(intervalId);
* time.tick(1000);
* assertSpyCalls(cb, 4);
* });
* ```
*
* @module
*/
import { assertEquals } from "@std/assert/equals";
import { assertIsError } from "@std/assert/is-error";
import { assertRejects } from "@std/assert/rejects";
import { AssertionError } from "@std/assert/assertion-error";
import {
isSpy,
registerMock,
sessions,
unregisterMock,
} from "./_mock_utils.ts";
/**
* An error related to spying on a function or instance method.
*
* @example Usage
* ```ts
* import { MockError, spy } from "@std/testing/mock";
* import { assertThrows } from "@std/assert";
*
* assertThrows(() => {
* spy({} as any, "no-such-method");
* }, MockError);
* ```
*/
export class MockError extends Error {
/**
* Construct MockError
*
* @param message The error message.
*/
constructor(message: string) {
super(message);
this.name = "MockError";
}
}
/** Call information recorded by a spy. */
export interface SpyCall<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> {
/** Arguments passed to a function when called. */
args: Args;
/** The value that was returned by a function. */
returned?: Return;
/** The error value that was thrown by a function. */
error?: Error;
/** The instance that a method was called on. */
self?: Self;
}
/** A function or instance method wrapper that records all calls made to it. */
export interface Spy<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> {
(this: Self, ...args: Args): Return;
/** The function that is being spied on. */
original: (this: Self, ...args: Args) => Return;
/** Information about calls made to the function or instance method. */
calls: SpyCall<Self, Args, Return>[];
/** Whether or not the original instance method has been restored. */
restored: boolean;
/** If spying on an instance method, this restores the original instance method. */
restore(): void;
}
/** An instance method wrapper that records all calls made to it. */
export interface MethodSpy<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> extends Spy<Self, Args, Return>, Disposable {}
/** Wraps a function with a Spy. */
function functionSpy<
Self,
Args extends unknown[],
Return,
>(func?: (this: Self, ...args: Args) => Return): Spy<Self, Args, Return> {
const original = func ?? (() => {}) as (this: Self, ...args: Args) => Return;
const calls: SpyCall<Self, Args, Return>[] = [];
const spy = function (this: Self, ...args: Args): Return {
const call: SpyCall<Self, Args, Return> = { args };
if (this) call.self = this;
try {
call.returned = original.apply(this, args);
} catch (error) {
call.error = error as Error;
calls.push(call);
throw error;
}
calls.push(call);
return call.returned;
} as Spy<Self, Args, Return>;
Object.defineProperties(spy, {
original: {
enumerable: true,
value: original,
},
calls: {
enumerable: true,
value: calls,
},
restored: {
enumerable: true,
get: () => false,
},
restore: {
enumerable: true,
value: () => {
throw new MockError(
"Cannot restore: function cannot be restored",
);
},
},
});
return spy;
}
/**
* Creates a session that tracks all mocks created before it's restored.
* If a callback is provided, it restores all mocks created within it.
*
* @example Usage
* ```ts
* import { mockSession, restore, stub } from "@std/testing/mock";
* import { assertEquals, assertNotEquals } from "@std/assert";
*
* const setTimeout = globalThis.setTimeout;
* const id = mockSession();
*
* stub(globalThis, "setTimeout");
*
* assertNotEquals(globalThis.setTimeout, setTimeout);
*
* restore(id);
*
* assertEquals(globalThis.setTimeout, setTimeout);
* ```
*
* @returns The id of the created session.
*/
export function mockSession(): number;
/**
* Creates a session that tracks all mocks created before it's restored.
* If a callback is provided, it restores all mocks created within it.
*
* @example Usage
* ```ts
* import { mockSession, restore, stub } from "@std/testing/mock";
* import { assertEquals, assertNotEquals } from "@std/assert";
*
* const setTimeout = globalThis.setTimeout;
* const session = mockSession(() => {
* stub(globalThis, "setTimeout");
* assertNotEquals(globalThis.setTimeout, setTimeout);
* });
*
* session();
*
* assertEquals(globalThis.setTimeout, setTimeout); // stub is restored
* ```
*
* @typeParam Self The self type of the function.
* @typeParam Args The arguments type of the function.
* @typeParam Return The return type of the function.
* @param func The function to be used for the created session.
* @returns The function to execute the session.
*/
export function mockSession<
Self,
Args extends unknown[],
Return,
>(
func: (this: Self, ...args: Args) => Return,
): (this: Self, ...args: Args) => Return;
export function mockSession<
Self,
Args extends unknown[],
Return,
>(
func?: (this: Self, ...args: Args) => Return,
): number | ((this: Self, ...args: Args) => Return) {
if (func) {
return function (this: Self, ...args: Args): Return {
const id = sessions.length;
sessions.push(new Set());
try {
return func.apply(this, args);
} finally {
restore(id);
}
};
} else {
sessions.push(new Set());
return sessions.length - 1;
}
}
/**
* Creates an async session that tracks all mocks created before the promise resolves.
*
* @example Usage
* ```ts
* import { mockSessionAsync, restore, stub } from "@std/testing/mock";
* import { assertEquals, assertNotEquals } from "@std/assert";
*
* const setTimeout = globalThis.setTimeout;
* const session = mockSessionAsync(async () => {
* stub(globalThis, "setTimeout");
* assertNotEquals(globalThis.setTimeout, setTimeout);
* });
*
* await session();
*
* assertEquals(globalThis.setTimeout, setTimeout); // stub is restored
* ```
* @typeParam Self The self type of the function.
* @typeParam Args The arguments type of the function.
* @typeParam Return The return type of the function.
* @param func The function.
* @returns The return value of the function.
*/
export function mockSessionAsync<
Self,
Args extends unknown[],
Return,
>(
func: (this: Self, ...args: Args) => Promise<Return>,
): (this: Self, ...args: Args) => Promise<Return> {
return async function (this: Self, ...args: Args): Promise<Return> {
const id = sessions.length;
sessions.push(new Set());
try {
return await func.apply(this, args);
} finally {
restore(id);
}
};
}
/**
* Restores all mocks registered in the current session that have not already been restored.
* If an id is provided, it will restore all mocks registered in the session associed with that id that have not already been restored.
*
* @example Usage
* ```ts
* import { mockSession, restore, stub } from "@std/testing/mock";
* import { assertEquals, assertNotEquals } from "@std/assert";
*
* const setTimeout = globalThis.setTimeout;
*
* stub(globalThis, "setTimeout");
*
* assertNotEquals(globalThis.setTimeout, setTimeout);
*
* restore();
*
* assertEquals(globalThis.setTimeout, setTimeout);
* ```
*
* @param id The id of the session to restore. If not provided, all mocks registered in the current session are restored.
*/
export function restore(id?: number) {
id ??= (sessions.length || 1) - 1;
while (id < sessions.length) {
const session = sessions.pop();
if (session) {
for (const value of session) {
value.restore();
}
}
}
}
/** Wraps an instance method with a Spy. */
function methodSpy<
Self,
Args extends unknown[],
Return,
>(self: Self, property: keyof Self): MethodSpy<Self, Args, Return> {
if (typeof self[property] !== "function") {
throw new MockError(
"Cannot spy: property is not an instance method",
);
}
if (isSpy(self[property])) {
throw new MockError(
"Cannot spy: already spying on instance method",
);
}
const propertyDescriptor = Object.getOwnPropertyDescriptor(self, property);
if (propertyDescriptor && !propertyDescriptor.configurable) {
throw new MockError(
"Cannot spy: non-configurable instance method",
);
}
const original = self[property] as unknown as (
this: Self,
...args: Args
) => Return;
const calls: SpyCall<Self, Args, Return>[] = [];
let restored = false;
const spy = function (this: Self, ...args: Args): Return {
const call: SpyCall<Self, Args, Return> = { args };
if (this) call.self = this;
try {
call.returned = original.apply(this, args);
} catch (error) {
call.error = error as Error;
calls.push(call);
throw error;
}
calls.push(call);
return call.returned;
} as MethodSpy<Self, Args, Return>;
Object.defineProperties(spy, {
original: {
enumerable: true,
value: original,
},
calls: {
enumerable: true,
value: calls,
},
restored: {
enumerable: true,
get: () => restored,
},
restore: {
enumerable: true,
value: () => {
if (restored) {
throw new MockError(
"Cannot restore: instance method already restored",
);
}
if (propertyDescriptor) {
Object.defineProperty(self, property, propertyDescriptor);
} else {
delete self[property];
}
restored = true;
unregisterMock(spy);
},
},
[Symbol.dispose]: {
value: () => {
spy.restore();
},
},
});
Object.defineProperty(self, property, {
configurable: true,
enumerable: propertyDescriptor?.enumerable ?? false,
writable: propertyDescriptor?.writable ?? false,
value: spy,
});
registerMock(spy);
return spy;
}
/** A constructor wrapper that records all calls made to it. */
export interface ConstructorSpy<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
> {
/** Construct an instance. */
new (...args: Args): Self;
/** The function that is being spied on. */
original: new (...args: Args) => Self;
/** Information about calls made to the function or instance method. */
calls: SpyCall<Self, Args, Self>[];
/** Whether or not the original instance method has been restored. */
restored: boolean;
/** If spying on an instance method, this restores the original instance method. */
restore(): void;
}
/** Wraps a constructor with a Spy. */
function constructorSpy<
Self,
Args extends unknown[],
>(
constructor: new (...args: Args) => Self,
): ConstructorSpy<Self, Args> {
const original = constructor;
const calls: SpyCall<Self, Args, Self>[] = [];
// @ts-ignore TS2509: Can't know the type of `original` statically.
const spy = class extends original {
// deno-lint-ignore constructor-super
constructor(...args: Args) {
const call: SpyCall<Self, Args, Self> = { args };
try {
super(...args);
call.returned = this as unknown as Self;
} catch (error) {
call.error = error as Error;
calls.push(call);
throw error;
}
calls.push(call);
}
static readonly name = original.name;
static readonly original = original;
static readonly calls = calls;
static readonly restored = false;
static restore() {
throw new MockError(
"Cannot restore: constructor cannot be restored",
);
}
} as ConstructorSpy<Self, Args>;
return spy;
}
/**
* Utility for extracting the arguments type from a property
*
* @internal
*/
export type GetParametersFromProp<
Self,
Prop extends keyof Self,
> = Self[Prop] extends (...args: infer Args) => unknown ? Args
: unknown[];
/**
* Utility for extracting the return type from a property
*
* @internal
*/
export type GetReturnFromProp<
Self,
Prop extends keyof Self,
> // deno-lint-ignore no-explicit-any
= Self[Prop] extends (...args: any[]) => infer Return ? Return
: unknown;
/** SpyLink object type. */
export type SpyLike<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> = Spy<Self, Args, Return> | ConstructorSpy<Self, Args>;
/** Creates a spy function.
*
* @example Usage
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* spy,
* } from "@std/testing/mock";
*
* const func = spy();
*
* func();
* func(1);
* func(2, 3);
*
* assertSpyCalls(func, 3);
*
* // asserts each call made to the spy function.
* assertSpyCall(func, 0, { args: [] });
* assertSpyCall(func, 1, { args: [1] });
* assertSpyCall(func, 2, { args: [2, 3] });
* ```
*
* @typeParam Self The self type of the function.
* @typeParam Args The arguments type of the function.
* @typeParam Return The return type of the function.
* @returns The spy function.
*/
export function spy<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
Return = undefined,
>(): Spy<Self, Args, Return>;
/**
* Create a spy function with the given implementation.
*
* @example Usage
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* spy,
* } from "@std/testing/mock";
*
* const func = spy((a: number, b: number) => a + b);
*
* func(3, 4);
* func(5, 6);
*
* assertSpyCalls(func, 2);
*
* // asserts each call made to the spy function.
* assertSpyCall(func, 0, { args: [3, 4], returned: 7 });
* assertSpyCall(func, 1, { args: [5, 6], returned: 11 });
* ```
*
* @typeParam Self The self type of the function to wrap
* @typeParam Args The arguments type of the function to wrap
* @typeParam Return The return type of the function to wrap
* @param func The function to wrap
* @returns The wrapped function.
*/
export function spy<
Self,
Args extends unknown[],
Return,
>(func: (this: Self, ...args: Args) => Return): Spy<Self, Args, Return>;
/**
* Create a spy constructor.
*
* @example Usage
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* spy,
* } from "@std/testing/mock";
*
* class Foo {
* constructor(value: string) {}
* };
*
* const Constructor = spy(Foo);
*
* new Constructor("foo");
* new Constructor("bar");
*
* assertSpyCalls(Constructor, 2);
*
* // asserts each call made to the spy function.
* assertSpyCall(Constructor, 0, { args: ["foo"] });
* assertSpyCall(Constructor, 1, { args: ["bar"] });
* ```
*
* @typeParam Self The type of the instance of the class.
* @typeParam Args The arguments type of the constructor
* @param constructor The constructor to spy.
* @returns The wrapped constructor.
*/
export function spy<
Self,
Args extends unknown[],
>(
constructor: new (...args: Args) => Self,
): ConstructorSpy<Self, Args>;
/**
* Wraps a instance method with a Spy.
*
* @example Usage
* ```ts
* import {
* assertSpyCall,
* assertSpyCalls,
* spy,
* } from "@std/testing/mock";
*
* const obj = {
* method(a: number, b: number): number {
* return a + b;
* },
* };
*
* const methodSpy = spy(obj, "method");
*
* obj.method(1, 2);
* obj.method(3, 4);
*
* assertSpyCalls(methodSpy, 2);
*
* // asserts each call made to the spy function.
* assertSpyCall(methodSpy, 0, { args: [1, 2], returned: 3 });
* assertSpyCall(methodSpy, 1, { args: [3, 4], returned: 7 });
* ```
*
* @typeParam Self The type of the instance to spy the method of.
* @typeParam Prop The property to spy.
* @param self The instance to spy.
* @param property The property of the method to spy.
* @returns The spy function.
*/
export function spy<
Self,
Prop extends keyof Self,
>(
self: Self,
property: Prop,
): MethodSpy<
Self,
GetParametersFromProp<Self, Prop>,
GetReturnFromProp<Self, Prop>
>;
export function spy<
Self,
Args extends unknown[],
Return,
>(
funcOrConstOrSelf?:
| ((this: Self, ...args: Args) => Return)
| (new (...args: Args) => Self)
| Self,
property?: keyof Self,
): SpyLike<Self, Args, Return> {
if (!funcOrConstOrSelf) {
return functionSpy<Self, Args, Return>();
} else if (property !== undefined) {
return methodSpy<Self, Args, Return>(funcOrConstOrSelf as Self, property);
} else if (funcOrConstOrSelf.toString().startsWith("class")) {
return constructorSpy<Self, Args>(
funcOrConstOrSelf as new (...args: Args) => Self,
);
} else {
return functionSpy<Self, Args, Return>(
funcOrConstOrSelf as (this: Self, ...args: Args) => Return,
);
}
}
/** An instance method replacement that records all calls made to it. */
export interface Stub<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> extends MethodSpy<Self, Args, Return> {
/** The function that is used instead of the original. */
fake: (this: Self, ...args: Args) => Return;
}
/**
* Replaces an instance method with a Stub with empty implementation.
*
* @example Usage
* ```ts
* import { stub, assertSpyCalls } from "@std/testing/mock";
*
* const obj = {
* method() {
* // some inconventient feature for testing
* },
* };
*
* const methodStub = stub(obj, "method");
*
* for (const _ of Array(5)) {
* obj.method();
* }
*
* assertSpyCalls(methodStub, 5);
* ```
*
* @typeParam Self The self type of the instance to replace a method of.
* @typeParam Prop The property of the instance to replace.
* @param self The instance to replace a method of.
* @param property The property of the instance to replace.
* @returns The stub function which replaced the original.
*/
export function stub<
Self,
Prop extends keyof Self,
>(
self: Self,
property: Prop,
): Stub<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>;
/**
* Replaces an instance method with a Stub with the given implementation.
*
* @example Usage
* ```ts
* import { stub } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* const obj = {
* method(): number {
* return Math.random();
* },
* };
*
* const methodStub = stub(obj, "method", () => 0.5);
*
* assertEquals(obj.method(), 0.5);
* ```
*
* @typeParam Self The self type of the instance to replace a method of.
* @typeParam Prop The property of the instance to replace.
* @param self The instance to replace a method of.
* @param property The property of the instance to replace.
* @param func The fake implementation of the function.
* @returns The stub function which replaced the original.
*/
export function stub<
Self,
Prop extends keyof Self,
>(
self: Self,
property: Prop,
func: (
this: Self,
...args: GetParametersFromProp<Self, Prop>
) => GetReturnFromProp<Self, Prop>,
): Stub<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>;
export function stub<
Self,
Args extends unknown[],
Return,
>(
self: Self,
property: keyof Self,
func?: (this: Self, ...args: Args) => Return,
): Stub<Self, Args, Return> {
if (self[property] !== undefined && typeof self[property] !== "function") {
throw new MockError(
"Cannot stub: property is not an instance method",
);
}
if (isSpy(self[property])) {
throw new MockError(
"Cannot stub: already spying on instance method",
);
}
const propertyDescriptor = Object.getOwnPropertyDescriptor(self, property);
if (propertyDescriptor && !propertyDescriptor.configurable) {
throw new MockError("Cannot stub: non-configurable instance method");
}
const fake = func ?? (() => {}) as (this: Self, ...args: Args) => Return;
const original = self[property] as unknown as (
this: Self,
...args: Args
) => Return;
const calls: SpyCall<Self, Args, Return>[] = [];
let restored = false;
const stub = function (this: Self, ...args: Args): Return {
const call: SpyCall<Self, Args, Return> = { args };
if (this) call.self = this;
try {
call.returned = fake.apply(this, args);
} catch (error) {
call.error = error as Error;
calls.push(call);
throw error;
}
calls.push(call);
return call.returned;
} as Stub<Self, Args, Return>;
Object.defineProperties(stub, {
original: {
enumerable: true,
value: original,
},
fake: {
enumerable: true,
value: fake,
},
calls: {
enumerable: true,
value: calls,
},
restored: {
enumerable: true,
get: () => restored,
},
restore: {
enumerable: true,
value: () => {
if (restored) {
throw new MockError(
"Cannot restore: instance method already restored",
);
}
if (propertyDescriptor) {
Object.defineProperty(self, property, propertyDescriptor);
} else {
delete self[property];
}
restored = true;
unregisterMock(stub);
},
},
[Symbol.dispose]: {
value: () => {
stub.restore();
},
},
});
Object.defineProperty(self, property, {
configurable: true,
enumerable: propertyDescriptor?.enumerable ?? false,
writable: propertyDescriptor?.writable ?? false,
value: stub,
});
registerMock(stub);
return stub;
}
/**
* Asserts that a spy is called as much as expected and no more.
*
* @example Usage
* ```ts
* import { assertSpyCalls, spy } from "@std/testing/mock";
*
* const func = spy();
*
* func();
* func();
*
* assertSpyCalls(func, 2);
* ```
*
* @typeParam Self The self type of the spy function.
* @typeParam Args The arguments type of the spy function.
* @typeParam Return The return type of the spy function.
* @param spy The spy to check
* @param expectedCalls The number of the expected calls.
*/
export function assertSpyCalls<
Self,
Args extends unknown[],
Return,
>(
spy: SpyLike<Self, Args, Return>,
expectedCalls: number,
) {
try {
assertEquals(spy.calls.length, expectedCalls);
} catch (e) {
assertIsError(e);
let message = spy.calls.length < expectedCalls
? "Spy not called as much as expected:\n"
: "Spy called more than expected:\n";
message += e.message.split("\n").slice(1).join("\n");
throw new AssertionError(message);
}
}
/** Call information recorded by a spy. */
export interface ExpectedSpyCall<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> {
/** Arguments passed to a function when called. */
args?: [...Args, ...unknown[]];
/** The instance that a method was called on. */
self?: Self;
/**
* The value that was returned by a function.
* If you expect a promise to reject, expect error instead.
*/
returned?: Return;
/** The expected thrown error. */
error?: {
/** The class for the error that was thrown by a function. */
// deno-lint-ignore no-explicit-any
Class?: new (...args: any[]) => Error;
/** Part of the message for the error that was thrown by a function. */
msgIncludes?: string;
};
}
function getSpyCall<
Self,
Args extends unknown[],
Return,
>(
spy: SpyLike<Self, Args, Return>,
callIndex: number,
): SpyCall {
if (spy.calls.length < (callIndex + 1)) {
throw new AssertionError("Spy not called as much as expected");
}
return spy.calls[callIndex]!;
}
/**
* Asserts that a spy is called as expected.
*
* @example Usage
* ```ts
* import { assertSpyCall, spy } from "@std/testing/mock";
*
* const func = spy((a: number, b: number) => a + b);
*
* func(3, 4);
* func(5, 6);
*
* // asserts each call made to the spy function.
* assertSpyCall(func, 0, { args: [3, 4], returned: 7 });
* assertSpyCall(func, 1, { args: [5, 6], returned: 11 });
* ```
*
* @typeParam Self The self type of the spy function.
* @typeParam Args The arguments type of the spy function.
* @typeParam Return The return type of the spy function.
* @param spy The spy to check
* @param callIndex The index of the call to check
* @param expected The expected spy call.
*/
export function assertSpyCall<
Self,
Args extends unknown[],
Return,
>(
spy: SpyLike<Self, Args, Return>,
callIndex: number,
expected?: ExpectedSpyCall<Self, Args, Return>,
) {
const call = getSpyCall(spy, callIndex);
if (expected) {
if (expected.args) {
try {
assertEquals(call.args, expected.args);
} catch (e) {
assertIsError(e);
throw new AssertionError(
"Spy not called with expected args:\n" +
e.message.split("\n").slice(1).join("\n"),
);
}
}
if ("self" in expected) {
try {
assertEquals(call.self, expected.self);
} catch (e) {
assertIsError(e);
let message = expected.self
? "Spy not called as method on expected self:\n"
: "Spy not expected to be called as method on object:\n";
message += e.message.split("\n").slice(1).join("\n");
throw new AssertionError(message);
}
}
if ("returned" in expected) {
if ("error" in expected) {
throw new TypeError(
"Do not expect error and return, only one should be expected",
);
}
if (call.error) {
throw new AssertionError(
"Spy call did not return expected value, an error was thrown.",
);
}
try {
assertEquals(call.returned, expected.returned);
} catch (e) {
assertIsError(e);
throw new AssertionError(
"Spy call did not return expected value:\n" +
e.message.split("\n").slice(1).join("\n"),
);
}
}
if ("error" in expected) {
if ("returned" in call) {
throw new AssertionError(
"Spy call did not throw an error, a value was returned.",
);
}
assertIsError(
call.error,
expected.error?.Class,
expected.error?.msgIncludes,
);
}
}
}
/**
* Asserts that an async spy is called as expected.
*
* @example Usage
* ```ts
* import { assertSpyCallAsync, spy } from "@std/testing/mock";
*
* const func = spy((a: number, b: number) => new Promise((resolve) => {
* setTimeout(() => resolve(a + b), 100)
* }));
*
* await func(3, 4);
* await func(5, 6);
*
* // asserts each call made to the spy function.
* await assertSpyCallAsync(func, 0, { args: [3, 4], returned: 7 });
* await assertSpyCallAsync(func, 1, { args: [5, 6], returned: 11 });
* ```
*
* @typeParam Self The self type of the spy function.
* @typeParam Args The arguments type of the spy function.
* @typeParam Return The return type of the spy function.
* @param spy The spy to check
* @param callIndex The index of the call to check
* @param expected The expected spy call.
*/
export async function assertSpyCallAsync<
Self,
Args extends unknown[],
Return,
>(
spy: SpyLike<Self, Args, Promise<Return>>,
callIndex: number,
expected?: ExpectedSpyCall<Self, Args, Promise<Return> | Return>,
) {
const expectedSync = expected && { ...expected };
if (expectedSync) {
delete expectedSync.returned;
delete expectedSync.error;
}
assertSpyCall(spy, callIndex, expectedSync);
const call = getSpyCall(spy, callIndex);
if (call.error) {
throw new AssertionError(
"Spy call did not return a promise, an error was thrown.",
);
}
if (call.returned !== Promise.resolve(call.returned)) {
throw new AssertionError(
"Spy call did not return a promise, a value was returned.",
);
}
if (expected) {
if ("returned" in expected) {
if ("error" in expected) {
throw new TypeError(
"Do not expect error and return, only one should be expected",
);
}
let expectedResolved;
try {
expectedResolved = await expected.returned;
} catch {
throw new TypeError(
"Do not expect rejected promise, expect error instead",
);
}
let resolved;
try {
resolved = await call.returned;
} catch {
throw new AssertionError("Spy call returned promise was rejected");
}
try {
assertEquals(resolved, expectedResolved);
} catch (e) {
assertIsError(e);
throw new AssertionError(
"Spy call did not resolve to expected value:\n" +
e.message.split("\n").slice(1).join("\n"),
);
}
}
if ("error" in expected) {
await assertRejects(
() => Promise.resolve(call.returned),
expected.error?.Class ?? Error,
expected.error?.msgIncludes ?? "",
);
}
}
}
/**
* Asserts that a spy is called with a specific arg as expected.
*
* @example Usage
* ```ts
* import { assertSpyCallArg, spy } from "@std/testing/mock";
*
* const func = spy((a: number, b: number) => a + b);
*
* func(3, 4);
* func(5, 6);
*
* // asserts each call made to the spy function.
* assertSpyCallArg(func, 0, 0, 3);
* assertSpyCallArg(func, 0, 1, 4);
* assertSpyCallArg(func, 1, 0, 5);
* assertSpyCallArg(func, 1, 1, 6);
* ```
*
* @typeParam Self The self type of the spy function.
* @typeParam Args The arguments type of the spy function.
* @typeParam Return The return type of the spy function.
* @typeParam ExpectedArg The expected type of the argument for the spy to be called.
* @param spy The spy to check.
* @param callIndex The index of the call to check.
* @param argIndex The index of the arguments to check.
* @param expected The expected argument.
* @returns The actual argument.
*/
export function assertSpyCallArg<
Self,
Args extends unknown[],
Return,
ExpectedArg,
>(
spy: SpyLike<Self, Args, Return>,
callIndex: number,
argIndex: number,
expected: ExpectedArg,
): ExpectedArg {
const call = getSpyCall(spy, callIndex);
const arg = call?.args[argIndex];
assertEquals(arg, expected);
return arg as ExpectedArg;
}
/**
* Asserts that an spy is called with a specific range of args as expected.
* If a start and end index is not provided, the expected will be compared against all args.
* If a start is provided without an end index, the expected will be compared against all args from the start index to the end.
* The end index is not included in the range of args that are compared.
*
* @example Usage
* ```ts
* import { assertSpyCallArgs, spy } from "@std/testing/mock";
*
* const func = spy((a: number, b: number) => a + b);
*
* func(3, 4);
* func(5, 6);
*
* // asserts each call made to the spy function.
* assertSpyCallArgs(func, 0, [3, 4]);
* assertSpyCallArgs(func, 1, [5, 6]);
* ```
*
* @typeParam Self The self type of the spy function.
* @typeParam Args The arguments type of the spy function.
* @typeParam Return The return type of the spy function.
* @typeParam ExpectedArgs The expected type of the arguments for the spy to be called.
* @param spy The spy to check.
* @param callIndex The index of the call to check.
* @param expected The expected arguments.
* @returns The actual arguments.
*/
export function assertSpyCallArgs<
Self,
Args extends unknown[],
Return,
ExpectedArgs extends unknown[],
>(
spy: SpyLike<Self, Args, Return>,
callIndex: number,
expected: ExpectedArgs,
): ExpectedArgs;
/**
* Asserts that an spy is called with a specific range of args as expected.
* If a start and end index is not provided, the expected will be compared against all args.
* If a start is provided without an end index, the expected will be compared against all args from the start index to the end.
* The end index is not included in the range of args that are compared.
*
* @example Usage
* ```ts
* import { assertSpyCallArgs, spy } from "@std/testing/mock";
*
* const func = spy((...args) => {});
*
* func(0, 1, 2, 3, 4, 5);
*
* assertSpyCallArgs(func, 0, 3, [3, 4, 5]);
* ```
*
* @typeParam Self The self type of the spy function.
* @typeParam Args The arguments type of the spy function.
* @typeParam Return The return type of the spy function.
* @typeParam ExpectedArgs The expected type of the arguments for the spy to be called.
* @param spy The spy to check.
* @param callIndex The index of the call to check.
* @param argsStart The start index of the arguments to check. If not specified, it checks the arguments from the beignning.
* @param expected The expected arguments.
* @returns The actual arguments.
*/
export function assertSpyCallArgs<
Self,
Args extends unknown[],
Return,
ExpectedArgs extends unknown[],
>(
spy: SpyLike<Self, Args, Return>,
callIndex: number,
argsStart: number,
expected: ExpectedArgs,
): ExpectedArgs;
/**
* Asserts that an spy is called with a specific range of args as expected.
* If a start and end index is not provided, the expected will be compared against all args.
* If a start is provided without an end index, the expected will be compared against all args from the start index to the end.
* The end index is not included in the range of args that are compared.
*
* @example Usage
* ```ts
* import { assertSpyCallArgs, spy } from "@std/testing/mock";
*
* const func = spy((...args) => {});
*
* func(0, 1, 2, 3, 4, 5);
*
* assertSpyCallArgs(func, 0, 3, 4, [3]);
* ```
*
* @typeParam Self The self type of the spy function.
* @typeParam Args The arguments type of the spy function.
* @typeParam Return The return type of the spy function.
* @typeParam ExpectedArgs The expected type of the arguments for the spy to be called.
* @param spy The spy to check
* @param callIndex The index of the call to check
* @param argsStart The start index of the arguments to check. If not specified, it checks the arguments from the beignning.
* @param argsEnd The end index of the arguments to check. If not specified, it checks the arguments until the end.
* @param expected The expected arguments.
* @returns The actual arguments
*/
export function assertSpyCallArgs<
Self,
Args extends unknown[],
Return,
ExpectedArgs extends unknown[],
>(
spy: SpyLike<Self, Args, Return>,
callIndex: number,
argsStart: number,
argsEnd: number,
expected: ExpectedArgs,
): ExpectedArgs;
export function assertSpyCallArgs<
ExpectedArgs extends unknown[],
Args extends unknown[],
Return,
Self,
>(
spy: SpyLike<Self, Args, Return>,
callIndex: number,
argsStart?: number | ExpectedArgs,
argsEnd?: number | ExpectedArgs,
expected?: ExpectedArgs,
): ExpectedArgs {
const call = getSpyCall(spy, callIndex);
if (!expected) {
expected = argsEnd as ExpectedArgs;
argsEnd = undefined;
}
if (!expected) {
expected = argsStart as ExpectedArgs;
argsStart = undefined;
}
const args = typeof argsEnd === "number"
? call.args.slice(argsStart as number, argsEnd)
: typeof argsStart === "number"
? call.args.slice(argsStart)
: call.args;
assertEquals(args, expected);
return args as ExpectedArgs;
}
/**
* Creates a function that returns the instance the method was called on.
*
* @example Usage
* ```ts
* import { returnsThis } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* const func = returnsThis();
* const obj = { func };
* assertEquals(obj.func(), obj);
* ```
*
* @typeParam Self The self type of the returned function.
* @typeParam Args The arguments type of the returned function.
* @returns A function that returns the instance the method was called on.
*/
export function returnsThis<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
>(): (this: Self, ...args: Args) => Self {
return function (this: Self): Self {
return this;
};
}
/**
* Creates a function that returns one of its arguments.
*
* @example Usage
* ```ts
* import { returnsArg } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* const func = returnsArg(1);
* assertEquals(func(1, 2, 3), 2);
* ```
*
* @typeParam Arg The type of returned argument.
* @typeParam Self The self type of the returned function.
* @param idx The index of the arguments to use.
* @returns A function that returns one of its arguments.
*/
export function returnsArg<
Arg,
// deno-lint-ignore no-explicit-any
Self = any,
>(
idx: number,
): (this: Self, ...args: Arg[]) => Arg | undefined {
return function (...args: Arg[]): Arg | undefined {
return args[idx];
};
}
/**
* Creates a function that returns its arguments or a subset of them. If end is specified, it will return arguments up to but not including the end.
*
* @example Usage
* ```ts
* import { returnsArgs } from "@std/testing/mock";
* import { assertEquals } from "@std/assert";
*
* const func = returnsArgs();
* assertEquals(func(1, 2, 3), [1, 2, 3]);
* ```
*
* @typeParam Args The arguments type of the returned function
* @typeParam Self The self type of the returned function
* @param start The start index of the arguments to return. Default is 0.
* @param end The end index of the arguments to return.
* @returns A function that returns its arguments or a subset of them.
*/
export function returnsArgs<
Args extends unknown[],
// deno-lint-ignore no-explicit-any
Self = any,
>(
start = 0,
end?: number,
): (this: Self, ...args: Args) => Args {
return function (this: Self, ...args: Args): Args {
return args.slice(start, end) as Args;
};
}
/**
* Creates a function that returns the iterable values. Any iterable values that are errors will be thrown.
*
* @example Usage
* ```ts
* import { returnsNext } from "@std/testing/mock";
* import { assertEquals, assertThrows } from "@std/assert";
*
* const func = returnsNext([1, 2, new Error("foo"), 3]);
* assertEquals(func(), 1);
* assertEquals(func(), 2);
* assertThrows(() => func(), Error, "foo");
* assertEquals(func(), 3);
* ```
*
* @typeParam Return The type of each item of the iterable
* @typeParam Self The self type of the returned function
* @typeParam Args The arguments type of the returned function
* @param values The iterable values
* @return A function that returns the iterable values
*/
export function returnsNext<
Return,
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
>(
values: Iterable<Return | Error>,
): (this: Self, ...args: Args) => Return {
const gen = (function* returnsValue() {
yield* values;
})();
let calls = 0;
return function () {
const next = gen.next();
if (next.done) {
throw new MockError(
`Not expected to be called more than ${calls} time(s)`,
);
}
calls++;
const { value } = next;
if (value instanceof Error) throw value;
return value;
};
}
/**
* Creates a function that resolves the awaited iterable values. Any awaited iterable values that are errors will be thrown.
*
* @example Usage
* ```ts
* import { resolvesNext } from "@std/testing/mock";
* import { assertEquals, assertRejects } from "@std/assert";
*
* const func = resolvesNext([1, 2, new Error("foo"), 3]);
* assertEquals(await func(), 1);
* assertEquals(await func(), 2);
* assertRejects(() => func(), Error, "foo");
* assertEquals(await func(), 3);
* ```
*
* @typeParam Return The type of each item of the iterable
* @typeParam Self The self type of the returned function
* @typeParam Args The type of arguments of the returned function
* @param iterable The iterable to use
* @returns A function that resolves the awaited iterable values
*/
export function resolvesNext<
Return,
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
>(
iterable:
| Iterable<Return | Error | Promise<Return | Error>>
| AsyncIterable<Return | Error | Promise<Return | Error>>,
): (this: Self, ...args: Args) => Promise<Return> {
const gen = (async function* returnsValue() {
yield* iterable;
})();
let calls = 0;
return async function () {
const next = await gen.next();
if (next.done) {
throw new MockError(
`Not expected to be called more than ${calls} time(s)`,
);
}
calls++;
const { value } = next;
if (value instanceof Error) throw value;
return value;
};
}
|