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
|
This patch adds missing files to 1.2.1 tarball.
diff -urN liblas-1.2.1/test/unit/common.hpp main/test/unit/common.hpp
--- liblas-1.2.1/test/unit/common.hpp 1970-01-01 01:00:00.000000000 +0100
+++ main/test/unit/common.hpp 2009-10-02 16:46:22.000000000 +0200
@@ -0,0 +1,88 @@
+// $Id$
+//
+// (C) Copyright Mateusz Loskot 2008, mateusz@loskot.net
+// Distributed under the BSD License
+// (See accompanying file LICENSE.txt or copy at
+// http://www.opensource.org/licenses/bsd-license.php)
+//
+#include <liblas/liblas.hpp>
+#include <liblas/laspoint.hpp>
+#include <liblas/lasheader.hpp>
+
+
+namespace tut
+{
+
+// Predicate testing LASPoint against given XY coordinates
+// and tolerance.
+struct is_xy
+{
+ is_xy(double x, double y, double tolerance)
+ : x(x), y(y), t(tolerance)
+ {}
+
+ bool operator()(liblas::LASPoint const& p)
+ {
+ double const dx = x - p.GetX();
+ double const dy = y - p.GetY();
+
+ return ((dx <= t && dx >= -t) && (dy <= t && dy >= -t));
+ }
+
+ double x;
+ double y;
+ double t;
+};
+
+// Functor to calculate bounding box of a set of points
+struct bbox_calculator
+{
+ // bbox object will store operation result
+ bbox_calculator(liblas::detail::Extents<double>& bbox)
+ : empty(true), bbox(bbox)
+ {}
+
+ void operator()(liblas::LASPoint const& p)
+ {
+ // Box initialization during first iteration only
+ if (empty)
+ {
+ bbox.min.x = bbox.max.x = p.GetX();
+ bbox.min.y = bbox.max.y = p.GetY();
+ bbox.min.z = bbox.max.z = p.GetZ();
+ empty = false;
+ }
+
+ // Expand bounding box to include given point
+ bbox.min.x = std::min(bbox.min.x, p.GetX());
+ bbox.min.y = std::min(bbox.min.y, p.GetY());
+ bbox.min.z = std::min(bbox.min.z, p.GetZ());
+ bbox.max.x = std::max(bbox.max.x, p.GetX());
+ bbox.max.y = std::max(bbox.max.y, p.GetY());
+ bbox.max.z = std::max(bbox.max.z, p.GetZ());
+ }
+
+ bool empty;
+ liblas::detail::Extents<double>& bbox;
+};
+
+// Common test procedure for default constructed point data.
+void test_default_point(liblas::LASPoint const& p);
+
+// Common test procedure for default constructed header data.
+void test_default_header(liblas::LASHeader const& h);
+
+// Test of header data in trunk/test/data/TO_core_last_clip.las file
+void test_file10_header(liblas::LASHeader const& h);
+
+// Test of 1st point record in trunk/test/data/TO_core_last_clip.las file
+void test_file10_point1(liblas::LASPoint const& p);
+
+// Test of 2nd point record in trunk/test/data/TO_core_last_clip.las file
+void test_file10_point2(liblas::LASPoint const& p);
+
+// Test of 4th point record in trunk/test/data/TO_core_last_clip.las file
+void test_file10_point4(liblas::LASPoint const& p);
+
+} // namespace tut
+
diff -urN liblas-1.2.1/test/unit/liblas_test.hpp main/test/unit/liblas_test.hpp
--- liblas-1.2.1/test/unit/liblas_test.hpp 1970-01-01 01:00:00.000000000 +0100
+++ main/test/unit/liblas_test.hpp 2009-10-02 16:46:22.000000000 +0200
@@ -0,0 +1,18 @@
+// $Id$
+//
+// (C) Copyright Mateusz Loskot 2008, mateusz@loskot.net
+// Distributed under the BSD License
+// (See accompanying file LICENSE.txt or copy at
+// http://www.opensource.org/licenses/bsd-license.php)
+//
+#ifndef LIBLAS_TEST_HPP_INCLUDED
+#define LIBLAS_TEST_HPP_INCLUDED
+
+namespace tut
+{
+ // full path to trunk/test/data
+ extern std::string g_test_data_path;
+}
+
+#endif // LIBLAS_TEST_HPP_INCLUDED
+
diff -urN liblas-1.2.1/test/unit/tut/README main/test/unit/tut/README
--- liblas-1.2.1/test/unit/tut/README 1970-01-01 01:00:00.000000000 +0100
+++ main/test/unit/tut/README 2009-10-02 16:46:36.000000000 +0200
@@ -0,0 +1,516 @@
+--------------------------------------------------------------------
+TUT: C++ Template Unit Test Framework
+
+Version: TUT-2007-07-06
+Homepage: http://tut-framework.sourceforge.net/
+--------------------------------------------------------------------
+
+Documentation TUT How-To minimum steps to make TUT work for you
+
+What is TUT
+
+TUT is a pure C++ unit test framework. Its name - TUT - stands for
+Template Unit Tests.
+
+Features
+
+TUT provides all features required for unit testing:
+
+ * Similar tests can be grouped together into test groups. Each
+ test group has its unique name and is located in a separate
+ compilation unit. One group can contain almost unlimited number
+ of tests (actually, the limit is the compiler template
+ recursion depth).
+ * User can run all the tests (regression), or just some selected
+ groups or even some tests in these groups.
+ * TUT provides special template functions to check the condition
+ validity at run-time and to force test failure if required.
+ Since C++ doesn't provide a facility for obtaining stack trace
+ of the throwed exception and TUT avoids macros, those functions
+ accept string marker to allow users easely determine the source
+ of exception.
+ * TUT contains callback that can be implemented by the calling code
+ to integrate with an IDE, for example. Callbacks tell listener
+ when a new test run started, when test runner switches to the
+ next tests group, when a test was completed (and what result it
+ has), and when test run was finished. The callbacks allow users
+ to produce their own visualization format for test process and results.
+ * Being a template library, it doesn't need compilation; just
+ include the <tut.h> header into the test modules.
+
+TUT tests organization
+
+Test application
+
+C++ produces executable code, so tests have to be compiled into a single
+binary called test application. The application can be built in automated
+mode to perform nightly tests. They also can be built manually when a
+developer hunts for bugs.
+
+The test application contains tests, organized into test groups.
+
+Test groups
+
+The functionality of a tested application can be divided into a few separate
+function blocks (e.g. User Rights, Export, Processing, ...). It is natural
+to group together tests for each block. TUT invokes this test group. Each
+test group has a unique human-readable name and normally is located in a
+separate file.
+
+Tests
+
+Each single test usually checks only one specific element of functionality.
+For example, for a container a test could check whether size() call
+returns zero after the successful call to the clear() method.
+
+Writing simple test
+
+Preamble
+
+You are going to create a new class for your application. You decided to
+write tests for the class to be sure it works while you are developing or,
+possibly, enhancing it. Let's consider your class is shared pointer:
+std::auto_ptr-alike type that shares the same object among instances.
+
+Prior to test writing, you should decide what to test. Maximalist's
+approach requires to write so many tests that altering any single
+line of your production code will break at least one of them.
+Minimalist's approach allows one to write tests only for the most
+general or the most complex use cases. The truth lies somewhere in
+between, but only you, developer, know where. You should prepare
+common successful and unsuccessful scenarios, and the scenarios for
+testing any other functionality you believe might be broken in some way.
+
+For our shared_ptr we obviosly should test constructors, assignment operators, referencing and passing ownership.
+
+Skeleton
+
+If you don't have any implemented class to test yet, it would be good to
+implement it as a set of stubs for a first time. Thus you'll get an
+interface, and be able to write your tests. Yes, that's correct: you
+should write your tests before writing code! First of all, writing tests
+often helps to understand oddities in the current interface, and fix it.
+Secondly, with the stubs all your tests will fail, so you'll be sure
+they do their job.
+
+Creating Test Group
+
+Since we're writing unit tests, it would be a good idea to group the
+tests for our class in one place to be able to run them separately.
+It's also natural in C++ to place all the grouped tests into one
+compilation unit (i.e. source file). So, to begin, we should create
+a new file. Let's call it test_shared_ptr.cpp. (Final variant of the
+test group can be found in examples/shared_ptr subdirectory of the
+distribution package)
+
+// test_shared_ptr.cpp
+#include <tut.h>
+
+namespace tut
+{
+};
+
+
+As you see, you need to include TUT header file (as expected) and
+use namespace tut for tests. You may also use anonymous namespace if
+your compiler allows it (you will need to instantiate methods from
+tut namespace and some compilers refuse to place such instantiations
+into the anonymous namespace).
+
+A test group in TUT framework is described by the special template
+test_group<T>. The template parameter T is a type that will hold all
+test-specific data during the test execution. Actually, the data
+stored in T are member data of the test. Test object is inherited
+from T, so any test can refer to the data in T as its member data.
+
+For simple test groups (where all data are stored in test local
+variables) type T is an empty struct.
+
+#include <tut.h>
+
+namespace tut
+{
+ struct shared_ptr_data
+ {
+ };
+}
+
+But when tests have complex or repeating creation phase, you may put
+data members into the T and provide constructor (and, if required,
+destructor) for it. For each test, a new instance of T will be
+created. To prepare your test for execution TUT will use default
+constructor. Similarly, after the test has been finished, TUT
+calls the destructor to clean up T. I.e.:
+
+#include <tut.h>
+
+namespace tut
+{
+ struct complex_data
+ {
+ connection* con;
+ complex_data(){ con = db_pool.get_connection(); }
+ ~complex_data(){ db_pool.release_connection(con); }
+ };
+
+ // each test from now will have con data member initialized
+ // by constructor:
+ ...
+ con->commit();
+ ...
+
+
+What will happen if the constructor throws an exception? TUT will treat
+it as if test itself failed with exception, so this test will
+not be executed. You'll see an exception mark near the test, and
+if the constructor throwed something printable, a certain message will appear.
+
+Exception in destructor is threated a bit different. Reaching destruction
+phase means that the test is passed, so TUT marks test with warning
+status meaning that test itself was OK, but something bad has happend
+after the test.
+
+Well, all we have written so far is just a type declaration. To work
+with a group we have to have an object, so we must create the test group
+object. Since we need only one test group object for each unit, we can
+(and should, actually) make this object static. To prevent name clash with
+other test group objects in the namespace tut, we should provide a
+descriptive name, or, alternatively, we may put it into the anonymous
+namespace. The former is more correct, but a descriptive name usually works
+well too, unless you're too terse in giving names to objects.
+
+#include <tut.h>
+
+namespace tut
+{
+ struct shared_ptr_data
+ {
+
+ };
+
+ typedef test_group<shared_ptr_data> tg;
+ tg shared_ptr_group("shared_ptr");
+};
+
+As you see, any test group accepts a single parameter - its human-readable
+name. This name is used to identify the group when a programmer wants to
+execute all tests or a single test within the group. So this name shall
+also be descriptive enough to avoid clashes. Since we're writing tests
+for a specific unit, it's enough to name it after the unit name.
+
+Test group constructor will be called at unspecified moment at the test
+application startup. The constructor performs self-registration; it calls
+tut::runner and asks it to store the test group object name and location.
+Any other test group in the system undergoes the same processing, i.e.
+each test group object registers itself. Thus, test runner can iterate
+all test groups or execute any test group by its name.
+
+Newly created group has no tests associated with it. To be more precise,
+it has predefined set of dummy tests. By default, there are 50 tests in a
+group, including dummy ones. To create a test group with higher volume
+(e.g. when tests are generated by a script and their number is higher)
+we must provide a higher border of test group size when it is instantiated:
+
+#include <tut.h>
+
+namespace tut
+{
+ struct huge_test_data
+ {
+ };
+
+ // test group with maximum 500 tests
+ typedef test_group<huge_test_data,500> testgroup;
+ testgroup huge_test_testgroup("huge group");
+};
+
+
+Note also, that your compiler will possibly need a command-line switch
+or pragma to enlarge recursive instantiation depth. For g++, for
+example, you should specify at least --ftemplate-depth-501 to increase
+the depth. For more information see your compiler documentation.
+
+Creating Tests
+
+Now it's time to fill our test group with content.
+
+In TUT, all tests have unique numbers inside the test group. Some
+people believe that textual names better describe failed tests in
+reports. I agree; but in reality C++ templates work good with numbers
+because they are compile-time constants and refuse to do the same
+with strings, since strings are in fact addresses of character
+buffers, i.e. run-time data.
+
+As I mentioned above, our test group already has a few dummy tests;
+and we can replace any of them with something real just by writing
+our own version:
+
+#include <tut.h>
+
+namespace tut
+{
+ struct shared_ptr_data{};
+
+ typedef test_group<shared_ptr_data> testgroup;
+ typedef testgroup::object testobject;
+ testgroup shared_ptr_testgroup("shared_ptr");
+
+ template<>
+ template<>
+ void testobject::test<1>()
+ {
+ // do nothing test
+ }
+};
+
+
+So far this test does nothing, but it's enough to illustrate the concept.
+
+All tests in the group belong to the type test_group<T>::object. This
+class is directly inherited from our test data structure. In our case, it is
+
+class object : public shared_ptr_data { ... }
+
+This allows to access members of the data structure directly, since at
+the same time they are members of the object type. We also typedef the
+type with testobject for brevity.
+
+We mark our test with number 1. Previously, test group had a dummy test
+with the same number, but now, since we've defined our own version, it
+replaces the dummy test as more specialized one. It's how C++ template
+ordering works.
+
+The test we've written always succeeds. Successful test returns with no
+exceptions. Unsuccessful one either throws an exception, or fails at
+fail() or ensure() methods (which anyway just throw the exception when failed).
+
+First real test
+
+Well, now we know enough to write the first real working test. This test
+will create shared_ptr instances and check their state. We will define a
+small structure (keepee) to use it as shared_ptr stored object type.
+
+#include <tut.h>
+#include <shared_ptr.h>
+
+namespace tut
+{
+ struct shared_ptr_data
+ {
+ struct keepee{ int data; };
+ };
+
+ typedef test_group<shared_ptr_data> testgroup;
+ typedef testgroup::object testobject;
+ testgroup shared_ptr_testgroup("shared_ptr");
+
+ /**
+ * Checks default constructor.
+ */
+ template<>
+ template<>
+ void testobject::test<1>()
+ {
+ shared_ptr<keepee> def;
+ ensure("null",def.get() == 0);
+ }
+};
+
+
+That's all! The first line creates shared_ptr. If constructor throws
+an exception, test will fail (exceptions, including '...', are catched
+by the TUT framework). If the first line succeeds, we must check
+whether the kept object is null one. To do this, we use test object
+member function ensure(), which throws std::logic_error with a given
+message if its second argument is not true. Finally, if destructor of
+shared_ptr fails with exception, TUT also will report this test as failed.
+
+It's equally easy to write a test for the scenario where we expect to get
+an exception: let's consider our class should throw an exception if it
+has no stored object, and the operator -> is called.
+
+/**
+ * Checks operator -> throws instead of returning null.
+ */
+template<>
+template<>
+void testobject::test<2>()
+{
+ try
+ {
+ shared_ptr<keepee> sp;
+ sp->data = 0;
+ fail("exception expected");
+ }
+ catch( const std::runtime_error& ex )
+ {
+ // ok
+ }
+}
+
+
+Here we expect the std::runtime_error. If operator doesn't throw it,
+we'll force the test to fail using another member function: fail(). It
+just throws std::logic_error with a given message. If operator throws
+anything else, our test will fail too, since we intercept only
+std::runtime_error, and any other exception means the test has failed.
+
+NB: our second test has number 2 in its name; it can, actually, be any
+in range 1..Max; the only requirement is not to write tests with the
+same numbers. If you did, compiler will force you to fix them anyway.
+
+And finally, one more test to demonstrate how to use the
+ensure_equals template member function:
+
+/**
+ * Checks keepee counting.
+ */
+template<>
+template<>
+void testobject::test<3>()
+{
+ shared_ptr<keepee> sp1(new keepee());
+ shared_ptr<keepee> sp2(sp1);
+ ensure_equals("second copy at sp1",sp1.count(),2);
+ ensure_equals("second copy at sp2",sp2.count(),2);
+}
+
+
+The test checks if the shared_ptr correctly counts references during
+copy construction. What's interesting here is the template member
+ensure_equals. It has an additional functionality comparing with similar
+call ensure("second_copy",sp1.count()==2); it uses operator == to check
+the equality of the two passed parameters and, what's more important, it
+uses std::stream to format the passed parameters into a human-readable
+message (smth like: "second copy: expected 2, got 1"). It means that
+ensure_equals cannot be used with the types that don't have operator <<;
+but for those having the operator it provides much more informational message.
+
+In contrast to JUnit assertEquals, where the expected value goes before
+the actual one, ensure_equals() accepts the expected after the actual
+value. I believe it's more natural to read ensure_equals("msg", count, 5)
+as "ensure that count equals to 5" rather than JUnit's
+"assert that 5 is the value of the count".
+
+Running tests
+
+Tests are already written, but an attempt to run them will be unsuccessful.
+We need a few other bits to complete the test application.
+
+First of all, we need a main() method, simply because it must be in all
+applications. Secondly, we need a test runner singleton. Remember I said
+each test group should register itself in singleton? So, we need that
+singleton. And, finally, we need a kind of a callback handler to visualize
+our test results.
+
+The design of TUT doesn't strictly set a way the tests are visualized;
+instead, it provides an opportunity to get the test results by means of
+callbacks. Moreover it allows user to output the results in any format he
+prefers. Of course, there is a "reference implementation" in the
+example/subdirectory of the project.
+
+Test runner singleton is defined in tut.h, so all we need to activate it
+is to declare an object of the type tut::test_runner_singleton in the main
+module with a special name tut::runner.
+
+Now, with the test_runner we can run tests. Singleton has method get()
+returning a reference to an instance of the test_runner class, which in
+turn has methods run_tests() to run all tests in all groups,
+run_tests(const std::string& groupname) to run all tests in a given group
+and run_test(const std::string& grp,int n) to run one test in the specified group.
+
+// main.cpp
+#include <tut.h>
+
+namespace tut
+{
+ test_runner_singleton runner;
+}
+
+int main()
+{
+ // run all tests in all groups
+ runner.get().run_tests();
+
+ // run all tests in group "shared_ptr"
+ runner.get().run_tests("shared_ptr");
+
+ // run test number 5 in group "shared_ptr"
+ runner.get().run_test("shared_ptr",5);
+
+ return 0;
+}
+
+It's up to user to handle command-line arguments or GUI messages and map those
+arguments/messages to actual calls to test runner. Again, as you see, TUT
+doesn't restrict user here.
+
+But, the last question is still unanswered: how do we get our test results?
+The answer lies inside tut::callback interface. User shall create its subclass,
+and write up to three simple methods. He also can omit any method since they
+have default no-op implementation. Each corresponding method is called in the
+following cases:
+
+ * a new test run started;
+ * test finished;
+ * test run finished.
+
+Here is a minimal implementation:
+
+class visualizator : public tut::callback
+{
+public:
+ void run_started(){ }
+
+ void test_completed(const tut::test_result& tr)
+ {
+ // ... show test result here ...
+ }
+
+ void run_completed(){ }
+};
+
+The most important is the test_completed() method; its parameter has type
+test_result, and contains everything about the finished test, from its group
+name and number to the exception message, if any. Member result is an enum
+that contains status of the test: ok, fail or ex. Take a look at the
+examples/basic/main.cpp for more complete visualizator.
+
+Visualizator should be passed to the test_runner before run. Knowing that,
+we are ready to write the final version of our main module:
+
+// main.cpp
+#include <tut.h>
+
+namespace tut
+{
+ test_runner_singleton runner;
+}
+
+class callback : public tut::callback
+{
+public:
+ void run_started(){ std::cout << "\nbegin"; }
+
+ void test_completed(const tut::test_result& tr)
+ {
+ std::cout << tr.test_pos << "=" << tr.result << std::flush;
+ }
+
+ void run_completed(){ std::cout << "\nend"; }
+};
+
+int main()
+{
+ callback clbk;
+ runner.get().set_callback(&clbk);
+
+ // run all tests in all groups
+ runner.get().run_tests();
+ return 0;
+}
+
+That's it. You are now ready to link and run our test application. Do it as often as possible;
+once a day is a definite must. I hope, TUT will help you to make your application more
+robust and relieve your testing pain. Feel free to send your questions, suggestions and
+critical opinions to me; I'll do my best to address them asap.
diff -urN liblas-1.2.1/test/unit/tut/tut.hpp main/test/unit/tut/tut.hpp
--- liblas-1.2.1/test/unit/tut/tut.hpp 1970-01-01 01:00:00.000000000 +0100
+++ main/test/unit/tut/tut.hpp 2009-10-02 16:46:36.000000000 +0200
@@ -0,0 +1,1211 @@
+#ifndef TUT_H_GUARD
+#define TUT_H_GUARD
+
+#include <iostream>
+#include <map>
+#include <vector>
+#include <string>
+#include <sstream>
+#include <typeinfo>
+// NOTE: mloskot added for ensure_equals<double,double> specialization
+#include <iomanip>
+#include <limits>
+
+#if defined(TUT_USE_SEH)
+#include <windows.h>
+#include <winbase.h>
+#endif
+
+/**
+ * Template Unit Tests Framework for C++.
+ * http://tut.dozen.ru
+ *
+ * @author Vladimir Dyuzhev, Vladimir.Dyuzhev@gmail.com
+ */
+namespace tut
+{
+
+/**
+ * The base for all TUT exceptions.
+ */
+struct tut_error : public std::exception
+{
+ tut_error(const std::string& msg)
+ : err_msg(msg)
+ {
+ }
+
+ ~tut_error() throw()
+ {
+ }
+
+ const char* what() const throw()
+ {
+ return err_msg.c_str();
+ }
+
+private:
+
+ std::string err_msg;
+};
+
+/**
+ * Exception to be throwed when attempted to execute
+ * missed test by number.
+ */
+struct no_such_test : public tut_error
+{
+ no_such_test()
+ : tut_error("no such test")
+ {
+ }
+
+ ~no_such_test() throw()
+ {
+ }
+};
+
+/**
+ * No such test and passed test number is higher than
+ * any test number in current group. Used in one-by-one
+ * test running when upper bound is not known.
+ */
+struct beyond_last_test : public no_such_test
+{
+ beyond_last_test()
+ {
+ }
+
+ ~beyond_last_test() throw()
+ {
+ }
+};
+
+/**
+ * Group not found exception.
+ */
+struct no_such_group : public tut_error
+{
+ no_such_group(const std::string& grp)
+ : tut_error(grp)
+ {
+ }
+
+ ~no_such_group() throw()
+ {
+ }
+};
+
+/**
+ * Internal exception to be throwed when
+ * no more tests left in group or journal.
+ */
+struct no_more_tests
+{
+ no_more_tests()
+ {
+ }
+
+ ~no_more_tests() throw()
+ {
+ }
+};
+
+/**
+ * Internal exception to be throwed when
+ * test constructor has failed.
+ */
+struct bad_ctor : public tut_error
+{
+ bad_ctor(const std::string& msg)
+ : tut_error(msg)
+ {
+ }
+
+ ~bad_ctor() throw()
+ {
+ }
+};
+
+/**
+ * Exception to be throwed when ensure() fails or fail() called.
+ */
+struct failure : public tut_error
+{
+ failure(const std::string& msg)
+ : tut_error(msg)
+ {
+ }
+
+ ~failure() throw()
+ {
+ }
+};
+
+/**
+ * Exception to be throwed when test desctructor throwed an exception.
+ */
+struct warning : public tut_error
+{
+ warning(const std::string& msg)
+ : tut_error(msg)
+ {
+ }
+
+ ~warning() throw()
+ {
+ }
+};
+
+/**
+ * Exception to be throwed when test issued SEH (Win32)
+ */
+struct seh : public tut_error
+{
+ seh(const std::string& msg)
+ : tut_error(msg)
+ {
+ }
+
+ ~seh() throw()
+ {
+ }
+};
+
+/**
+ * Return type of runned test/test group.
+ *
+ * For test: contains result of test and, possible, message
+ * for failure or exception.
+ */
+struct test_result
+{
+ /**
+ * Test group name.
+ */
+ std::string group;
+
+ /**
+ * Test number in group.
+ */
+ int test;
+
+ /**
+ * Test name (optional)
+ */
+ std::string name;
+
+ /**
+ * ok - test finished successfully
+ * fail - test failed with ensure() or fail() methods
+ * ex - test throwed an exceptions
+ * warn - test finished successfully, but test destructor throwed
+ * term - test forced test application to terminate abnormally
+ */
+ enum result_type
+ {
+ ok,
+ fail,
+ ex,
+ warn,
+ term,
+ ex_ctor
+ };
+
+ result_type result;
+
+ /**
+ * Exception message for failed test.
+ */
+ std::string message;
+ std::string exception_typeid;
+
+ /**
+ * Default constructor.
+ */
+ test_result()
+ : test(0),
+ result(ok)
+ {
+ }
+
+ /**
+ * Constructor.
+ */
+ test_result(const std::string& grp, int pos,
+ const std::string& test_name, result_type res)
+ : group(grp),
+ test(pos),
+ name(test_name),
+ result(res)
+ {
+ }
+
+ /**
+ * Constructor with exception.
+ */
+ test_result(const std::string& grp,int pos,
+ const std::string& test_name, result_type res,
+ const std::exception& ex)
+ : group(grp),
+ test(pos),
+ name(test_name),
+ result(res),
+ message(ex.what()),
+ exception_typeid(typeid(ex).name())
+ {
+ }
+};
+
+/**
+ * Interface.
+ * Test group operations.
+ */
+struct group_base
+{
+ virtual ~group_base()
+ {
+ }
+
+ // execute tests iteratively
+ virtual void rewind() = 0;
+ virtual test_result run_next() = 0;
+
+ // execute one test
+ virtual test_result run_test(int n) = 0;
+};
+
+/**
+ * Test runner callback interface.
+ * Can be implemented by caller to update
+ * tests results in real-time. User can implement
+ * any of callback methods, and leave unused
+ * in default implementation.
+ */
+struct callback
+{
+ /**
+ * Virtual destructor is a must for subclassed types.
+ */
+ virtual ~callback()
+ {
+ }
+
+ /**
+ * Called when new test run started.
+ */
+ virtual void run_started()
+ {
+ }
+
+ /**
+ * Called when a group started
+ * @param name Name of the group
+ */
+ virtual void group_started(const std::string& /*name*/)
+ {
+ }
+
+ /**
+ * Called when a test finished.
+ * @param tr Test results.
+ */
+ virtual void test_completed(const test_result& /*tr*/)
+ {
+ }
+
+ /**
+ * Called when a group is completed
+ * @param name Name of the group
+ */
+ virtual void group_completed(const std::string& /*name*/)
+ {
+ }
+
+ /**
+ * Called when all tests in run completed.
+ */
+ virtual void run_completed()
+ {
+ }
+};
+
+/**
+ * Typedef for runner::list_groups()
+ */
+typedef std::vector<std::string> groupnames;
+
+/**
+ * Test runner.
+ */
+class test_runner
+{
+
+public:
+
+ /**
+ * Constructor
+ */
+ test_runner()
+ : callback_(&default_callback_)
+ {
+ }
+
+ /**
+ * Stores another group for getting by name.
+ */
+ void register_group(const std::string& name, group_base* gr)
+ {
+ if (gr == 0)
+ {
+ throw tut_error("group shall be non-null");
+ }
+
+ // TODO: inline variable
+ groups::iterator found = groups_.find(name);
+ if (found != groups_.end())
+ {
+ std::string msg("attempt to add already existent group " + name);
+ // this exception terminates application so we use cerr also
+ // TODO: should this message appear in stream?
+ std::cerr << msg << std::endl;
+ throw tut_error(msg);
+ }
+
+ groups_[name] = gr;
+ }
+
+ /**
+ * Stores callback object.
+ */
+ void set_callback(callback* cb)
+ {
+ callback_ = cb == 0 ? &default_callback_ : cb;
+ }
+
+ /**
+ * Returns callback object.
+ */
+ callback& get_callback() const
+ {
+ return *callback_;
+ }
+
+ /**
+ * Returns list of known test groups.
+ */
+ const groupnames list_groups() const
+ {
+ groupnames ret;
+ const_iterator i = groups_.begin();
+ const_iterator e = groups_.end();
+ while (i != e)
+ {
+ ret.push_back(i->first);
+ ++i;
+ }
+ return ret;
+ }
+
+ /**
+ * Runs all tests in all groups.
+ * @param callback Callback object if exists; null otherwise
+ */
+ void run_tests() const
+ {
+ callback_->run_started();
+
+ const_iterator i = groups_.begin();
+ const_iterator e = groups_.end();
+ while (i != e)
+ {
+ callback_->group_started(i->first);
+ try
+ {
+ run_all_tests_in_group_(i);
+ }
+ catch (const no_more_tests&)
+ {
+ callback_->group_completed(i->first);
+ }
+
+ ++i;
+ }
+
+ callback_->run_completed();
+ }
+
+ /**
+ * Runs all tests in specified group.
+ */
+ void run_tests(const std::string& group_name) const
+ {
+ callback_->run_started();
+
+ const_iterator i = groups_.find(group_name);
+ if (i == groups_.end())
+ {
+ callback_->run_completed();
+ throw no_such_group(group_name);
+ }
+
+ callback_->group_started(group_name);
+ try
+ {
+ run_all_tests_in_group_(i);
+ }
+ catch (const no_more_tests&)
+ {
+ // ok
+ }
+
+ callback_->group_completed(group_name);
+ callback_->run_completed();
+ }
+
+ /**
+ * Runs one test in specified group.
+ */
+ test_result run_test(const std::string& group_name, int n) const
+ {
+ callback_->run_started();
+
+ const_iterator i = groups_.find(group_name);
+ if (i == groups_.end())
+ {
+ callback_->run_completed();
+ throw no_such_group(group_name);
+ }
+
+ callback_->group_started(group_name);
+ try
+ {
+ test_result tr = i->second->run_test(n);
+ callback_->test_completed(tr);
+ callback_->group_completed(group_name);
+ callback_->run_completed();
+ return tr;
+ }
+ catch (const beyond_last_test&)
+ {
+ callback_->group_completed(group_name);
+ callback_->run_completed();
+ throw;
+ }
+ catch (const no_such_test&)
+ {
+ callback_->group_completed(group_name);
+ callback_->run_completed();
+ throw;
+ }
+ }
+
+protected:
+
+ typedef std::map<std::string, group_base*> groups;
+ typedef groups::iterator iterator;
+ typedef groups::const_iterator const_iterator;
+ groups groups_;
+
+ callback default_callback_;
+ callback* callback_;
+
+
+private:
+
+ void run_all_tests_in_group_(const_iterator i) const
+ {
+ i->second->rewind();
+ for ( ;; )
+ {
+ test_result tr = i->second->run_next();
+ callback_->test_completed(tr);
+
+ if (tr.result == test_result::ex_ctor)
+ {
+ throw no_more_tests();
+ }
+ }
+ }
+};
+
+/**
+ * Singleton for test_runner implementation.
+ * Instance with name runner_singleton shall be implemented
+ * by user.
+ */
+class test_runner_singleton
+{
+public:
+
+ static test_runner& get()
+ {
+ static test_runner tr;
+ return tr;
+ }
+};
+
+extern test_runner_singleton runner;
+
+/**
+ * Test object. Contains data test run upon and default test method
+ * implementation. Inherited from Data to allow tests to
+ * access test data as members.
+ */
+template <class Data>
+class test_object : public Data
+{
+public:
+
+ /**
+ * Default constructor
+ */
+ test_object()
+ {
+ }
+
+ void set_test_name(const std::string& current_test_name)
+ {
+ current_test_name_ = current_test_name;
+ }
+
+ const std::string& get_test_name() const
+ {
+ return current_test_name_;
+ }
+
+ /**
+ * Default do-nothing test.
+ */
+ template <int n>
+ void test()
+ {
+ called_method_was_a_dummy_test_ = true;
+ }
+
+ /**
+ * The flag is set to true by default (dummy) test.
+ * Used to detect usused test numbers and avoid unnecessary
+ * test object creation which may be time-consuming depending
+ * on operations described in Data::Data() and Data::~Data().
+ * TODO: replace with throwing special exception from default test.
+ */
+ bool called_method_was_a_dummy_test_;
+
+private:
+
+ std::string current_test_name_;
+};
+
+namespace
+{
+
+/**
+ * Tests provided condition.
+ * Throws if false.
+ */
+void ensure(bool cond)
+{
+ if (!cond)
+ {
+ // TODO: default ctor?
+ throw failure("");
+ }
+}
+
+/**
+ * Tests provided condition.
+ * Throws if true.
+ */
+void ensure_not(bool cond)
+{
+ ensure(!cond);
+}
+
+/**
+ * Tests provided condition.
+ * Throws if false.
+ */
+template <typename T>
+void ensure(const T msg, bool cond)
+{
+ if (!cond)
+ {
+ throw failure(msg);
+ }
+}
+
+/**
+ * Tests provided condition.
+ * Throws if true.
+ */
+template <typename T>
+void ensure_not(const T msg, bool cond)
+{
+ ensure(msg, !cond);
+}
+
+/**
+ * Tests two objects for being equal.
+ * Throws if false.
+ *
+ * NB: both T and Q must have operator << defined somewhere, or
+ * client code will not compile at all!
+ */
+template <class T, class Q>
+void ensure_equals(const char* msg, const Q& actual, const T& expected)
+{
+ if (expected != actual)
+ {
+ std::stringstream ss;
+ ss << (msg ? msg : "")
+ << (msg ? ":" : "")
+ << " expected '"
+ << expected
+ << "' actual '"
+ << actual
+ << '\'';
+ throw failure(ss.str().c_str());
+ }
+}
+
+template <class T, class Q>
+void ensure_equals(const Q& actual, const T& expected)
+{
+ ensure_equals<>(0, actual, expected);
+}
+
+/**
+ * Specialization of ensure_equals for double type.
+ * NOTE: unofficial extension added by mloskot
+ */
+template <>
+void ensure_equals<double, double>(const char* msg, const double& actual, const double& expected)
+{
+ const double epsilon = std::numeric_limits<double>::epsilon();
+ const double diff = actual - expected;
+
+ if ( !((diff <= epsilon) && (diff >= -epsilon )) )
+ {
+ std::stringstream ss;
+ ss << (msg?msg:"") << (msg?": ":"")
+ << std::scientific << std::showpoint << std::setprecision(16)
+ << "expected " << expected
+ << " actual " << actual
+ << " with precision " << epsilon;
+ throw failure(ss.str().c_str());
+ }
+}
+
+template <>
+void ensure_equals<double, double>(const double& actual, const double& expected)
+{
+ ensure_equals<>(0, actual, expected);
+}
+
+/**
+ * Tests two objects for being at most in given distance one from another.
+ * Borders are excluded.
+ * Throws if false.
+ *
+ * NB: T must have operator << defined somewhere, or
+ * client code will not compile at all! Also, T shall have
+ * operators + and -, and be comparable.
+ */
+template <class T>
+void ensure_distance(const char* msg, const T& actual, const T& expected,
+ const T& distance)
+{
+ if (expected-distance >= actual || expected+distance <= actual)
+ {
+ std::stringstream ss;
+ ss << (msg ? msg : "")
+ << (msg? ":" : "")
+ << " expected ("
+ << expected-distance
+ << " - "
+ << expected+distance
+ << ") actual '"
+ << actual
+ << '\'';
+ throw failure(ss.str().c_str());
+ }
+}
+
+template <class T>
+void ensure_distance(const T& actual, const T& expected, const T& distance)
+{
+ ensure_distance<>(0, actual, expected, distance);
+}
+
+/**
+ * Unconditionally fails with message.
+ */
+void fail(const char* msg = "")
+{
+ throw failure(msg);
+}
+
+} // end of namespace
+
+/**
+ * Walks through test tree and stores address of each
+ * test method in group. Instantiation stops at 0.
+ */
+template <class Test, class Group, int n>
+struct tests_registerer
+{
+ static void reg(Group& group)
+ {
+ group.reg(n, &Test::template test<n>);
+ tests_registerer<Test, Group, n - 1>::reg(group);
+ }
+};
+
+template <class Test, class Group>
+struct tests_registerer<Test, Group, 0>
+{
+ static void reg(Group&)
+ {
+ }
+};
+
+/**
+ * Test group; used to recreate test object instance for
+ * each new test since we have to have reinitialized
+ * Data base class.
+ */
+template <class Data, int MaxTestsInGroup = 50>
+class test_group : public group_base
+{
+ const char* name_;
+
+ typedef void (test_object<Data>::*testmethod)();
+ typedef std::map<int, testmethod> tests;
+ typedef typename tests::iterator tests_iterator;
+ typedef typename tests::const_iterator tests_const_iterator;
+ typedef typename tests::const_reverse_iterator
+ tests_const_reverse_iterator;
+ typedef typename tests::size_type size_type;
+
+ tests tests_;
+ tests_iterator current_test_;
+
+ /**
+ * Exception-in-destructor-safe smart-pointer class.
+ */
+ template <class T>
+ class safe_holder
+ {
+ T* p_;
+ bool permit_throw_in_dtor;
+
+ safe_holder(const safe_holder&);
+ safe_holder& operator=(const safe_holder&);
+
+ public:
+ safe_holder()
+ : p_(0),
+ permit_throw_in_dtor(false)
+ {
+ }
+
+ ~safe_holder()
+ {
+ release();
+ }
+
+ T* operator->() const
+ {
+ return p_;
+ }
+
+ T* get() const
+ {
+ return p_;
+ }
+
+ /**
+ * Tell ptr it can throw from destructor. Right way is to
+ * use std::uncaught_exception(), but some compilers lack
+ * correct implementation of the function.
+ */
+ void permit_throw()
+ {
+ permit_throw_in_dtor = true;
+ }
+
+ /**
+ * Specially treats exceptions in test object destructor;
+ * if test itself failed, exceptions in destructor
+ * are ignored; if test was successful and destructor failed,
+ * warning exception throwed.
+ */
+ void release()
+ {
+ try
+ {
+ if (delete_obj() == false)
+ {
+ throw warning("destructor of test object raised"
+ " an SEH exception");
+ }
+ }
+ catch (const std::exception& ex)
+ {
+ if (permit_throw_in_dtor)
+ {
+ std::string msg = "destructor of test object raised"
+ " exception: ";
+ msg += ex.what();
+ throw warning(msg);
+ }
+ }
+ catch( ... )
+ {
+ if (permit_throw_in_dtor)
+ {
+ throw warning("destructor of test object raised an"
+ " exception");
+ }
+ }
+ }
+
+ /**
+ * Re-init holder to get brand new object.
+ */
+ void reset()
+ {
+ release();
+ permit_throw_in_dtor = false;
+ p_ = new T();
+ }
+
+ bool delete_obj()
+ {
+#if defined(TUT_USE_SEH)
+ __try
+ {
+#endif
+ T* p = p_;
+ p_ = 0;
+ delete p;
+#if defined(TUT_USE_SEH)
+ }
+ __except(handle_seh_(::GetExceptionCode()))
+ {
+ if (permit_throw_in_dtor)
+ {
+ return false;
+ }
+ }
+#endif
+ return true;
+ }
+ };
+
+public:
+
+ typedef test_object<Data> object;
+
+ /**
+ * Creates and registers test group with specified name.
+ */
+ test_group(const char* name)
+ : name_(name)
+ {
+ // register itself
+ runner.get().register_group(name_,this);
+
+ // register all tests
+ tests_registerer<object, test_group, MaxTestsInGroup>::reg(*this);
+ }
+
+ /**
+ * This constructor is used in self-test run only.
+ */
+ test_group(const char* name, test_runner& another_runner)
+ : name_(name)
+ {
+ // register itself
+ another_runner.register_group(name_, this);
+
+ // register all tests
+ tests_registerer<test_object<Data>, test_group,
+ MaxTestsInGroup>::reg(*this);
+ };
+
+ /**
+ * Registers test method under given number.
+ */
+ void reg(int n, testmethod tm)
+ {
+ tests_[n] = tm;
+ }
+
+ /**
+ * Reset test position before first test.
+ */
+ void rewind()
+ {
+ current_test_ = tests_.begin();
+ }
+
+ /**
+ * Runs next test.
+ */
+ test_result run_next()
+ {
+ if (current_test_ == tests_.end())
+ {
+ throw no_more_tests();
+ }
+
+ // find next user-specialized test
+ safe_holder<object> obj;
+ while (current_test_ != tests_.end())
+ {
+ try
+ {
+ return run_test_(current_test_++, obj);
+ }
+ catch (const no_such_test&)
+ {
+ continue;
+ }
+ }
+
+ throw no_more_tests();
+ }
+
+ /**
+ * Runs one test by position.
+ */
+ test_result run_test(int n)
+ {
+ // beyond tests is special case to discover upper limit
+ if (tests_.rbegin() == tests_.rend())
+ {
+ throw beyond_last_test();
+ }
+
+ if (tests_.rbegin()->first < n)
+ {
+ throw beyond_last_test();
+ }
+
+ // withing scope; check if given test exists
+ tests_iterator ti = tests_.find(n);
+ if (ti == tests_.end())
+ {
+ throw no_such_test();
+ }
+
+ safe_holder<object> obj;
+ return run_test_(ti, obj);
+ }
+
+private:
+
+ /**
+ * VC allows only one exception handling type per function,
+ * so I have to split the method.
+ *
+ * TODO: refactoring needed!
+ */
+ test_result run_test_(const tests_iterator& ti, safe_holder<object>& obj)
+ {
+ std::string current_test_name;
+ try
+ {
+ if (run_test_seh_(ti->second,obj, current_test_name) == false)
+ {
+ throw seh("seh");
+ }
+ }
+ catch (const no_such_test&)
+ {
+ throw;
+ }
+ catch (const warning& ex)
+ {
+ // test ok, but destructor failed
+ if (obj.get())
+ {
+ current_test_name = obj->get_test_name();
+ }
+ test_result tr(name_,ti->first, current_test_name,
+ test_result::warn, ex);
+ return tr;
+ }
+ catch (const failure& ex)
+ {
+ // test failed because of ensure() or similar method
+ if (obj.get())
+ {
+ current_test_name = obj->get_test_name();
+ }
+ test_result tr(name_,ti->first, current_test_name,
+ test_result::fail, ex);
+ return tr;
+ }
+ catch (const seh& ex)
+ {
+ // test failed with sigsegv, divide by zero, etc
+ if (obj.get())
+ {
+ current_test_name = obj->get_test_name();
+ }
+ test_result tr(name_, ti->first, current_test_name,
+ test_result::term, ex);
+ return tr;
+ }
+ catch (const bad_ctor& ex)
+ {
+ // test failed because test ctor failed; stop the whole group
+ if (obj.get())
+ {
+ current_test_name = obj->get_test_name();
+ }
+ test_result tr(name_, ti->first, current_test_name,
+ test_result::ex_ctor, ex);
+ return tr;
+ }
+ catch (const std::exception& ex)
+ {
+ // test failed with std::exception
+ if (obj.get())
+ {
+ current_test_name = obj->get_test_name();
+ }
+ test_result tr(name_, ti->first, current_test_name,
+ test_result::ex, ex);
+ return tr;
+ }
+ catch (...)
+ {
+ // test failed with unknown exception
+ if (obj.get())
+ {
+ current_test_name = obj->get_test_name();
+ }
+ test_result tr(name_, ti->first, current_test_name,
+ test_result::ex);
+ return tr;
+ }
+
+ // test passed
+ test_result tr(name_,ti->first, current_test_name, test_result::ok);
+ return tr;
+ }
+
+ /**
+ * Runs one under SEH if platform supports it.
+ */
+ bool run_test_seh_(testmethod tm, safe_holder<object>& obj,
+ std::string& current_test_name)
+ {
+#if defined(TUT_USE_SEH)
+ __try
+ {
+#endif
+ if (obj.get() == 0)
+ {
+ reset_holder_(obj);
+ }
+
+ obj->called_method_was_a_dummy_test_ = false;
+
+#if defined(TUT_USE_SEH)
+
+ __try
+ {
+#endif
+ (obj.get()->*tm)();
+#if defined(TUT_USE_SEH)
+ }
+ __except(handle_seh_(::GetExceptionCode()))
+ {
+ // throw seh("SEH");
+ current_test_name = obj->get_test_name();
+ return false;
+ }
+#endif
+
+ if (obj->called_method_was_a_dummy_test_)
+ {
+ // do not call obj.release(); reuse object
+ throw no_such_test();
+ }
+
+ current_test_name = obj->get_test_name();
+ obj.permit_throw();
+ obj.release();
+#if defined(TUT_USE_SEH)
+ }
+ __except(handle_seh_(::GetExceptionCode()))
+ {
+ return false;
+ }
+#endif
+ return true;
+ }
+
+ void reset_holder_(safe_holder<object>& obj)
+ {
+ try
+ {
+ obj.reset();
+ }
+ catch (const std::exception& ex)
+ {
+ throw bad_ctor(ex.what());
+ }
+ catch (...)
+ {
+ throw bad_ctor("test constructor has generated an exception;"
+ " group execution is terminated");
+ }
+ }
+};
+
+#if defined(TUT_USE_SEH)
+/**
+ * Decides should we execute handler or ignore SE.
+ */
+inline int handle_seh_(DWORD excode)
+{
+ switch(excode)
+ {
+ case EXCEPTION_ACCESS_VIOLATION:
+ case EXCEPTION_DATATYPE_MISALIGNMENT:
+ case EXCEPTION_BREAKPOINT:
+ case EXCEPTION_SINGLE_STEP:
+ case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
+ case EXCEPTION_FLT_DENORMAL_OPERAND:
+ case EXCEPTION_FLT_DIVIDE_BY_ZERO:
+ case EXCEPTION_FLT_INEXACT_RESULT:
+ case EXCEPTION_FLT_INVALID_OPERATION:
+ case EXCEPTION_FLT_OVERFLOW:
+ case EXCEPTION_FLT_STACK_CHECK:
+ case EXCEPTION_FLT_UNDERFLOW:
+ case EXCEPTION_INT_DIVIDE_BY_ZERO:
+ case EXCEPTION_INT_OVERFLOW:
+ case EXCEPTION_PRIV_INSTRUCTION:
+ case EXCEPTION_IN_PAGE_ERROR:
+ case EXCEPTION_ILLEGAL_INSTRUCTION:
+ case EXCEPTION_NONCONTINUABLE_EXCEPTION:
+ case EXCEPTION_STACK_OVERFLOW:
+ case EXCEPTION_INVALID_DISPOSITION:
+ case EXCEPTION_GUARD_PAGE:
+ case EXCEPTION_INVALID_HANDLE:
+ return EXCEPTION_EXECUTE_HANDLER;
+ };
+
+ return EXCEPTION_CONTINUE_SEARCH;
+}
+#endif
+}
+
+#endif
+
diff -urN liblas-1.2.1/test/unit/tut/tut_reporter.hpp main/test/unit/tut/tut_reporter.hpp
--- liblas-1.2.1/test/unit/tut/tut_reporter.hpp 1970-01-01 01:00:00.000000000 +0100
+++ main/test/unit/tut/tut_reporter.hpp 2009-10-02 16:46:36.000000000 +0200
@@ -0,0 +1,227 @@
+#ifndef TUT_REPORTER
+#define TUT_REPORTER
+
+#include <tut/tut.hpp>
+
+/**
+ * Template Unit Tests Framework for C++.
+ * http://tut.dozen.ru
+ *
+ * @author Vladimir Dyuzhev, Vladimir.Dyuzhev@gmail.com
+ */
+namespace
+{
+
+std::ostream& operator<<(std::ostream& os, const tut::test_result& tr)
+{
+ switch(tr.result)
+ {
+ case tut::test_result::ok:
+ os << '.';
+ break;
+ case tut::test_result::fail:
+ os << '[' << tr.test << "=F]";
+ break;
+ case tut::test_result::ex_ctor:
+ os << '[' << tr.test << "=C]";
+ break;
+ case tut::test_result::ex:
+ os << '[' << tr.test << "=X]";
+ break;
+ case tut::test_result::warn:
+ os << '[' << tr.test << "=W]";
+ break;
+ case tut::test_result::term:
+ os << '[' << tr.test << "=T]";
+ break;
+ }
+
+ return os;
+}
+
+} // end of namespace
+
+namespace tut
+{
+
+/**
+ * Default TUT callback handler.
+ */
+class reporter : public tut::callback
+{
+ std::string current_group;
+ typedef std::vector<tut::test_result> not_passed_list;
+ not_passed_list not_passed;
+ std::ostream& os;
+
+public:
+
+ int ok_count;
+ int exceptions_count;
+ int failures_count;
+ int terminations_count;
+ int warnings_count;
+
+ reporter()
+ : os(std::cout)
+ {
+ init();
+ }
+
+ reporter(std::ostream& out)
+ : os(out)
+ {
+ init();
+ }
+
+ void run_started()
+ {
+ init();
+ }
+
+ void test_completed(const tut::test_result& tr)
+ {
+ if (tr.group != current_group)
+ {
+ os << std::endl << tr.group << ": " << std::flush;
+ current_group = tr.group;
+ }
+
+ os << tr << std::flush;
+ if (tr.result == tut::test_result::ok)
+ {
+ ok_count++;
+ }
+ else if (tr.result == tut::test_result::ex)
+ {
+ exceptions_count++;
+ }
+ else if (tr.result == tut::test_result::ex_ctor)
+ {
+ exceptions_count++;
+ }
+ else if (tr.result == tut::test_result::fail)
+ {
+ failures_count++;
+ }
+ else if (tr.result == tut::test_result::warn)
+ {
+ warnings_count++;
+ }
+ else
+ {
+ terminations_count++;
+ }
+
+ if (tr.result != tut::test_result::ok)
+ {
+ not_passed.push_back(tr);
+ }
+ }
+
+ void run_completed()
+ {
+ os << std::endl;
+
+ if (not_passed.size() > 0)
+ {
+ not_passed_list::const_iterator i = not_passed.begin();
+ while (i != not_passed.end())
+ {
+ tut::test_result tr = *i;
+
+ os << std::endl;
+
+ os << "---> " << "group: " << tr.group
+ << ", test: test<" << tr.test << ">"
+ << (!tr.name.empty() ? (std::string(" : ") + tr.name) : std::string())
+ << std::endl;
+
+ os << " problem: ";
+ switch(tr.result)
+ {
+ case test_result::fail:
+ os << "assertion failed" << std::endl;
+ break;
+ case test_result::ex:
+ case test_result::ex_ctor:
+ os << "unexpected exception" << std::endl;
+ if( tr.exception_typeid != "" )
+ {
+ os << " exception typeid: "
+ << tr.exception_typeid << std::endl;
+ }
+ break;
+ case test_result::term:
+ os << "would be terminated" << std::endl;
+ break;
+ case test_result::warn:
+ os << "test passed, but cleanup code (destructor) raised"
+ " an exception" << std::endl;
+ break;
+ default:
+ break;
+ }
+
+ if (!tr.message.empty())
+ {
+ if (tr.result == test_result::fail)
+ {
+ os << " failed assertion: \"" << tr.message << "\""
+ << std::endl;
+ }
+ else
+ {
+ os << " message: \"" << tr.message << "\""
+ << std::endl;
+ }
+ }
+
+ ++i;
+ }
+ }
+
+ os << std::endl;
+
+ os << "tests summary:";
+ if (terminations_count > 0)
+ {
+ os << " terminations:" << terminations_count;
+ }
+ if (exceptions_count > 0)
+ {
+ os << " exceptions:" << exceptions_count;
+ }
+ if (failures_count > 0)
+ {
+ os << " failures:" << failures_count;
+ }
+ if (warnings_count > 0)
+ {
+ os << " warnings:" << warnings_count;
+ }
+ os << " ok:" << ok_count;
+ os << std::endl;
+ }
+
+ bool all_ok() const
+ {
+ return not_passed.empty();
+ }
+
+private:
+
+ void init()
+ {
+ ok_count = 0;
+ exceptions_count = 0;
+ failures_count = 0;
+ terminations_count = 0;
+ warnings_count = 0;
+ not_passed.clear();
+ }
+};
+
+}
+
+#endif
diff -urN liblas-1.2.1/test/unit/tut/tut_restartable.hpp main/test/unit/tut/tut_restartable.hpp
--- liblas-1.2.1/test/unit/tut/tut_restartable.hpp 1970-01-01 01:00:00.000000000 +0100
+++ main/test/unit/tut/tut_restartable.hpp 2009-10-02 16:46:36.000000000 +0200
@@ -0,0 +1,394 @@
+#ifndef TUT_RESTARTABLE_H_GUARD
+#define TUT_RESTARTABLE_H_GUARD
+
+#include <tut/tut.hpp>
+#include <fstream>
+#include <iostream>
+#include <stdexcept>
+
+/**
+ * Template Unit Tests Framework for C++.
+ * http://tut.dozen.ru
+ *
+ * Optional restartable wrapper for test_runner. Allows to restart test runs
+ * finished due to abnormal test application termination (such as segmentation
+ * fault or math error).
+ *
+ * @author Vladimir Dyuzhev, Vladimir.Dyuzhev@gmail.com
+ */
+
+namespace tut
+{
+
+namespace util
+{
+
+/**
+ * Escapes non-alphabetical characters in string.
+ */
+std::string escape(const std::string& orig)
+{
+ std::string rc;
+ std::string::const_iterator i,e;
+ i = orig.begin();
+ e = orig.end();
+
+ while (i != e)
+ {
+ if ((*i >= 'a' && *i <= 'z') ||
+ (*i >= 'A' && *i <= 'Z') ||
+ (*i >= '0' && *i <= '9') )
+ {
+ rc += *i;
+ }
+ else
+ {
+ rc += '\\';
+ rc += ('a'+(((unsigned int)*i) >> 4));
+ rc += ('a'+(((unsigned int)*i) & 0xF));
+ }
+
+ ++i;
+ }
+ return rc;
+}
+
+/**
+ * Un-escapes string.
+ */
+std::string unescape(const std::string& orig)
+{
+ std::string rc;
+ std::string::const_iterator i,e;
+ i = orig.begin();
+ e = orig.end();
+
+ while (i != e)
+ {
+ if (*i != '\\')
+ {
+ rc += *i;
+ }
+ else
+ {
+ ++i;
+ if (i == e)
+ {
+ throw std::invalid_argument("unexpected end of string");
+ }
+ unsigned int c1 = *i;
+ ++i;
+ if (i == e)
+ {
+ throw std::invalid_argument("unexpected end of string");
+ }
+ unsigned int c2 = *i;
+ rc += (((c1 - 'a') << 4) + (c2 - 'a'));
+ }
+
+ ++i;
+ }
+ return rc;
+}
+
+/**
+ * Serialize test_result avoiding interfering with operator <<.
+ */
+void serialize(std::ostream& os, const tut::test_result& tr)
+{
+ os << escape(tr.group) << std::endl;
+ os << tr.test << ' ';
+ switch(tr.result)
+ {
+ case test_result::ok:
+ os << 0;
+ break;
+ case test_result::fail:
+ os << 1;
+ break;
+ case test_result::ex:
+ os << 2;
+ break;
+ case test_result::warn:
+ os << 3;
+ break;
+ case test_result::term:
+ os << 4;
+ break;
+ default:
+ throw std::logic_error("operator << : bad result_type");
+ }
+ os << ' ' << escape(tr.message) << std::endl;
+}
+
+/**
+ * deserialization for test_result
+ */
+void deserialize(std::istream& is, tut::test_result& tr)
+{
+ std::getline(is,tr.group);
+ if (is.eof())
+ {
+ throw tut::no_more_tests();
+ }
+ tr.group = unescape(tr.group);
+
+ tr.test = -1;
+ is >> tr.test;
+ if (tr.test < 0)
+ {
+ throw std::logic_error("operator >> : bad test number");
+ }
+
+ int n = -1;
+ is >> n;
+ switch(n)
+ {
+ case 0:
+ tr.result = test_result::ok;
+ break;
+ case 1:
+ tr.result = test_result::fail;
+ break;
+ case 2:
+ tr.result = test_result::ex;
+ break;
+ case 3:
+ tr.result = test_result::warn;
+ break;
+ case 4:
+ tr.result = test_result::term;
+ break;
+ default:
+ throw std::logic_error("operator >> : bad result_type");
+ }
+
+ is.ignore(1); // space
+ std::getline(is,tr.message);
+ tr.message = unescape(tr.message);
+ if (!is.good())
+ {
+ throw std::logic_error("malformed test result");
+ }
+}
+};
+
+/**
+ * Restartable test runner wrapper.
+ */
+class restartable_wrapper
+{
+ test_runner& runner_;
+ callback* callback_;
+
+ std::string dir_;
+ std::string log_; // log file: last test being executed
+ std::string jrn_; // journal file: results of all executed tests
+
+public:
+ /**
+ * Default constructor.
+ * @param dir Directory where to search/put log and journal files
+ */
+ restartable_wrapper(const std::string& dir = ".")
+ : runner_(runner.get()),
+ callback_(0),
+ dir_(dir)
+ {
+ // dozen: it works, but it would be better to use system path separator
+ jrn_ = dir_ + '/' + "journal.tut";
+ log_ = dir_ + '/' + "log.tut";
+ }
+
+ /**
+ * Stores another group for getting by name.
+ */
+ void register_group(const std::string& name, group_base* gr)
+ {
+ runner_.register_group(name,gr);
+ }
+
+ /**
+ * Stores callback object.
+ */
+ void set_callback(callback* cb)
+ {
+ callback_ = cb;
+ }
+
+ /**
+ * Returns callback object.
+ */
+ callback& get_callback() const
+ {
+ return runner_.get_callback();
+ }
+
+ /**
+ * Returns list of known test groups.
+ */
+ groupnames list_groups() const
+ {
+ return runner_.list_groups();
+ }
+
+ /**
+ * Runs all tests in all groups.
+ */
+ void run_tests() const
+ {
+ // where last run was failed
+ std::string fail_group;
+ int fail_test;
+ read_log_(fail_group,fail_test);
+ bool fail_group_reached = (fail_group == "");
+
+ // iterate over groups
+ tut::groupnames gn = list_groups();
+ tut::groupnames::const_iterator gni,gne;
+ gni = gn.begin();
+ gne = gn.end();
+ while (gni != gne)
+ {
+ // skip all groups before one that failed
+ if (!fail_group_reached)
+ {
+ if (*gni != fail_group)
+ {
+ ++gni;
+ continue;
+ }
+ fail_group_reached = true;
+ }
+
+ // first or restarted run
+ int test = (*gni == fail_group && fail_test >= 0) ? fail_test + 1 : 1;
+ while(true)
+ {
+ // last executed test pos
+ register_execution_(*gni,test);
+
+ try
+ {
+ tut::test_result tr = runner_.run_test(*gni,test);
+ register_test_(tr);
+ }
+ catch (const tut::beyond_last_test&)
+ {
+ break;
+ }
+ catch(const tut::no_such_test&)
+ {
+ // it's ok
+ }
+
+ ++test;
+ }
+
+ ++gni;
+ }
+
+ // show final results to user
+ invoke_callback_();
+
+ // truncate files as mark of successful finish
+ truncate_();
+ }
+
+private:
+ /**
+ * Shows results from journal file.
+ */
+ void invoke_callback_() const
+ {
+ runner_.set_callback(callback_);
+ runner_.get_callback().run_started();
+
+ std::string current_group;
+ std::ifstream ijournal(jrn_.c_str());
+ while (ijournal.good())
+ {
+ // read next test result
+ try
+ {
+ tut::test_result tr;
+ util::deserialize(ijournal,tr);
+ runner_.get_callback().test_completed(tr);
+ }
+ catch (const no_more_tests&)
+ {
+ break;
+ }
+ }
+
+ runner_.get_callback().run_completed();
+ }
+
+ /**
+ * Register test into journal.
+ */
+ void register_test_(const test_result& tr) const
+ {
+ std::ofstream ojournal(jrn_.c_str(), std::ios::app);
+ util::serialize(ojournal, tr);
+ ojournal << std::flush;
+ if (!ojournal.good())
+ {
+ throw std::runtime_error("unable to register test result in file "
+ + jrn_);
+ }
+ }
+
+ /**
+ * Mark the fact test going to be executed
+ */
+ void register_execution_(const std::string& grp, int test) const
+ {
+ // last executed test pos
+ std::ofstream olog(log_.c_str());
+ olog << util::escape(grp) << std::endl << test << std::endl << std::flush;
+ if (!olog.good())
+ {
+ throw std::runtime_error("unable to register execution in file "
+ + log_);
+ }
+ }
+
+ /**
+ * Truncate tests.
+ */
+ void truncate_() const
+ {
+ std::ofstream olog(log_.c_str());
+ std::ofstream ojournal(jrn_.c_str());
+ }
+
+ /**
+ * Read log file
+ */
+ void read_log_(std::string& fail_group, int& fail_test) const
+ {
+ // read failure point, if any
+ std::ifstream ilog(log_.c_str());
+ std::getline(ilog,fail_group);
+ fail_group = util::unescape(fail_group);
+ ilog >> fail_test;
+ if (!ilog.good())
+ {
+ fail_group = "";
+ fail_test = -1;
+ truncate_();
+ }
+ else
+ {
+ // test was terminated...
+ tut::test_result tr(fail_group, fail_test, "", tut::test_result::term);
+ register_test_(tr);
+ }
+ }
+};
+
+}
+
+#endif
+
|