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
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
|
.. LuaUnit documentation master file, created by
sphinx-quickstart on Thu Aug 21 21:45:55 2014.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Welcome to LuaUnit's documentation!
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Introduction
************
LuaUnit is a popular unit-testing framework for Lua, with an interface typical
of xUnit libraries (Python unittest, Junit, NUnit, ...). It supports
several output formats (Text, TAP, JUnit, ...) to be used directly or work with Continuous Integration platforms
(Jenkins, Hudson, ...).
For simplicity, LuaUnit is contained into a single-file and has no external dependency. To start using it,
just add the file *luaunit.lua* to your project. A `LuaRocks package`_ is also available.
.. _LuaRocks package: https://luarocks.org/modules/bluebird75/luaunit
Tutorial and reference documentation is available on `Read-the-docs`_ .
.. _Read-the-docs: http://luaunit.readthedocs.org/en/latest/
LuaUnit also provides some dedicated support to scientific computing. See the section `Scientific computing and LuaUnit`_
LuaUnit may also be used as an assertion library. In that case, you will call the assertion functions, which generate errors
when the assertion fails. The error includes a detailed analysis of the failed assertion, like when executing a test suite.
LuaUnit provides another generic usage function: :func:`prettystr` which converts any value to a nicely
formatted string. It supports in particular tables, nested table and even recursive tables.
More details
************
LuaUnit provides a wide range of assertions and goes into great efforts to provide the most useful output. For example
since version 3.3 , comparing lists will provide a detailed difference analysis:
.. code-block::
-- lua test code. Can you spot the difference ?
function TestListCompare:test1()
local A = { 121221, 122211, 121221, 122211, 121221, 122212, 121212, 122112, 122121, 121212, 122121 }
local B = { 121221, 122211, 121221, 122211, 121221, 122212, 121212, 122112, 121221, 121212, 122121 }
lu.assertEquals( A, B )
end
$ lua test_some_lists_comparison.lua
TestListCompare.test1 ... FAIL
test/some_lists_comparisons.lua:22: expected:
List difference analysis:
* lists A (actual) and B (expected) have the same size
* lists A and B start differing at index 9
* lists A and B are equal again from index 10
* Common parts:
= A[1], B[1]: 121221
= A[2], B[2]: 122211
= A[3], B[3]: 121221
= A[4], B[4]: 122211
= A[5], B[5]: 121221
= A[6], B[6]: 122212
= A[7], B[7]: 121212
= A[8], B[8]: 122112
* Differing parts:
- A[9]: 122121
+ B[9]: 121221
* Common parts at the end of the lists
= A[10], B[10]: 121212
= A[11], B[11]: 122121
The command-line options provide a flexible interface to select tests by name or patterns, control output
format, set verbosity and more. See `Using the command-line`_ .
LuaUnit is very well tested: code coverage is 99.5% . The test suite is run on every version of Lua (Lua 5.1 to 5.3, LuaJIT 2.0 and 2.1 beta)
and on many OS (Windows Seven, Windows Server 2012, MacOs X and Ubuntu). You can check the continuous build results on `Travis-CI`_ and `AppVeyor`_ .
.. _Travis-CI: https://travis-ci.org/bluebird75/luaunit
.. _AppVeyor: https://ci.appveyor.com/project/bluebird75/luaunit/history
LuaUnit is maintained on GitHub: https://github.com/bluebird75/luaunit . We gladly accept feature requests and even better Pull Requests.
LuaUnit is released under the BSD license.
Installation
============
LuaUnit is packed into a single-file. To make start using it, just add the file to your project.
Several installation methods are available.
LuaRocks
--------
LuaUnit is available as a `LuaRocks package`_ .
.. _LuaRocks package: https://luarocks.org/modules/bluebird75/luaunit
GitHub
------
The simplest way to install LuaUnit is to fetch the GitHub version:
.. code-block:: bash
git clone git@github.com:bluebird75/luaunit.git
Then copy the file luaunit.lua into your project or the Lua libs directory.
The version in development on GitHub is always stable and can be used safely.
On Linux, you can also install it into your Lua directories
.. code-block:: bash
sudo python doit.py install
If that fail, edit the function *install()* in the file *doit.py* to adjust
the Lua version and installation directory. It uses, by default, Linux paths that depend on the version.
Upgrade note
================
**Important note when upgrading from version below 3.1** : there is a break of backward compatibility in version 3.1, assertions functions are no longer exported directly to the global namespace. See :ref:`luaunit-global-asserts` on how to adjust or restore previous behavior.
LuaUnit development
===================
See `Developing luaunit`_
Version and Changelog
=====================
This documentation describes the functionality of LuaUnit v3.2 .
New in version 3.4 - 02 March 2021
----------------------------------
* support for Lua 5.4
* :func:`assertAlmostEquals` works also on tables and nested structures
* choose test output style with environment variable `LUAUNIT_OUTPUT`
* :func:`runner:setOutputType()` accepts the xml filename as second argument when using the format *junit*
* improve printing of table information in case of cycles
* add ability to skip tests with :func:`skip` and :func:`skipIf`
* detect attempts to exit the test suite before it is finished running
* add :func:`assertErrorMsgContentEquals` to validate exactly any error message
* filter out some stack entries when printing assertions (useful when embedding LuaUnit inside another test layer) with :ref:`strip_extra_entries_in_stack_trace`
* add :func:`assertTableContains` and :func:`assertNotTableContains` to verify the presence of a given value within a table
* remove option `TABLE_EQUALS_KEYBYCONTENT`, it did not make sense
* bugfix:
* :func:`assertIs`/:func:`assertNotIs` deals better with protected metatables
* :func:`assertEquals` deals better with tables containing cycles of different structure
* fix table length comparison for table returning inconsistent length
New in version 3.3 - 6. Mar 2018
--------------------------------
* General
* when comparing lists with :func:`assertEquals`, failure message provides an advanced comparison of the lists
* :func:`assertErrorMsgEquals` can check for error raised as tables
* tests may be finished early with :func:`fail`, :func:`failIf`, :func:`success` or :func:`successIf`
* improve printing of recursive tables
* improvements and fixes to JUnit and TAP output
* stricter :func:`assertTrue` and :func:`assertFalse`: they only succeed with boolean values
* add :func:`assertEvalToTrue` and :func:`assertEvalToFalse` with previous :func:`assertTrue`/:func:`assertFalse` behavior of coercing to boolean before asserting
* all assertion functions accept an optional extra message, to be printed along the failure
* New command-line arguments:
* can now shuffle tests with ``--shuffle`` or ``-s``
* possibility to repeat tests (for example to trigger a JIT), with ``--repeat NUM`` or ``-r NUM``
* more flexible test selection with inclusion (``--pattern`` / ``-p``) or exclusion (``--exclude`` / ``-x``) or combination of both
* Scientific computing dedicated support (see documentation):
* provide the machine epsilon in EPS
* new functions: :func:`assertNan`, :func:`assertInf`, :func:`assertPlusInf`, :func:`assertMinusInf`, :func:`assertPlusZero`, :func:`assertMinusZero` and
their negative version
* in :func:`assertAlmostEquals`, margin no longer provides a default value of 1E-11, the machine epsilon is used instead
* Platform and continuous integration support:
* validate LuaUnit on MacOs platform (thank to Travis CI)
* validate LuaUnit with 32 bits numbers (floats) and 64 bits numbers (double)
* add test coverage measurements thank to coveralls.io . Status: 99.76% of the code is verified.
* use cache for AppVeyor and Travis builds
* support for ``luarocks doc`` command
* General doc improvements (detailed description of all output, more cross-linking between sections)
New in version 3.2 - 12. Jul 2016
---------------------------------
* Add command-line option to stop on first error or failure. See `Other options`_
* Distinguish between failures (failed assertion) and errors
* Support for new versions: Lua 5.3 and LuaJIT (2.0, 2.1 beta)
* Validation of all lua versions on Travis CI and AppVeyor
* Add compatibility layer with forked luaunit v2.x
* Added documentation about development process. See `Developing luaUnit`_
* Improved support for table containing keys of type table. See :ref:`comparing-table-keys-table`
* Small bug fixes, several internal improvements
* Availability of a Luarock package. See `https://luarocks.org/modules/bluebird75/luaunit` .
New in version 3.1 - 10. Mar 2015
---------------------------------
* luaunit no longer pollutes global namespace, unless defining EXPORT_ASSERT_TO_GLOBALS to true. See :ref:`luaunit-global-asserts`
* fixes and validation of JUnit XML generation
* strip luaunit internal information from stacktrace
* general improvements of test results with duration and other details
* improve printing for tables, with an option to always print table id. See :ref:`table-printing`
* fix printing of recursive tables
**Important note when upgrading to version 3.1** : assertions functions are
no longer exported directly to the global namespace. See :ref:`luaunit-global-asserts`
New in version 3.0 - 9. Oct 2014
--------------------------------
Because LuaUnit was forked and released as some 2.x version, version number
is now jumping to 3.0 .
* full documentation available in text, html and pdf at http://luaunit.read-the-docs.org
* new output format: JUnit, compatible with Bamboo and other CI platforms. See `Output formats`_
* much better table assertions
* new assertions for strings, with patterns and case insensitivity: assertStrContains,
assertNotStrContains, assertNotStrIContains, assertStrIContains, assertStrMatches
* new assertions for floats: assertAlmostEquals, assertNotAlmostEquals
* type assertions: assertIsString, assertIsNumber, ...
* error assertions: assertErrorMsgEquals, assertErrorMsgContains, assertErrorMsgMatches
* improved error messages for several assertions
* command-line options to select test, control output type and verbosity
New in version 1.5 - 8. Nov 2012
--------------------------------
* compatibility with Lua 5.1 and 5.2
* better object model internally
* a lot more of internal tests
* several internal bug fixes
* make it easy to customize the test output
* running test functions no longer requires a wrapper
* several level of verbosity
New in version 1.4 - 26. Jul 2012
---------------------------------
* switch from X11 to more popular BSD license
* add TAP output format for integration into Jenkins. See `Output formats`_
* official repository now on GitHub
New in version 1.3 - 30. Oct 2007
---------------------------------
* port to lua 5.1
* iterate over the test classes, methods and functions in the alphabetical order
* change the default order of expected, actual in assertEquals. See `Equality assertions`_
Version 1.2 - 13. Jun 2005
---------------------------------
* first public release
Version 1.1
------------
* move global variables to internal variables
* assertion order is configurable between expected/actual or actual/expected. See `Equality assertions`_
* new assertion to check that a function call returns an error
* display the calling stack when an error is spotted
* two verbosity level, like in python unittest
Getting started with LuaUnit
****************************
This section will guide you through a step by step usage of *LuaUnit* . The full source code
of the example below is available in the : `source_code_example`_ or in the file *my_test_suite.lua*
in the doc directory.
Setting up your test script
===========================
To get started, create your file *my_test_suite.lua* .
The script should import LuaUnit::
lu = require('luaunit')
The last line executes your script with LuaUnit and exit with the
proper error code::
os.exit( lu.LuaUnit.run() )
Now, run your file with::
lua my_test_suite.lua
It prints something like::
Ran 0 tests in 0.000 seconds, 0 successes, 0 failures
OK
Now, your testing framework is in place, you can start writing tests.
Writing tests
=============
LuaUnit scans all variables that start with *test* or *Test*.
If they are functions, or if they are tables that contain
functions that start with *test* or *Test*, they are run as part of the test suite.
So just write a function whose name starts with test. Inside test functions, use the assertions functions provided by LuaUnit, such
as :func:`assertEquals`.
Let's see that in practice.
Suppose you want to test the following add function::
function add(v1,v2)
-- add positive numbers
-- return 0 if any of the numbers are 0
-- error if any of the two numbers are negative
if v1 < 0 or v2 < 0 then
error('Can only add positive or null numbers, received '..v1..' and '..v2)
end
if v1 == 0 or v2 == 0 then
return 0
end
return v1+v2
end
You write the following tests::
function testAddPositive()
lu.assertEquals(add(1,1),2)
end
function testAddZero()
lu.assertEquals(add(1,0),0)
lu.assertEquals(add(0,5),0)
lu.assertEquals(add(0,0),0)
end
:func:`assertEquals` is the most commonly used assertion function. It
verifies that both argument are equals, in the order actual value, expected value.
Rerun your test script (``-v`` is to activate a more verbose output)::
$ lua my_test_suite.lua -v
It now prints::
Started on 02/19/17 22:15:53
TestAdd.testAddPositive ... Ok
TestAdd.testAddZero ... Ok
=========================================================
Ran 2 tests in 0.003 seconds, 2 successes, 0 failures
OK
You always have:
* the date at which the test suite was started
* the group to which the function belongs (usually, the name of the function table, and *<TestFunctions>* for all direct test functions)
* the name of the function being executed
* a report at the end, with number of executed test, number of non selected tests if any, number of failures, number of errors (if any) and duration.
The difference between failures and errors are:
* luaunit assertion functions generate failures
* any unexpected error during execution generates an error
* failures or errors during setup() or teardown() always generate errors
If we continue with our example, we also want to test that when the function receives negative numbers, it generates an error. Use
:func:`assertError` or even better, :func:`assertErrorMsgContains` to also validate the content
of the error message. There are other types or error checking functions, see `Error assertions`_ . Here
we use :func:`assertErrorMsgContains` . First argument is the expected message, then the function to call
and the optional arguments::
function testAddError()
lu.assertErrorMsgContains('Can only add positive or null numbers, received 2 and -3', add, 2, -3)
end
Now, suppose we also have the following function to test::
function adder(v)
-- return a function that adds v to its argument using add
function closure( x ) return x+v end
return closure
end
We want to test the type of the value returned by adder and its behavior. LuaUnit
provides assertion for type testing (see `Type assertions`_ ). In this case, we use
:func:`assertIsFunction`::
function testAdder()
f = adder(3)
lu.assertIsFunction( f )
lu.assertEquals( f(2), 5 )
end
Grouping tests, setup/teardown functionality
=====================================================
When the number of tests starts to grow, you usually organise them
into separate groups. You can do that with LuaUnit by putting them
inside a table (whose name must start with *Test* or *test* ).
For example, assume we have a second function to test::
function div(v1,v2)
-- divide positive numbers
-- return 0 if any of the numbers are 0
-- error if any of the two numbers are negative
if v1 < 0 or v2 < 0 then
error('Can only divide positive or null numbers, received '..v1..' and '..v2)
end
if v1 == 0 or v2 == 0 then
return 0
end
return v1/v2
end
We move the tests related to the function add into their own table::
TestAdd = {}
function TestAdd:testAddPositive()
lu.assertEquals(add(1,1),2)
end
function TestAdd:testAddZero()
lu.assertEquals(add(1,0),0)
lu.assertEquals(add(0,5),0)
lu.assertEquals(add(0,0),0)
end
function TestAdd:testAddError()
lu.assertErrorMsgContains('Can only add positive or null numbers, received 2 and -3', add, 2, -3)
end
function TestAdd:testAdder()
f = adder(3)
lu.assertIsFunction( f )
lu.assertEquals( f(2), 5 )
end
-- end of table TestAdd
Then we create a second set of tests for div::
TestDiv = {}
function TestDiv:testDivPositive()
lu.assertEquals(div(4,2),2)
end
function TestDiv:testDivZero()
lu.assertEquals(div(4,0),0)
lu.assertEquals(div(0,5),0)
lu.assertEquals(div(0,0),0)
end
function TestDiv:testDivError()
lu.assertErrorMsgContains('Can only divide positive or null numbers, received 2 and -3', div, 2, -3)
end
-- end of table TestDiv
Execution of the test suite now looks like this::
Started on 02/19/17 22:15:53
TestAdd.testAddError ... Ok
TestAdd.testAddPositive ... Ok
TestAdd.testAddZero ... Ok
TestAdd.testAdder ... Ok
TestDiv.testDivError ... Ok
TestDiv.testDivPositive ... Ok
TestDiv.testDivZero ... Ok
=========================================================
Ran 7 tests in 0.006 seconds, 7 successes, 0 failures
OK
When tests are defined in tables, you can optionally define two special
functions, *setUp()* and *tearDown()*, which will be executed
respectively before and after every test.
These function may be used to create specific resources for the
test being executed and cleanup the test environment.
For a practical example, imagine that we have a *log()* function
that writes strings to a log file on disk. The file is created
upon first usage of the function, and the filename is defined
by calling the function *initLog()*.
The tests for these functions would take advantage of the *setup/teardown*
functionality to prepare a log filename shared
by all tests, make sure that all tests start with a non existing
log file name, and delete the log filename after every test::
TestLogger = {}
function TestLogger:setUp()
-- define the fname to use for logging
self.fname = 'mytmplog.log'
-- make sure the file does not already exists
os.remove(self.fname)
end
function TestLogger:testLoggerCreatesFile()
initLog(self.fname)
log('toto')
-- make sure that our log file was created
f = io.open(self.fname, 'r')
lu.assertNotNil( f )
f:close()
end
function TestLogger:tearDown()
-- cleanup our log file after all tests
os.remove(self.fname)
end
.. Note::
*Errors generated during execution of setUp() or tearDown()
functions are considered test failures.*
.. Note::
*For compatibility with luaunit v2 and other lua unit-test frameworks,
setUp() and tearDown() may also be named setup(), SetUp(), Setup() and teardown(), TearDown(), Teardown().*
Using the command-line
======================
You can control the LuaUnit execution from the command-line:
**Output format**
Choose the test output format with ``-o`` or ``--output``. Available formats are:
* text: the default output format
* nil: no output at all
* tap: TAP format
* junit: output junit xml
Example of non-verbose text format::
$ lua doc/my_test_suite.lua
.......
Ran 7 tests in 0.003 seconds, 7 successes, 0 failures
OK
Example of TAP format::
$ lua doc/my_test_suite.lua -o TAP
1..7
# Started on 02/19/17 22:15:53
# Starting class: TestAdd
ok 1 TestAdd.testAddError
ok 2 TestAdd.testAddPositive
ok 3 TestAdd.testAddZero
ok 4 TestAdd.testAdder
# Starting class: TestDiv
ok 5 TestDiv.testDivError
ok 6 TestDiv.testDivPositive
ok 7 TestDiv.testDivZero
# Ran 7 tests in 0.007 seconds, 7 successes, 0 failures
Output formats may also be controlled by the following environment variables:
* LUAUNIT_OUTPUT: output format to use
* LUAUNIT_JUNIT_FNAME: for junit output format, name of the xml file
For a more detailed overview of all formats and their verbosity see the section `Output formats`_ .
**List of tests to run**
You can list some test names on the command-line to run only those tests.
The name must be the exact match of either the test table, the test function or the test table
and the test method. The option may be repeated.
Example::
-- Run all TestAdd table tests and one test of TestDiv table.
$ lua doc/my_test_suite.lua TestAdd TestDiv.testDivError -v
Started on 02/19/17 22:15:53
TestAdd.testAddError ... Ok
TestAdd.testAddPositive ... Ok
TestAdd.testAddZero ... Ok
TestAdd.testAdder ... Ok
TestDiv.testDivError ... Ok
=========================================================
Ran 5 tests in 0.003 seconds, 5 successes, 0 failures
OK
**Including / excluding tests**
The most flexible approach for selecting tests to use the include and exclude functionality.
With ``--pattern`` or ``-p``, you can provide a lua pattern and only the tests that contain
the pattern will actually be run.
Example::
-- Run all tests of zero testing and error testing
-- by using the magic character .
$ lua my_test_suite.lua -v -p Err.r -p Z.ro
For our test suite, it gives the following output::
Started on 02/19/17 22:15:53
TestAdd.testAddError ... Ok
TestAdd.testAddZero ... Ok
TestDiv.testDivError ... Ok
TestDiv.testDivZero ... Ok
=========================================================
Ran 4 tests in 0.003 seconds, 4 successes, 0 failures, 3 non-selected
OK
The number of tests ignored by the selection is printed, along
with the test result. The pattern can be any lua pattern. Be sure to exclude all magic
characters with % (like -+?*) and protect your pattern from the shell
interpretation by putting it in quotes.
You can also exclude tests that match some patterns:
Example::
-- Run all tests except zero testing and except error testing
$ lua my_test_suite.lua -v -x Error -x Zero
For our test suite, it gives the following output::
Started on 02/19/17 22:29:45
TestAdd.testAddPositive ... Ok
TestAdd.testAdder ... Ok
TestDiv.testDivPositive ... Ok
=========================================================
Ran 3 tests in 0.003 seconds, 3 successes, 0 failures, 4 non-selected
OK
You can also combine test selection and test exclusion. See `Flexible test selection`_
Conclusion
==========
You now know enough of LuaUnit to start writing your test suite. Check
the reference documentation for a complete list of
assertions, command-line options and specific behavior.
Reference documentation
***********************
Command-line options
====================
Usage: lua <your_test_suite.lua> [options] [testname1 [testname2] ...]
**Test names**
When no test names are supplied, all tests are collected.
The syntax for supplying test names can be either: name of the function, name of the table
or [name of the table].[name of the function]. Only the supplied tests will be executed.
Selecting tests with --pattern and --exclude is usually more flexible. See `Flexible test selection`_
**Options**
--output, -o FORMAT Set output format to FORMAT. Possible values: text, tap, junit, nil . See `Output formats`_
--name, -n FILENAME For junit format only, mandatory name of xml file. Ignored for other formats.
--pattern, -p PATTERN Execute all test names matching the Lua PATTERN. May be repeated to include severals patterns. See `Flexible test selection`_
--exclude, -x PATTERN Exclude all test names matching the Lua PATTERN. May be repeated to exclude severals patterns. See `Flexible test selection`_
--repeat, -r NUM Repeat all tests NUM times, e.g. to trigger the JIT. See `Other options`_
--shuffle, -s Shuffle tests before running them. See `Other options`_
--error, -e Stop on first error. See `Other options`_
--failure, -f Stop on first failure or error. See `Other options`_
--verbose, -v Increase verbosity
--quiet, -q Set verbosity to minimum
--help, -h Print help
--version Version information of LuaUnit
Output formats
----------------------
Choose the output format with the syntax ``-o FORMAT`` or ``--output FORMAT`` or the environment variable ``LUAUNIT_OUTPUT``.
Formats available:
* ``text``: the default output format of LuaUnit
* ``tap``: output compatible with the `Test Anything Protocol`_
* ``junit``: output compatible with the *JUnit XML* format (used by many CI
platforms). The XML is written to the file provided with the ``--name`` or ``-n`` option or the environment variable ``LUAUNIT_JUNIT_FNAME``.
* ``nil``: no output at all
.. _Test Anything Protocol: http://testanything.org/
For more information on each format, see `Output formats details`_
Other options
--------------
**Stopping on first error or failure**
If ``--failure`` or ``-f`` is passed as an option, LuaUnit will stop on the first failure or error and display the test results.
If ``--error`` or ``-e`` is passed as an option, LuaUnit will stop on the first error (but continue on failures).
**Randomize test order**
If ``--shuffle`` or ``-s`` is passed as an option, LuaUnit will execute tests in random order. The randomisation works on all test functions
and methods. As a consequence test methods of a given class may be splitted into multiple location, generating several test class creation and destruction.
**Repeat test**
When using luajit, the just-in-time compiler will kick in only after a given function has been executed a sufficient number of times. To make sure
that the JIT is not introducing any bug, LuaUnit provides a way to repeat a test may times, with ``--repeat`` or ``-r`` followed by a number.
Flexible test selection
-------------------------
LuaUnit provides very flexible way to select which tests to execute. We will illustrate this with several examples.
In the examples, we use a test suite composed of the following test funcions::
-- class: TestAdd
TestAdd.testAddError
TestAdd.testAddPositive
TestAdd.testAddZero
TestAdd.testAdder
-- class: TestDiv
TestDiv.testDivError
TestDiv.testDivPositive
TestDiv.testDivZero
With ``--pattern`` or ``-p``, you can provide a lua pattern and only the tests that contain
the pattern will actually be run.
Example::
-- Run all tests of zero testing and error testing
-- by using the magic character .
$ lua mytest_suite.lua -v -p Err.r -p Z.ro
Started on 02/19/17 22:29:45
TestAdd.testAddError ... Ok
TestAdd.testAddZero ... Ok
TestDiv.testDivError ... Ok
TestDiv.testDivZero ... Ok
=========================================================
Ran 4 tests in 0.004 seconds, 4 successes, 0 failures, 3 non-selected
OK
The number of tests ignored by the selection is printed, along
with the test result. The tests *TestAdd.testAdder testAdd.testPositive and
testDiv.testDivPositive* have been correctly ignored.
The pattern can be any lua pattern. Be sure to exclude all magic
characters with % (like ``-+?*``) and protect your pattern from the shell
interpretation by putting it in quotes.
With ``--exclude`` or ``-x``, you can provide a lua pattern of tests which should
be excluded from execution.
Example::
-- Run all tests except zero testing and except error testing
$ lua mytest_suite.lua -v -x Error -x Zero
Started on 02/19/17 22:29:45
TestAdd.testAddPositive ... Ok
TestAdd.testAdder ... Ok
TestDiv.testDivPositive ... Ok
=========================================================
Ran 3 tests in 0.003 seconds, 3 successes, 0 failures, 4 non-selected
OK
You can also combine test selection and test exclusion. The rules are the following:
* if the first argument encountered is a inclusion pattern, the list of tests start empty
* if the first argument encountered is an exclusion pattern, the list of tests start with all tests of the suite
* each subsequent inclusion pattern will add new tests to the list
* each subsequent exclusion pattern will remove test from the list
* the final list is the list of tests executed
In pure logic term, inclusion is the equivalent of ``or match(pattern)`` and exclusion is ``and not match(pattern)`` .
Let's look at some practical examples::
-- Add all tests which include the word Add
-- except the test Adder
-- and also include the Zero tests
$ lua my_test_suite.lua -v --pattern Add --exclude Adder --pattern Zero
Started on 02/19/17 22:29:45
TestAdd.testAddError ... Ok
TestAdd.testAddPositive ... Ok
TestAdd.testAddZero ... Ok
TestDiv.testDivZero ... Ok
=========================================================
Ran 4 tests in 0.003 seconds, 4 successes, 0 failures, 3 non-selected
OK
LuaUnit runner object
=======================
The various options set on the command-line can be overridden by creating a LuaUnit runner explicitely and calling specific functions on it.
.. function:: LuaUnit.new()
The execution of a LuaUnit test suite is controlled through a runner object. This object is created with `LuaUnit.new()` .
.. code-block:: lua
lu = require('luaunit')
runner = lu.LuaUnit.new()
-- use the runner object...
runner.runSuite()
.. function:: runner:setVerbosity( verbosity )
Set the verbosity of the runner. The value is an integer ranging from lu.VERBOSITY_QUIET to lu.VERBOSITY_VERBOSE .
.. function:: runner:setQuitOnError( quitOnError )
Set the quit-on-first-error behavior, like the command-line `--xx`. The argument is a boolean value.
.. function:: runner:setQuitOnFailuer( quitOnFailure )
Set the quit-on-first-failure-or-error behavior, like the command-line `--xx`. The argument is a boolean value.
.. function:: runner:setRepeat( repeatNumber )
Set the number of times a test function is executed, like the command-line `-xx`. The argument is an integer.
.. function:: runner:setShuffle( shuffle )
Set whether the test are run in randomized, like the command-line `--shuffle`. The argument is a boolean value.
.. function:: runner:setOutputType(type [, junit_fname])
Set the output type of the test suite. See `Output formats`_ for possible values. When setting the format `junit`, it
is mandatory to set the filename receiving the xml output. This can be done by passing it as second argument of this function.
.. function:: runner:runSuite( [arguments] )
This function runs the test suite.
**Arguments**
If no arguments are supplied, it parses the command-line arguments of the script
and interpret them. If arguments are supplied to the function, they are parsed
as the command-line. It uses the same syntax.
Test names may be supplied in arguments, to execute
only these specific tests. Note that when explicit names are provided
LuaUnit does not require the test names to necessarily start with *test*.
If no test names were supplied, a general test collection process is done
and the resulting tests are executed.
**Return value**
It returns the number of failures and errors. On
success 0 is returned, making is suitable for an exit code.
.. code-block:: lua
lu = require('luaunit')
runner = lu.LuaUnit.new()
os.exit(runner.runSuite())
Example of using pattern to select tests::
.. code-block:: lua
lu = require('luaunit')
runner = lu.LuaUnit.new()
-- execute tests matching the 'withXY' pattern
os.exit(runner.runSuite('--pattern', 'withXY')
Example of explicitly selecting tests::
.. code-block:: lua
lu = require('luaunit')
runner = lu.LuaUnit.new()
os.exit(runner.runSuite('testABC', 'testDEF'))
.. function:: LuaUnit.run( [arguments] )
This function may be called directly from the LuaUnit table. It will
create internally a LuaUnit runner and pass all arguments to it.
Arguments and return value is the same as :func:`runner:runSuite()`
Example::
.. code-block:: lua
-- execute tests matching the 'withXY' pattern
os.exit(lu.LuaUnit.run('--pattern', 'withXY'))
.. function:: runner:runSuiteByInstances( listOfNameAndInstances )
This function runs test without performing the global test collection process on the global namespace, the test
are explicitely provided as argument, along with their names.
Before execution, the function will parse the script command-line, like :func:`funner:runSuite()`.
Input is provided as a list of { name, test_instance } . test_instance can either be a function or a table containing
test functions starting with the prefix "test".
Example of using runSuiteByInstances
.. code-block:: lua
lu = require('luaunit')
runner = lu.LuaUnit.new()
os.exit(runner.runSuiteByInstances( {'mySpecialTest1', mySpecialTest1}, {'mySpecialTest2', mySpecialTest2} } )
Skipping and ending test
==========================
LuaUnit allows to force test ending in several ways.
**Test skipping**
.. function:: skip( message )
Stops the ongoing test and mark it as skipped with the given message. This can be used
to deactivate a given test.
.. function:: skipIf( condition, message )
If the condition *condition* evaluates to *true*, stops the ongoing test and mark it as skipped with the given message.
Else, continue the test execution normally.
The expected usage is to call the function at the beginning of the test to
verify if the conditions are met for executing such tests.
.. function:: runOnlyIf( condition, message )
If condition evaluates to *false*, stops the ongoing test and mark it as skipped with the
given message. This is the opposite behavior of :func:`skipIf()` .
The expected usage is to call the function at the beginning of the test to
verify if the conditions are met for executing such tests.
Number of skipped tests, if any, are reported at the end of the execution.
**Force test failing**
.. function:: fail( message )
Stops the ongoing test and mark it as failed with the given message.
.. function:: failIf( condition, message )
If the condition *condition* evaluates to *true*, stops the ongoing test and mark it as failed with the given message.
Else, continue the test execution normally.
**Force test success**
.. function:: success()
Stops the ongoing test and mark it as successful.
.. function:: successIf( condition )
If the condition *condition* evaluates to *true*, stops the ongoing test and mark it as successful.
Else, continue the test execution normally.
Output formats details
=======================
To demonstrate the different output formats, we will take the example of the `Getting started with LuaUnit`_
section and add the following two failing cases:
.. code-block:: lua
TestWithFailures = {}
-- two failing tests
function TestWithFailures:testFail1()
local a="toto"
local b="titi"
lu.assertEquals( a, b ) --oops, two values are not equal
end
function TestWithFailures:testFail2()
local a=1
local b='toto'
local c = a + b --oops, can not add string and numbers
return c
end
**Text format**
By default, LuaUnit uses the output format TEXT, with minimum verbosity::
$ lua my_test_suite.lua
.......FE
Failed tests:
-------------
1) TestWithFailures.testFail1
doc\my_test_suite_with_failures.lua:79: expected: "titi"
actual: "toto"
stack traceback:
doc\my_test_suite_with_failures.lua:79: in function 'TestWithFailures.testFail1'
2) TestWithFailures.testFail2
doc\my_test_suite_with_failures.lua:85: attempt to perform arithmetic on local 'b' (a string value)
stack traceback:
[C]: in function 'xpcall'
Ran 9 tests in 0.001 seconds, 7 successes, 1 failure, 1 error
This format is heavily inspired by python unit-test library. One character is printed
for every test executed, a dot for a successful test, a **F** for a test with failure and
a **E** for a test with an error.
At the end of the test suite execution, the details of the failures or errors are given, with an
informative message and a full stack trace.
The last line sums up the number of test executed, successful, failed, in error and not selected if any.
When all tests are successful, a line with just OK is added::
$ lua doc\my_test_suite.lua
.......
Ran 7 tests in 0.002 seconds, 7 successes, 0 failures
OK
The text format is also available as a more verbose version, by adding the ``--verbose`` flag::
$ lua doc\my_test_suite_with_failures.lua --verbose
Started on 02/20/17 21:47:21
TestAdd.testAddError ... Ok
TestAdd.testAddPositive ... Ok
TestAdd.testAddZero ... Ok
TestAdd.testAdder ... Ok
TestDiv.testDivError ... Ok
TestDiv.testDivPositive ... Ok
TestDiv.testDivZero ... Ok
TestWithFailures.testFail1 ... FAIL
doc\my_test_suite_with_failures.lua:79: expected: "titi"
actual: "toto"
TestWithFailures.testFail2 ... ERROR
doc\my_test_suite_with_failures.lua:85: attempt to perform arithmetic on local 'b' (a string value)
=========================================================
Failed tests:
-------------
1) TestWithFailures.testFail1
doc\my_test_suite_with_failures.lua:79: expected: "titi"
actual: "toto"
stack traceback:
doc\my_test_suite_with_failures.lua:79: in function 'TestWithFailures.testFail1'
2) TestWithFailures.testFail2
doc\my_test_suite_with_failures.lua:85: attempt to perform arithmetic on local 'b' (a string value)
stack traceback:
[C]: in function 'xpcall'
Ran 9 tests in 0.008 seconds, 7 successes, 1 failure, 1 error
In this format, you get:
* a first line with date-time at which the test was started
* one line per test executed
* the test line is ended by **Ok**, **FAIL**, or **ERROR** in case the test is not successful
* a summary of the failed tests with all details, like in the compact version.
This format is usually interesting if some tests print debug output, to match the output to the test.
**JUNIT format**
The Junit XML format was introduced by the `Java testing framework JUnit`_ and has been then used by many continuous
integration platform as an interoperability format between test suites and the platform.
.. _Java testing framework JUnit: http://junit.org/junit4/
To output in the JUnit XML format, you use the format junit with ``--output junit`` and specify the XML filename with ``--name <filename>`` . On
the standard output, LuaUnit will print information about the test progress in a simple format.
Let's see with a simple example::
$ lua my_test_suite_with_failures.lua -o junit -n toto.xml
# XML output to toto.xml
# Started on 02/24/17 09:54:59
# Starting class: TestAdd
# Starting test: TestAdd.testAddError
# Starting test: TestAdd.testAddPositive
# Starting test: TestAdd.testAddZero
# Starting test: TestAdd.testAdder
# Starting class: TestDiv
# Starting test: TestDiv.testDivError
# Starting test: TestDiv.testDivPositive
# Starting test: TestDiv.testDivZero
# Starting class: TestWithFailures
# Starting test: TestWithFailures.testFail1
# Failure: doc/my_test_suite_with_failures.lua:79: expected: "titi"
# actual: "toto"
# Starting test: TestWithFailures.testFail2
# Error: doc/my_test_suite_with_failures.lua:85: attempt to perform arithmetic on local 'b' (a string value)
# Ran 9 tests in 0.007 seconds, 7 successes, 1 failure, 1 error
On the standard output, you will see the date-time, the name of the XML file, one line for each test started, a summary
of the failure or errors when they occurs and the usual one line summary of the test execution: number of tests run, successful, failed,
in error and number of non selected tests if any.
The XML file generated by this execution is the following::
<?xml version="1.0" encoding="UTF-8" ?>
<testsuites>
<testsuite name="LuaUnit" id="00001" package="" hostname="localhost" tests="9" timestamp="2017-02-24T09:54:59" time="0.007" errors="1" failures="1">
<properties>
<property name="Lua Version" value="Lua 5.2"/>
<property name="LuaUnit Version" value="3.2"/>
</properties>
<testcase classname="TestAdd" name="TestAdd.testAddError" time="0.001">
</testcase>
<testcase classname="TestAdd" name="TestAdd.testAddPositive" time="0.001">
</testcase>
<testcase classname="TestAdd" name="TestAdd.testAddZero" time="0.000">
</testcase>
<testcase classname="TestAdd" name="TestAdd.testAdder" time="0.000">
</testcase>
<testcase classname="TestDiv" name="TestDiv.testDivError" time="0.000">
</testcase>
<testcase classname="TestDiv" name="TestDiv.testDivPositive" time="0.000">
</testcase>
<testcase classname="TestDiv" name="TestDiv.testDivZero" time="0.001">
</testcase>
<testcase classname="TestWithFailures" name="TestWithFailures.testFail1" time="0.000">
<failure type="doc/my_test_suite_with_failures.lua:79: expected: "titi"
actual: "toto"">
<![CDATA[stack traceback:
doc/my_test_suite_with_failures.lua:79: in function 'TestWithFailures.testFail1']]></failure>
</testcase>
<testcase classname="TestWithFailures" name="TestWithFailures.testFail2" time="0.000">
<error type="doc/my_test_suite_with_failures.lua:85: attempt to perform arithmetic on local 'b' (a string value)">
<![CDATA[stack traceback:
[C]: in function 'xpcall']]></error>
</testcase>
<system-out/>
<system-err/>
</testsuite>
</testsuites>
As you can see, the XML file is quite rich in terms of information. The verbosity level has no effect on junit output, all verbosity give the same output.
Slight inconsistencies exist in the exact XML format in the different continuous integration suites. LuaUnit provides a compatible output which
is validated against `Jenkins/Hudson schema`_ . If you ever find an problem in the XML formats, please report a bug to us, more testing is always welcome.
.. _Jenkins/Hudson schema: https://github.com/bluebird75/luaunit/blob/LUAUNIT_V3_2_1/junitxml/junit-jenkins.xsd
**TAP format**
The `TAP format`_ for test results has been around since 1988. LuaUnit produces TAP reports compatible with version 12 of
the specification.
.. _`TAP format`: https://testanything.org/
Example with minimal verbosiy::
$ lua my_test_suite_with_failures.lua -o tap --quiet
1..9
# Started on 02/24/17 22:09:31
# Starting class: TestAdd
ok 1 TestAdd.testAddError
ok 2 TestAdd.testAddPositive
ok 3 TestAdd.testAddZero
ok 4 TestAdd.testAdder
# Starting class: TestDiv
ok 5 TestDiv.testDivError
ok 6 TestDiv.testDivPositive
ok 7 TestDiv.testDivZero
# Starting class: TestWithFailures
not ok 8 TestWithFailures.testFail1
not ok 9 TestWithFailures.testFail2
# Ran 9 tests in 0.003 seconds, 7 successes, 1 failure, 1 error
With minimal verbosity, you have one line for each test run, with the status of the test, and one comment line
when starting the test suite, when starting a new class or when finishing the test.
Example with default verbosiy::
$ lua my_test_suite_with_failures.lua -o tap
1..9
# Started on 02/24/17 22:09:31
# Starting class: TestAdd
ok 1 TestAdd.testAddError
ok 2 TestAdd.testAddPositive
ok 3 TestAdd.testAddZero
ok 4 TestAdd.testAdder
# Starting class: TestDiv
ok 5 TestDiv.testDivError
ok 6 TestDiv.testDivPositive
ok 7 TestDiv.testDivZero
# Starting class: TestWithFailures
not ok 8 TestWithFailures.testFail1
doc/my_test_suite_with_failures.lua:79: expected: "titi"
actual: "toto"
not ok 9 TestWithFailures.testFail2
doc/my_test_suite_with_failures.lua:85: attempt to perform arithmetic on local 'b' (a string value)
# Ran 9 tests in 0.005 seconds, 7 successes, 1 failure, 1 error
In the default mode, the failure or error message is displayed in the failing test diagnostic part.
Example with full verbosiy::
$ lua my_test_suite_with_failures.lua -o tap --verbose
1..9
# Started on 02/24/17 22:09:31
# Starting class: TestAdd
ok 1 TestAdd.testAddError
ok 2 TestAdd.testAddPositive
ok 3 TestAdd.testAddZero
ok 4 TestAdd.testAdder
# Starting class: TestDiv
ok 5 TestDiv.testDivError
ok 6 TestDiv.testDivPositive
ok 7 TestDiv.testDivZero
# Starting class: TestWithFailures
not ok 8 TestWithFailures.testFail1
doc/my_test_suite_with_failures.lua:79: expected: "titi"
actual: "toto"
stack traceback:
doc/my_test_suite_with_failures.lua:79: in function 'TestWithFailures.testFail1'
not ok 9 TestWithFailures.testFail2
doc/my_test_suite_with_failures.lua:85: attempt to perform arithmetic on local 'b' (a string value)
stack traceback:
[C]: in function 'xpcall'
# Ran 9 tests in 0.007 seconds, 7 successes, 1 failure, 1 error
With maximum verbosity, the stack trace is also displayed in the test diagnostic.
**NIL format**
With the nil format output, absolutely nothing is displayed while running the tests. Only the
exit code of the command can tell whether the test was successful or not::
$ lua my_test_suite_with_failures.lua -o nil --verbose
$
This mode is used by LuaUnit for its internal validation.
Test collection and execution process
======================================
Test collection
-------------------
The test collection and execution process is the following:
* If a list of tests is specified on the command-line or as argument to the *runSuite()* or *runSuiteByInstances()*, this
the considered list of tests to run.
* If no list of tests is specified, the global namespace *_G* is searched for names starting by *test* or *Test*. All
such names are put into the list of tests to run (provided they reference either a function or a table).
* All tables are then scanned for table functions starting with *test* or *Test*, which are then added to the list of tests to run
* From the list of tests to run, include and exclude patterns are applied
* If shuffling is activated, the list is randomized. Else, it is sorted in alphabetical order.
This constitutes the final list of tests to run.
Test execution
-------------------
Each test function is run in a protected call. If any luaunit assertion fails (assertEquals, ...), the test is considered as a failure. If
an error is generated during the test execution, the test is marked as in error. Both errors and failures are reported at the end of the execution.
When executing a table containing tests, the following methods are also considered:
* *setUp()* is called prior to each test execution. Any failure or error during *setUp()* will prevent the test from being executed and will
be reported in the test suite.
* *tearDown()* is called after each test, even if the *setUp()* or the test failed. Any failure or error during *tearDown()* will be reported
in the test suite.
Assertions functions
=====================
We will now list all assertion functions. For every functions, the failure
message tries to be as informative as possible, by displaying the expectation and value that caused the failure. It
relies on the :func:`prettystr` for printing nicely formatted values.
All function accept an optional extra message which if provided, is printed along with the failure message.
.. Note:: see :ref:`table-printing` for more information on how LuaUnit prints tables.
Equality assertions
----------------------
All equality assertions functions take two arguments, in the order
*actual value* then *expected value*. Some people are more familiar
with the order *expected value* then *actual value*. It is possible to configure
LuaUnit to use the opposite order for all equality assertions, by setting up a module
variable:
.. code-block:: lua
lu.ORDER_ACTUAL_EXPECTED=false
The order only matters for the message that is displayed in case of failures. It does
not influence the test itself.
.. function:: assertEquals(actual, expected [, extra_msg] )
**Alias**: *assert_equals()*
Assert that two values are equal. This is the most used function for assertion within LuaUnit.
The values being compared may be integers, floats, strings, tables, functions or a combination of
those. If provided, *extra_msg* is a string which will be printed along with the failure message.
When comparing floating point numbers, it is better to use :func:`assertAlmostEquals` which supports a margin
for the equality verification.
For tables, the comparison supports nested tables and cyclic structures. To be equal, two tables must
have the same keys and the value associated with a key must compare equal with assertEquals() (using a recursive
algorithm).
When displaying the difference between two tables used as lists, LuaUnit performs an analysis of the list content
to pinpoint the place where the list actually differs. See the below example:
.. code-block::
-- lua test code. Can you spot the difference ?
function TestListCompare:test1()
local A = { 121221, 122211, 121221, 122211, 121221, 122212, 121212, 122112, 122121, 121212, 122121 }
local B = { 121221, 122211, 121221, 122211, 121221, 122212, 121212, 122112, 121221, 121212, 122121 }
lu.assertEquals( A, B )
end
$ lua test_some_lists_comparison.lua
TestListCompare.test1 ... FAIL
test/some_lists_comparisons.lua:22: expected:
List difference analysis:
* lists A (actual) and B (expected) have the same size
* lists A and B start differing at index 9
* lists A and B are equal again from index 10
* Common parts:
= A[1], B[1]: 121221
= A[2], B[2]: 122211
= A[3], B[3]: 121221
= A[4], B[4]: 122211
= A[5], B[5]: 121221
= A[6], B[6]: 122212
= A[7], B[7]: 121212
= A[8], B[8]: 122112
* Differing parts:
- A[9]: 122121
+ B[9]: 121221
* Common parts at the end of the lists
= A[10], B[10]: 121212
= A[11], B[11]: 122121
.. Note:: see :ref:`comparing-table-keys-table` for information on comparison of tables containing keys of type table.
LuaUnit provides other table-related assertions, see :ref:`assert-table` .
.. function:: assertNotEquals(actual, expected [, extra_msg])
**Alias**: *assert_not_equals()*
Assert that two values are different. The assertion
fails if the two values are identical. It behaves exactly like :func:`assertEquals` but checks
for the opposite condition.
If provided, *extra_msg* is a string which will be printed along with the failure message.
Value assertions
----------------------
LuaUnit contains several flavours of true/false assertions, to be used in different contexts.
Usually, when asserting for *true* or *false*, you want strict assertions (*nil* should not
assert to *false*); *assertTrue()* and *assertFalse()* are the functions for this purpose. In some cases though,
you want Lua coercion rules to apply (e.g. value *1* or string *"hello"* yields *true*) and the right functions to use
are *assertEvalToTrue()* and *assertEvalToFalse()*. Finally, you have the *assertNotTrue()* and *assertNotFalse()* to verify
that a value is anything but the boolean *true* or *false*.
The below table sums it up:
**True assertion family**
============ ============ =================== ================
Input Value assertTrue() assertEvalToTrue() assertNotTrue()
============ ============ =================== ================
*true* OK OK OK
*false* Fail Fail Fail
*nil* Fail Fail OK
*0* Fail OK OK
*1* Fail OK OK
*"hello"* Fail OK OK
============ ============ =================== ================
**False assertion family**
============ ================ ============= ===================
Input Value assertNotFalse() assertFalse() assertEvalToFalse()
============ ================ ============= ===================
*true* Fail Fail Fail
*false* OK OK OK
*nil* Fail OK OK
*0* Fail Fail Fail
*1* Fail Fail Fail
*"hello"* Fail Fail Fail
============ ================ ============= ===================
.. function:: assertEvalToTrue(value [, extra_msg])
**Alias**: *assert_eval_to_true()*
Assert that a given value evals to ``true``. Lua coercion rules are applied
so that values like ``0``, ``""``, ``1.17`` **succeed** in this assertion. If provided,
extra_msg is a string which will be printed along with the failure message.
See :func:`assertTrue` for a strict assertion to boolean ``true``.
.. function:: assertEvalToFalse(value [, extra_msg])
**Alias**: *assert_eval_to_false()*
Assert that a given value eval to ``false``. Lua coercion rules are applied
so that ``nil`` and ``false`` **succeed** in this assertion. If provided, extra_msg
is a string which will be printed along with the failure message.
See :func:`assertFalse` for a strict assertion to boolean ``false``.
.. function:: assertTrue(value [, extra_msg])
**Alias**: *assert_true()*
Assert that a given value is strictly ``true``. Lua coercion rules do not apply
so that values like ``0``, ``""``, ``1.17`` **fail** in this assertion. If provided,
extra_msg is a string which will be printed along with the failure message.
See :func:`assertEvalToTrue` for an assertion to ``true`` where Lua coercion rules apply.
.. function:: assertFalse(value [, extra_msg])
**Alias**: *assert_false()*
Assert that a given value is strictly ``false``. Lua coercion rules do not apply
so that ``nil`` **fails** in this assertion. If provided, *extra_msg* is a string
which will be printed along with the failure message.
See :func:`assertEvalToFalse` for an assertion to ``false`` where Lua coertion fules apply.
.. function:: assertNil(value [, extra_msg])
**Aliases**: *assert_nil()*, *assertIsNil()*, *assert_is_nil()*
Assert that a given value is *nil* . If provided, *extra_msg* is
a string which will be printed along with the failure message.
.. function:: assertNotNil(value [, extra_msg])
**Aliases**: *assert_not_nil()*, *assertNotIsNil()*, *assert_not_is_nil()*
Assert that a given value is not *nil* . Lua coercion rules are applied
so that values like ``0``, ``""``, ``false`` all validate the assertion.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIs(actual, expected [, extra_msg])
**Alias**: *assert_is()*
Assert that two variables are identical. For string, numbers, boolean and for nil,
this gives the same result as :func:`assertEquals` . For the other types, identity
means that the two variables refer to the same object.
If provided, *extra_msg* is a string which will be printed along with the failure message.
**Example :**
.. code-block:: lua
s1='toto'
s2='to'..'to'
t1={1,2}
t2={1,2}
v1=nil
v2=false
lu.assertIs(s1,s1) -- ok
lu.assertIs(s1,s2) -- ok
lu.assertIs(t1,t1) -- ok
lu.assertIs(t1,t2) -- fail
lu.assertIs(v1,v2) -- fail
.. function:: assertNotIs(actual, expected [, extra_msg])
**Alias**: *assert_not_is()*
Assert that two variables are not identical, in the sense that they do not
refer to the same value. If provided, *extra_msg* is a string which will be printed along with the failure message.
See :func:`assertIs` for more details.
String assertions
--------------------------
Assertions related to string and patterns.
.. function:: assertStrContains( str, sub [, isPattern [, extra_msg ]] )
**Alias**: *assert_str_contains()*
Assert that the string *str* contains the substring or pattern *sub*.
If provided, *extra_msg* is a string which will be printed along with the failure message.
By default, substring is searched in the string. If *isPattern*
is provided and is true, *sub* is treated as a pattern which
is searched inside the string *str* .
.. function:: assertStrIContains( str, sub [, extra_msg] )
**Alias**: *assert_str_icontains()*
Assert that the string *str* contains the given substring *sub*, irrespective of the case.
If provided, *extra_msg* is a string which will be printed along with the failure message.
Note that unlike :func:`assertStrcontains`, you can not search for a pattern.
.. function:: assertNotStrContains( str, sub, [isPattern [, extra_msg]] )
**Alias**: *assert_not_str_contains()*
Assert that the string *str* does not contain the substring or pattern *sub*.
If provided, *extra_msg* is a string which will be printed along with the failure message.
By default, the substring is searched in the string. If *isPattern*
is provided and is true, *sub* is treated as a pattern which
is searched inside the string *str* .
.. function:: assertNotStrIContains( str, sub [, extra_msg] )
**Alias**: *assert_not_str_icontains()*
Assert that the string *str* does not contain the substring *sub*, irrespective of the case.
If provided, *extra_msg* is a string which will be printed along with the failure message.
Note that unlike :func:`assertNotStrcontains`, you can not search for a pattern.
.. function:: assertStrMatches( str, pattern [, start [, final [, extra_msg ]]] )
**Alias**: *assert_str_matches()*
Assert that the string *str* matches the full pattern *pattern*.
If *start* and *final* are not provided or are *nil*, the pattern must match the full string, from start to end. The
function allows to specify the expected start and end position of the pattern in the string. If provided,
*extra_msg* is a string which will be printed along with the failure message.
Error assertions
--------------------------
Error related assertions, to verify error generation and error messages.
.. function:: assertError( func, ...)
**Alias**: *assert_error()*
Assert that calling functions *func* with the arguments yields an error. If the
function does not yield an error, the assertion fails.
Note that the error message itself is not checked, which means that this function
does not distinguish between the legitimate error that you expect and another error
that might be triggered by mistake.
The next functions provide a better approach to error testing, by checking
explicitly the error message content.
.. Note::
When testing LuaUnit, switching from *assertError()* to *assertErrorMsgEquals()*
revealed quite a few bugs!
.. function:: assertErrorMsgEquals( expectedMsg, func, ... )
**Alias**: *assert_error_msg_equals()*
Assert that calling function *func* will generate exactly the given error message. If the
function does not yield an error, or if the error message is not identical, the assertion fails.
Be careful when using this function that error messages usually contain the file name and
line number information of where the error was generated. This is usually inconvenient so we have
introduced the :func:`assertErrorMsgContentEquals` . Be sure to check it.
.. function:: assertErrorMsgContentEquals( expectedMsg, func, ... )
**Alias**: *assert_error_msg_content_equals()*
Assert that calling function *func* will generate exactly the given error message, excluding the
file and line information. File and line information may change as your programs evolve so we
find this version more convenient than :func:`assertErrorMsgEquals` .
.. function:: assertErrorMsgContains( partialMsg, func, ... )
**Alias**: *assert_error_msg_contains()*
Assert that calling function *func* will generate an error message containing *partialMsg* . If the
function does not yield an error, or if the expected message is not contained in the error message, the
assertion fails.
.. function:: assertErrorMsgMatches( expectedPattern, func, ... )
**Alias**: *assert_error_msg_matches()*
Assert that calling function *func* will generate an error message matching *expectedPattern* . If the
function does not yield an error, or if the error message does not match the provided patternm the
assertion fails.
Note that matching is done from the start to the end of the error message. Be sure to escape magic all magic
characters with ``%`` (like ``-+.?*``) .
Type assertions
--------------------------
The following functions all perform type checking on their argument. If the
received value is not of the right type, the failure message will contain
the expected type, the received type and the received value to help you
identify better the problem.
.. function:: assertIsNumber(value [, extra_msg])
**Aliases**: *assertNumber()*, *assert_is_number()*, *assert_number()*
Assert that the argument is a number (integer or float).
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIsString(value [, extra_msg])
**Aliases**: *assertString()*, *assert_is_string()*, *assert_string()*
Assert that the argument is a string.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIsTable(value [, extra_msg])
**Aliases**: *assertTable()*, *assert_is_table()*, *assert_table()*
Assert that the argument is a table.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIsBoolean(value [, extra_msg])
**Aliases**: *assertBoolean()*, *assert_is_boolean()*, *assert_boolean()*
Assert that the argument is a boolean.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIsNil(value [, extra_msg])
**Aliases**: *assertNil()*, *assert_is_nil()*, *assert_nil()*
Assert that the argument is nil.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIsFunction(value [, extra_msg])
**Aliases**: *assertFunction()*, *assert_is_function()*, *assert_function()*
Assert that the argument is a function.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIsUserdata(value [, extra_msg])
**Aliases**: *assertUserdata()*, *assert_is_userdata()*, *assert_userdata()*
Assert that the argument is a userdata.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIsCoroutine(value [, extra_msg])
**Aliases**: *assertCoroutine()*, *assert_is_coroutine()*, *assert_coroutine()*
Assert that the argument is a coroutine (an object with type *thread* ).
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertIsThread(value [, extra_msg])
**Aliases**: *assertIsThread()*, *assertThread()*, *assert_is_thread()*, *assert_thread()*
Same function as :func:assertIsCoroutine . Since Lua coroutines have the type thread, it's not
clear which name is the clearer, so we provide syntax for both names.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. _assert-table:
Table assertions
--------------------------
.. function:: assertItemsEquals(actual, expected [, extra_msg])
**Alias**: *assert_items_equals()*
Assert that two tables contain the same items, irrespective of their keys.
If provided, *extra_msg* is a string which will be printed along with the failure message.
This function is practical for example if you want to compare two lists but
where items are not in the same order:
.. code-block:: lua
lu.assertItemsEquals( {1,2,3}, {3,2,1} ) -- assertion succeeds
..
The comparison is not recursive on the items: if any of the items are tables,
they are compared using table equality (like as in :func:`assertEquals` ), where
the key matters.
.. code-block:: lua
lu.assertItemsEquals( {1,{2,3},4}, {4,{3,2,},1} ) -- assertion fails because {2,3} ~= {3,2}
.. function:: assertTableContains(table, element [, extra_msg])
**Alias**: *assert_table_contains()*
Assert that the table contains at least one key with value `element`. Element
may be of any type (including table), the recursive equality algorithm of assertEquals()
is used for verifying the presence of the element.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. code-block:: lua
lu.assertTableContains( {'a', 'b', 'c', 'd'}, 'b' ) -- assertion succeeds
lu.assertTableContains( {1, 2, 3, {4} }, {4} } -- assertion succeeds
.. function:: assertNotTableContains(table, element [, extra_msg])
**Alias**: *assert_not_table_contains()*
Negative version of :func:`assertTableContains` .
Assert that the table contains no element with value `element`. Element
may be of any type (including table), the recursive equality algorithm of assertEquals()
is used for verifying the presence of the element.
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. code-block:: lua
lu.assertNotTableContains( {'a', 'b', 'c', 'd'}, 'e' ) -- assertion succeeds
lu.assertNotTableContains( {1, 2, 3, {4} }, {5} } -- assertion succeeds
Scientific computing and LuaUnit
--------------------------------
LuaUnit is used by the CERN for the MAD-NG program, the forefront of computational physics in the field of particle accelerator design and simulation (See MAD_). Thank to the feedback of a scientific computing developer, LuaUnit has been enhanced with some facilities for scientific applications (see all assertions functions below).
.. _MAD: http://mad.web.cern.ch/mad/
The floating point library used by Lua is the one provided by the C compiler which built Lua. It is usually compliant with IEEE-754_ . As such,
it can yields results such as *plus infinity*, *minus infinity* or *Not a Number* (NaN). The precision of any calculation performed in Lua is
related to the smallest representable floating point value (typically called *EPS*): 2^-52 for 64 bits floats (type double in the C language) and 2^-23 for 32 bits float
(type float in C).
.. _IEEE-754: https://en.wikipedia.org/wiki/IEEE_754
.. Note :: Lua may be compiled with numbers represented either as 32 bits floats or 64 bits double (as defined by the macro LUA_FLOAT_TYPE in luaconf.h ). LuaUnit has been validated in both these configurations and in particuluar, the epsilon value *EPS* is adjusted accordingly.
For more information about performing calculations on computers, please read the reference paper `What Every Computer Scientist Should Know About Floating-Point Arithmetic`_
.. _What Every Computer Scientist Should Know About Floating-Point Arithmetic: https://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html
If your calculation shall be portable to multiple OS or compilers, you may get different calculation errors depending on the OS/compiler. It is therefore important to verify them on every target.
.. _MinusZero:
.. Note on minus zero::
If you need to deal with value *minus zero*, be very careful because Lua versions are inconsistent on how they treat the syntax *-0* : it creates either
a *plus zero* or a *minus zero* . Multiplying or dividing *0* by *-1* also yields inconsistent results. The reliable way to create the *-0*
value is : minusZero = -1 / (1/0)
.. _EPS:
**EPS** *constant*
The machine epsilon, to be used with :func:`assertAlmostEquals` .
This is either:
* 2^-52 or ~2.22E-16 (with lua number defined as double)
* 2^-23 or ~1.19E-07 (with lua number defined as float)
.. function:: assertNan( value [, extra_msg])
**Alias**: *assert_nan()*
Assert that a given number is a *NaN* (Not a Number), according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertNotNan( value [, extra_msg])
**Alias**: *assert_not_nan()*
Assert that a given number is NOT a *NaN* (Not a Number), according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertPlusInf( value [, extra_msg])
**Alias**: *assert_plus_inf()*
Assert that a given number is *plus infinity*, according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertMinusInf( value [, extra_msg])
**Alias**: *assert_minus_inf()*
Assert that a given number is *minus infinity*, according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertInf( value [, extra_msg])
**Alias**: *assert_inf()*
Assert that a given number is *infinity* (either positive or negative), according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertNotPlusInf( value [, extra_msg])
**Alias**: *assert_not_plus_inf()*
Assert that a given number is NOT *plus infinity*, according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertNotMinusInf( value [, extra_msg])
**Alias**: *assert_not_minus_inf()*
Assert that a given number is NOT *minus infinity*, according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertNotInf( value [, extra_msg])
**Alias**: *assert_not_inf()*
Assert that a given number is neither *infinity* nor *minus infinity*, according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
.. function:: assertPlusZero( value [, extra_msg])
**Alias**: *assert_plus_zero()*
Assert that a given number is *+0*, according to the definition of IEEE-754_ . The
verification is done by dividing by the provided number and verifying that it yields
*infinity* . If provided, *extra_msg* is a string which will be printed along with the failure message.
Be careful when dealing with *+0* and *-0*, see note above.
.. function:: assertMinusZero( value [, extra_msg])
**Alias**: *assert_minus_zero()*
Assert that a given number is *-0*, according to the definition of IEEE-754_ . The
verification is done by dividing by the provided number and verifying that it yields
*minus infinity* . If provided, *extra_msg* is a string which will be printed along with the failure message.
Be careful when dealing with *+0* and *-0*, see MinusZero_
.. function:: assertNotPlusZero( value [, extra_msg])
**Alias**: *assert_not_plus_zero()*
Assert that a given number is NOT *+0*, according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
Be careful when dealing with *+0* and *-0*, see MinusZero_
.. function:: assertNotMinusZero( value [, extra_msg])
**Alias**: *assert_not_minus_zero()*
Assert that a given number is NOT *-0*, according to the definition of IEEE-754_ .
If provided, *extra_msg* is a string which will be printed along with the failure message.
Be careful when dealing with *+0* and *-0*, see MinusZero_
.. function:: assertAlmostEquals( actual, expected [, margin=EPS [, extra_msg]] )
**Alias**: *assert_almost_equals()*
Assert that two floating point numbers or tables are equal by the defined margin.
If margin is not provided, the machine epsilon *EPS* is used.
If provided, *extra_msg* is a string which will be printed along with the failure message.
The function accepts either floating point numbers or tables. Complex structures with
nested tables are supported. Comparing tables with assertAlmostEquals works just like :func:`assertEquals`
with the difference that values are compared with a margin instead of with direct equality.
Be careful that depending on the calculation, it might make more sense to measure
the absolute error or the relative error (see below):
.. function:: assertNotAlmostEquals( actual, expected [, margin=EPS [, extra_msg]] )
**Alias**: *assert_not_almost_equals()*
Assert that two floating point numbers are not equal by the defined margin.
If margin is not provided, the machine epsilon *EPS* is used.
If provided, *extra_msg* is a string which will be printed along with the failure message.
Be careful that depending on the calculation, it might make more sense to measure
the absolute error or the relative error (see below).
**Example of absolute versus relative error**
.. code-block:: lua
-- convert pi/6 radian to 30 degree
pi_div_6_deg_calculated = math.deg(math.pi/6)
pi_div_6_deg_expected = 30
-- convert pi/3 radian to 60 degree
pi_div_3_deg_calculated = math.deg(math.pi/3)
pi_div_3_deg_expected = 60
-- check absolute error: it is not constant
print( (pi_div_6_deg_expected - pi_div_6_deg_calculated) / lu.EPS ) -- prints: 16
print( (pi_div_3_deg_expected - pi_div_3_deg_calculated) / lu.EPS ) -- prints: 32
-- Better use relative error:
print( ( (pi_div_6_deg_expected - pi_div_6_deg_calculated) / pi_div_6_deg_expected) / lu.EPS ) -- prints: 0.53333
print( ( (pi_div_3_deg_expected - pi_div_3_deg_calculated) / pi_div_3_deg_expected) / lu.EPS ) -- prints: 0.53333
-- relative error is constant. Assertion can take the form of:
assertAlmostEquals( (pi_div_6_deg_expected - pi_div_6_deg_calculated) / pi_div_6_deg_expected, lu.EPS )
assertAlmostEquals( (pi_div_3_deg_expected - pi_div_3_deg_calculated) / pi_div_3_deg_expected, lu.EPS )
Pretty printing
----------------
.. function:: prettystr( value )
Converts *value* to a nicely formatted string, whatever the type of the value.
It supports in particular tables, nested table and even recursive tables.
You can use it in your code to replace calls to *tostring()* .
**Example of prettystr()**
.. code-block::
> lu = require('luaunit')
> t1 = {1,2,3}
> t1['toto'] = 'titi'
> t1.f = function () end
> t1.fa = (1 == 0)
> t1.tr = (1 == 1)
> print( lu.prettystr(t1) )
{1, 2, 3, f=function: 00635d68, fa=false, toto="titi", tr=true}
.. _luaunit-global-asserts:
Enabling global or module-level functions
=========================================
Versions of LuaUnit before version 3.1 would export all assertions functions to the global namespace. A typical
lua test file would look like this:
.. code-block:: lua
require('luaunit')
TestToto = {} --class
function TestToto:test1_withFailure()
local a = 1
assertEquals( a , 1 )
-- will fail
assertEquals( a , 2 )
end
[...]
However, this is an obsolete practice in Lua. It is now recommended to keep all functions inside the module. Starting
from version 3.1 LuaUnit follows this practice and the code should be adapted to look like this:
.. code-block:: lua
-- the imported module must be stored
lu = require('luaunit')
TestToto = {} --class
function TestToto:test1_withFailure()
local a = 1
lu.assertEquals( a , 1 )
-- will fail
lu.assertEquals( a , 2 )
end
[...]
If you prefer the old way, LuaUnit can continue to export assertions functions if you set the following
global variable **prior** to importing LuaUnit:
.. code-block:: lua
-- this works
EXPORT_ASSERT_TO_GLOBALS = true
require('luaunit')
TestToto = {} --class
function TestToto:test1_withFailure()
local a = 1
assertEquals( a , 1 )
-- will fail
assertEquals( a , 2 )
end
[...]
Variables controlling LuaUnit behavior
=========================================
luaunit.ORDER_ACTUAL_EXPECTED
------------------------------
This boolean value defines the order of arguments in assertion functions.
For example, in the code `luaunit.assertEquals( a, b )` , LuaUnit will treat by default
`a` as a calculated value under test (actual value) and `b` as a reference value aginst which `a` is
compared (expected value). This will show up in the error reported for the test:
.. code-block:: shell
1) TestWithFailures.testFail1
doc\my_test_suite_with_failures.lua:79: expected: "titi"
actual: "toto"
If you prefer the opposite convention, i.e having the expected argument as first
and actual argument as second, set the *ORDER_ACTUAL_EXPECTED* to *false*.
luaunit.PRINT_TABLE_REF_IN_ERROR_MSG
------------------------------------------
This controls whether table references are always printed along with table or not. See `table-printing`_ for details. The
default is `false`.
.. _strip_extra_entries_in_stack_trace:
luaunit.STRIP_EXTRA_ENTRIES_IN_STACK_TRACE
------------------------------------------
This controls how many extra entries in a stack-trace are stripped. By default, LuaUnit hides all its internals
functions to show only user code in the error stack trace. However, if LuaUnit is used as part of another test
framework, and one wants to also hide this global test framework entries, you can increase the number here. The default
is *0* .
luaunit.VERSION
------------------------------------------
Current version of LuaUnit as a string.
Developing LuaUnit
******************
Development ecosystem
======================
LuaUnit is developed on `GitHub`_.
.. _GitHub: https://github.com/bluebird75/luaunit
Bugs or feature requests should be reported using `GitHub issues`_.
.. _GitHub issues: https://github.com/bluebird75/luaunit/issues
LuaUnit is released under the BSD license.
This documentation is available at `Read-the-docs`_.
.. _Read-the-docs: http://luaunit.readthedocs.org/en/latest/
Contributing
=============
You may contribute to LuaUnit by reporting bugs or wishes, or by contributing code directly with a pull request.
Some issues on GitHub are marked with label *enhancement*. Feel also free to pick up such tasks and implement them.
Changes should be proposed as *Pull Requests* on GitHub.
Thank to our continuous integration setup with Travis-Ci and AppVeyor, all unit-tests and functional tests are run on Linux, Windows and MacOs, with all versions of Lua. So
any *Pull Request* will show immediately if anything is going unexpected.
Running unit-tests
-------------------
All proposed changes should pass all unit-tests and if needed, add more unit-tests to cover the bug or the new functionality. Usage is pretty simple:
.. code-block:: shell
$ lua run_unit_tests.lua
................................................................................
...............................
Ran 111 tests in 0.120 seconds
OK
Running functional tests
----------------------------
Functional tests also exist to validate LuaUnit. Their management is slightly more complicated.
The main goal of functional tests is to validate that LuaUnit output has not been altered. Since LuaUnit supports some standard compliant output (TAP, junitxml), this is very important (and it has been broken in the past).
Functional tests perform the following actions:
* Run the 2 suites: example_with_luaunit.lua, test_with_err_fail_pass.lua (with various options to have successe, failure and/or errors)
* Run every suite with all output format, all verbosity
* Validate the XML output with jenkins/hudson and junit schema
* Compare the results with the reference output ( archived in test/ref ), with some tricks to make the comparison possible :
* adjustment of the file separator to use the same output on Windows and Unix
* date and test duration is zeroed so that it does not impact the comparison
* adjust the stack trace format which has changed between Lua 5.1, 5.2 and 5.3
* Run some legacy suites or tricky output to manage and verify output: test_with_xml.lua, , compat_luaunit_v2x.lua, legacy_example_with_luaunit.lua
For functional tests to run, *diff* must be available on the command line. *xmllint* is needed to perform the xml validation but
this step is skipped if *xmllint* can not be found.
When functional tests work well, it looks like this:
.. code-block:: shell
$ lua run_functional_tests.lua
...............
Ran 15 tests in 9.676 seconds
OK
When functional test fail, a diff of the comparison between the reference output and the current output is displayed (it can be quite
long). The list of faulty files is summed-up at the end.
Modifying reference files for functional tests
-----------------------------------------------
The script run_functional_tests.lua supports a --update option, with an optional argument.
* *--update* without argument **overwrites all reference output** with the current output. Use only if you know what you are doing, this is usually a very bad idea!
* The following argument overwrite a specific subset of reference files, select the one that fits your change:
* TestXml: XML output of test_with_xml
* ExampleXml: XML output of example_with_luaunit
* ExampleTap: TAP output of example_with_luaunit
* ExampleText: text output of example_with_luaunit
* ExampleNil: nil output of example_with_luaunit
* ErrFailPassText: text output of test_with_err_fail_pass
* ErrFailPassTap: TAP output of test_with_err_fail_pass
* ErrFailPassXml: XML output of test_with_err_fail_pass
* StopOnError: errFailPassTextStopOnError-1.txt, -2.txt, -3.txt, -4.txt
For example to record a change in the test_with_err_fail_pass output
.. code-block:: shell
$ lua run_functional_tests.lua --update ErrFailPassXml ErrFailPassTap ErrFailPassText
>>>>>>> Generating test/ref/errFailPassXmlDefault.txt
>>>>>>> Generating test/ref/errFailPassXmlDefault-success.txt
>>>>>>> Generating test/ref/errFailPassXmlDefault-failures.txt
>>>>>>> Generating test/ref/errFailPassXmlQuiet.txt
>>>>>>> Generating test/ref/errFailPassXmlQuiet-success.txt
>>>>>>> Generating test/ref/errFailPassXmlQuiet-failures.txt
>>>>>>> Generating test/ref/errFailPassXmlVerbose.txt
>>>>>>> Generating test/ref/errFailPassXmlVerbose-success.txt
>>>>>>> Generating test/ref/errFailPassXmlVerbose-failures.txt
>>>>>>> Generating test/ref/errFailPassTapDefault.txt
>>>>>>> Generating test/ref/errFailPassTapDefault-success.txt
>>>>>>> Generating test/ref/errFailPassTapDefault-failures.txt
>>>>>>> Generating test/ref/errFailPassTapQuiet.txt
>>>>>>> Generating test/ref/errFailPassTapQuiet-success.txt
>>>>>>> Generating test/ref/errFailPassTapQuiet-failures.txt
>>>>>>> Generating test/ref/errFailPassTapVerbose.txt
>>>>>>> Generating test/ref/errFailPassTapVerbose-success.txt
>>>>>>> Generating test/ref/errFailPassTapVerbose-failures.txt
>>>>>>> Generating test/ref/errFailPassTextDefault.txt
>>>>>>> Generating test/ref/errFailPassTextDefault-success.txt
>>>>>>> Generating test/ref/errFailPassTextDefault-failures.txt
>>>>>>> Generating test/ref/errFailPassTextQuiet.txt
>>>>>>> Generating test/ref/errFailPassTextQuiet-success.txt
>>>>>>> Generating test/ref/errFailPassTextQuiet-failures.txt
>>>>>>> Generating test/ref/errFailPassTextVerbose.txt
>>>>>>> Generating test/ref/errFailPassTextVerbose-success.txt
>>>>>>> Generating test/ref/errFailPassTextVerbose-failures.txt
$
You can then commit the new files into git.
.. Note :: how to commit updated reference outputs
When committing those changes into git, please use if possible an
intelligent git committing tool to commit only the interesting changes.
With SourceTree or SublimeMerge for example, in case of XML changes, I can select only the
lines relevant to the change and avoid committing all the updates to test
duration and test datestamp.
Typical failures for functional tests
---------------------------------------
Functional tests may start failing when:
1. Increasing LuaUnit version
2. Improving or breaking LuaUnit output
This a good place to start looking if you see failures occurring.
Using doit.py
--------------
The utility *doit.py* is a useful developer tool to repeat common developer commands.
**Running syntax check**
.. code-block:: shell
doit.py luacheck
Run luacheck on the LuaUnit code.
**Running unit-tests**
.. code-block:: shell
doit.py rununittests
Use it to run all unit tests, on all installed versions of Lua on the sytem.
**Running all tests**
.. code-block:: shell
doit.py runtests
Run luacheck then run unit-tests then run functional tests. Just like the continuous integration.
**Creating documentation**
.. code-block:: shell
doit.py makedoc
Runs sphinx to generate the html documentation. You must have sphinx installed on your path.
**Preparing a release**
.. code-block:: shell
doit.py buildrock
Create a rock file ready to be uploaded to luarocks, containing a clone of the current git, with documentation generated
README and LICENSE, tests, and everything else stripped out.
.. code-block:: shell
doit.py packageit
Create a zip and tar.gz archive suitable to be uploaded to github. The archive is composed of a clone
of the current git content, stripped from everything not related to using luaunit (no CI files, no doit.lu, ...)
but with full documentation generated.
Process of releasing a new version of LuaUnit
=============================================
The steps are the following:
* update luaunit with the desired functionality, ready for a release
* update the version number in luaunit.lua
* update the version number in doit.py
* check that all tests pass on all supported lua versions
.. code-block:: shell
doit.py runtests
* update *examples* if needed to reflect new features
* update index.rst with documentation of new features/behavior
* update README.md and index.rst with the release information (date and content)
* generate package for github:
.. code-block:: shell
doit.py packageit
* verify the content of the packages:
* documentation must be properly generated
* examples should work
* unit-tests should pass
Annexes
********
.. _table-printing:
Annex A: More on table printing
================================
When asserting tables equality, by default, the table content is printed in case of failures. LuaUnit tries to print
tables in a readable format. It is
possible to always display the table id along with the content, by setting a module parameter PRINT_TABLE_REF_IN_ERROR_MSG . This
helps identifying tables:
.. code-block:: lua
local lu = require('luaunit')
local t1 = {1,2,3}
-- normally, t1 is dispalyed as: "{1,2,3}"
-- if setting this:
lu.PRINT_TABLE_REF_IN_ERROR_MSG = true
-- display of table t1 becomes: "<table: 0x29ab56> {1,2,3}"
.. Note :: table loops
When displaying table content, it is possible to encounter loops, if for example two table references eachother. In such
cases, LuaUnit display the full table content once, along with the table id, and displays only the table id for the looping
reference.
**Example:** displaying a table with reference loop
.. code-block:: lua
local t1 = {}
local t2 = {}
t1.t2 = t2
t1.a = {1,2,3}
t2.t1 = t1
-- when displaying table t1:
-- table t1 inside t2 is only displayed by its id because t1 is already being displayed
-- table t2 is displayed along with its id because it is part of a loop.
-- t1: "<table: 0x29ab56> { a={1,2,3}, t2=<table: 0x27ab23> {t1=<table: 0x29ab56>} }"
.. _comparing-table-keys-table:
Annex B: Comparing tables with keys of type table
==================================================
There are a few programs out there which use tables as keys for other tables. How to compare
such tables is delicate.
A small code block is worth a thousand pictures :
.. code-block:: lua
local lu = require('luaunit')
-- let's define two tables
t1 = { 1, 2 }
t2 = { 1, 2 }
lu.assertEquals( t1, t2 ) -- succeeds
-- let's define three tables, with the two above tables as keys
t3 = { t1='a' }
t4 = { t2='a' }
t5 = { t2='a' }
The difference between t3 and t4 is that they both reference a key with different table references but
identical table content.
LuaUnit chooses to treat this as two different keys, so t3 and t4 are not considered equal.
.. code-block:: lua
lu.assertEquals( t3, t4 ) -- fails
If using the same table as key, they are now considered equal:
.. code-block:: lua
lu.assertEquals( t4, t5 ) -- fails
.. _Source_code_example:
Annex C: Source code of example
=================================
Source code of the example used in the `Getting started with LuaUnit`_
.. code-block:: lua
--
-- The examples described in the documentation are below.
--
lu = require('luaunit')
function add(v1,v2)
-- add positive numbers
-- return 0 if any of the numbers are 0
-- error if any of the two numbers are negative
if v1 < 0 or v2 < 0 then
error('Can only add positive or null numbers, received '..v1..' and '..v2)
end
if v1 == 0 or v2 == 0 then
return 0
end
return v1+v2
end
function adder(v)
-- return a function that adds v to its argument using add
function closure( x ) return x+v end
return closure
end
function div(v1,v2)
-- divide positive numbers
-- return 0 if any of the numbers are 0
-- error if any of the two numbers are negative
if v1 < 0 or v2 < 0 then
error('Can only divide positive or null numbers, received '..v1..' and '..v2)
end
if v1 == 0 or v2 == 0 then
return 0
end
return v1/v2
end
TestAdd = {}
function TestAdd:testAddPositive()
lu.assertEquals(add(1,1),2)
end
function TestAdd:testAddZero()
lu.assertEquals(add(1,0),0)
lu.assertEquals(add(0,5),0)
lu.assertEquals(add(0,0),0)
end
function TestAdd:testAddError()
lu.assertErrorMsgContains('Can only add positive or null numbers, received 2 and -3', add, 2, -3)
end
function TestAdd:testAdder()
f = adder(3)
lu.assertIsFunction( f )
lu.assertEquals( f(2), 5 )
end
-- end of table TestAdd
TestDiv = {}
function TestDiv:testDivPositive()
lu.assertEquals(div(4,2),2)
end
function TestDiv:testDivZero()
lu.assertEquals(div(4,0),0)
lu.assertEquals(div(0,5),0)
lu.assertEquals(div(0,0),0)
end
function TestDiv:testDivError()
lu.assertErrorMsgContains('Can only divide positive or null numbers, received 2 and -3', div, 2, -3)
end
-- end of table TestDiv
--[[
--
-- Uncomment this section to see how failures are displayed
--
TestWithFailures = {}
-- two failing tests
function TestWithFailures:testFail1()
lu.assertEquals( "toto", "titi")
end
function TestWithFailures:testFail2()
local a=1
local b='toto'
local c = a + b -- oops, can not add string and numbers
return c
end
-- end of table TestWithFailures
]]
--[[
TestLogger = {}
function TestLogger:setUp()
-- define the fname to use for logging
self.fname = 'mytmplog.log'
-- make sure the file does not already exists
os.remove(self.fname)
end
function TestLogger:testLoggerCreatesFile()
initLog(self.fname)
log('toto')
f = io.open(self.fname, 'r')
lu.assertNotNil( f )
f:close()
end
function TestLogger:tearDown()
self.fname = 'mytmplog.log'
-- cleanup our log file after all tests
os.remove(self.fname)
end
-- end of table TestLogger
]]
os.exit(lu.LuaUnit.run())
Annex D: BSD License
====================
This software is distributed under the BSD License.
Copyright (c) 2005-2018, Philippe Fremy <phil at freehackers dot org>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Index and Search page
**********************
* :ref:`genindex`
* :ref:`search`
|