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 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1996, 2013 Oracle and/or its affiliates. All rights reserved.
#
# $Id$
source ./include.tcl
# Add the default Windows build sub-directory to the path, so that
# the binaries can be found without copies.
if {[string match Win* $tcl_platform(os)]} {
global env
global buildpath
set env(PATH) "$env(PATH)\;$buildpath"
}
# Load DB's TCL API.
load $tcllib
# Check for existing files that might interfere with testing.
set badfiles [glob -nocomplain DB_CONFIG __db.*]
if { [llength $badfiles] > 0 } {
error "=====\nPlease move or delete these files from the current\
directory: \n$badfiles \nThey can cause test failures.\n====="
}
if { [file exists $testdir] != 1 } {
file mkdir $testdir
}
global __debug_print
global __debug_on
global __debug_test
#
# Test if utilities work to figure out the path. Most systems
# use ., but QNX has a problem with execvp of shell scripts which
# causes it to break.
#
set stat [catch {exec ./db_printlog -?} ret]
if { [string first "exec format error" $ret] != -1 } {
set util_path ./.libs
} else {
set util_path .
}
set __debug_print 0
set encrypt 0
set old_encrypt 0
set passwd test_passwd
# Error stream that (should!) always go to the console, even if we're
# redirecting to ALL.OUT.
set consoleerr stderr
set dict $test_path/wordlist
set alphabet "abcdefghijklmnopqrstuvwxyz"
set datastr "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"
# Random number seed.
global rand_init
set rand_init 11302005
# Default record length for fixed record length access method(s)
set fixed_len 20
set recd_debug 0
set log_log_record_types 0
set ohandles {}
# Normally, we're not running an all-tests-in-one-env run. This matters
# for error stream/error prefix settings in berkdb_open.
global is_envmethod
set is_envmethod 0
#
# Set when we're running a child process in a rep test.
#
global is_repchild
set is_repchild 0
# Set when we want to use replication test messaging that cannot
# share an env -- for example, because the replication processes
# are not all from the same BDB version.
global noenv_messaging
set noenv_messaging 0
# For testing locker id wrap around.
global lock_curid
global lock_maxid
set lock_curid 0
set lock_maxid 2147483647
global txn_curid
global txn_maxid
set txn_curid 2147483648
set txn_maxid 4294967295
# The variable one_test allows us to run all the permutations
# of a test with run_all or run_std.
global one_test
if { [info exists one_test] != 1 } {
set one_test "ALL"
}
# If you call a test with the proc find_valid_methods, it will
# return the list of methods for which it will run, instead of
# actually running.
# Btree and recno are always built, but hash, heap, and queue
# can be disabled, so verify that they are there before adding
# them to the list.
source $test_path/testutils.tcl
global checking_valid_methods
set checking_valid_methods 0
global valid_methods
set valid_methods { btree rbtree recno frecno rrecno }
source $test_path/testutils.tcl
set conf [berkdb getconfig]
if { [is_substr $conf "queue"] } {
lappend valid_methods "queue"
lappend valid_methods "queueext"
}
if { [is_substr $conf "hash"] } {
lappend valid_methods "hash"
}
if { [is_substr $conf "heap"] } {
lappend valid_methods "heap"
}
# The variable test_recopts controls whether we open envs in
# replication tests with the -recover flag. The default is
# to test with and without the flag, but to run a meaningful
# subset of rep tests more quickly, rep_subset will randomly
# pick one or the other.
global test_recopts
set test_recopts { "-recover" "" }
# Set up any OS-specific values.
global tcl_platform
set is_freebsd_test [string match FreeBSD $tcl_platform(os)]
set is_hp_test [string match HP-UX $tcl_platform(os)]
set is_linux_test [string match Linux $tcl_platform(os)]
set is_osx_test [string match Darwin $tcl_platform(os)]
set is_qnx_test [string match QNX $tcl_platform(os)]
set is_sunos_test [string match SunOS $tcl_platform(os)]
set is_windows_test [string match Win* $tcl_platform(os)]
set is_windows9x_test [string match "Windows 95" $tcl_platform(osVersion)]
set is_je_test 0
set upgrade_be [big_endian]
global is_fat32
set is_fat32 [string match FAT32 [lindex [file system check] 1]]
global EXE BAT
if { $is_windows_test == 1 } {
set EXE ".exe"
set BAT ".bat"
} else {
set EXE ""
set BAT ""
}
if { $is_windows_test == 1 } {
set util_path "./$buildpath"
}
# This is where the test numbering and parameters now live.
source $test_path/testparams.tcl
source $test_path/db_reptest.tcl
# Try to open an encrypted database. If it fails, this release
# doesn't support encryption, and encryption tests should be skipped.
set has_crypto 1
set stat [catch {set db [eval {berkdb_open_noerr \
-create -btree -encryptaes test_passwd} ] } result ]
if { $stat != 0 } {
# Make sure it's the right error for a non-crypto release.
error_check_good non_crypto_release \
[expr [is_substr $result "operation not supported"] || \
[is_substr $result "invalid argument"]] 1
set has_crypto 0
} else {
# It is a crypto release. Get rid of the db, we don't need it.
error_check_good close_encrypted_db [$db close] 0
}
# Get the default page size of this system
global default_pagesize
set db [berkdb_open_noerr -create -btree]
error_check_good "db open" [is_valid_db $db] TRUE
set stat [catch {set default_pagesize [$db get_pagesize]} result]
error_check_good "db get_pagesize" $stat 0
error_check_good "db close" [$db close] 0
# From here on out, test.tcl contains the procs that are used to
# run all or part of the test suite.
proc run_std { { testname ALL } args } {
global test_names
global one_test
global has_crypto
global valid_methods
source ./include.tcl
set one_test $testname
if { $one_test != "ALL" } {
# Source testparams again to adjust test_names.
source $test_path/testparams.tcl
}
set exflgs [eval extractflags $args]
set args [lindex $exflgs 0]
set flags [lindex $exflgs 1]
set display 1
set run 1
set am_only 0
set no_am 0
set std_only 1
set rflags {--}
foreach f $flags {
switch $f {
A {
set std_only 0
}
M {
set no_am 1
puts "run_std: all but access method tests."
}
m {
set am_only 1
puts "run_std: access method tests only."
}
n {
set display 1
set run 0
set rflags [linsert $rflags 0 "-n"]
}
}
}
if { $std_only == 1 } {
fileremove -f ALL.OUT
set o [open ALL.OUT a]
if { $run == 1 } {
puts -nonewline "Test suite run started at: "
puts [clock format [clock seconds] -format "%H:%M %D"]
puts [berkdb version -string]
puts -nonewline $o "Test suite run started at: "
puts $o [clock format [clock seconds] -format "%H:%M %D"]
puts $o [berkdb version -string]
}
close $o
}
set test_list {
{"environment" "env"}
{"archive" "archive"}
{"backup" "backup"}
{"file operations" "fop"}
{"locking" "lock"}
{"logging" "log"}
{"memory pool" "memp"}
{"mutex" "mutex"}
{"transaction" "txn"}
{"deadlock detection" "dead"}
{"subdatabase" "sdb"}
{"byte-order" "byte"}
{"recno backing file" "rsrc"}
{"DBM interface" "dbm"}
{"NDBM interface" "ndbm"}
{"Hsearch interface" "hsearch"}
{"secondary index" "sindex"}
{"partition" "partition"}
{"compression" "compressed"}
{"automated repmgr tests" "auto_repmgr"}
{"other repmgr tests" "other_repmgr"}
{"repmgr multi-process" "multi_repmgr"}
}
# If this is run_std only, run each rep test for a single
# access method. If run_all, run for all access methods.
if { $std_only == 1 } {
lappend test_list {"replication" "rep_subset"}
} else {
lappend test_list {"replication" "rep_complete"}
}
# If release supports encryption, run security tests.
if { $has_crypto == 1 } {
lappend test_list {"security" "sec"}
}
if { $am_only == 0 } {
foreach pair $test_list {
set msg [lindex $pair 0]
set cmd [lindex $pair 1]
puts "Running $msg tests"
if [catch {exec $tclsh_path << \
"global one_test; set one_test $one_test; \
source $test_path/test.tcl; r $rflags $cmd" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: $cmd test: $res"
close $o
}
}
# Run recovery tests.
#
# XXX These too are broken into separate tclsh instantiations
# so we don't require so much memory, but I think it's cleaner
# and more useful to do it down inside proc r than here,
# since "r recd" gets done a lot and needs to work.
#
# Note that we still wrap the test in an exec so that
# its output goes to ALL.OUT. run_recd will wrap each test
# so that both error streams go to stdout (which here goes
# to ALL.OUT); information that run_recd wishes to print
# to the "real" stderr, but outside the wrapping for each test,
# such as which tests are being skipped, it can still send to
# stderr.
puts "Running recovery tests"
if [catch {
exec $tclsh_path << \
"global one_test; set one_test $one_test; \
source $test_path/test.tcl; r $rflags recd" \
2>@ stderr >> ALL.OUT
} res] {
set o [open ALL.OUT a]
puts $o "FAIL: recd tests: $res"
close $o
}
# Run join test
#
# XXX
# Broken up into separate tclsh instantiations so we don't
# require so much memory.
if { $one_test == "ALL" } {
puts "Running join test"
foreach test "join1 join2 join3 join4 join5 join6" {
if [catch {exec $tclsh_path << \
"source $test_path/test.tcl; r $rflags $test" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: $test test: $res"
close $o
}
}
}
}
if { $no_am == 0 } {
# Access method tests.
#
# XXX
# Broken up into separate tclsh instantiations so we don't
# require so much memory.
foreach method $valid_methods {
puts "Running $method tests"
foreach test $test_names(test) {
if { $run == 0 } {
set o [open ALL.OUT a]
run_method \
-$method $test $display $run $o
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
run_method \
-$method $test $display $run"\
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL:$test $method: $res"
close $o
}
}
}
}
}
# If not actually running, no need to check for failure.
# If running in the context of the larger 'run_all' we don't
# check for failure here either.
if { $run == 0 || $std_only == 0 } {
return
}
set failed [check_output ALL.OUT]
set o [open ALL.OUT a]
if { $failed == 0 } {
puts "Regression Tests Succeeded"
puts $o "Regression Tests Succeeded"
} else {
puts "Regression Tests Failed"
puts "Check UNEXPECTED OUTPUT lines."
puts "Review ALL.OUT.x for details."
puts $o "Regression Tests Failed"
}
puts -nonewline "Test suite run completed at: "
puts [clock format [clock seconds] -format "%H:%M %D"]
puts -nonewline $o "Test suite run completed at: "
puts $o [clock format [clock seconds] -format "%H:%M %D"]
close $o
}
proc check_output { file } {
# These are all the acceptable patterns.
set pattern {(?x)
^[:space:]*$|
.*?wrap\.tcl.*|
.*?dbscript\.tcl.*|
.*?ddscript\.tcl.*|
.*?db_replicate.*|
.*?Freeing\slog\sinformation\s.*|
.*?Freeing\smutex\s.*|
.*?Freeing\sread\slocks\s.*|
.*?lt-db_replicate.*|
.*?mpoolscript\.tcl.*|
^\d\d:\d\d:\d\d\s\(\d\d:\d\d:\d\d\)$|
^\d\d:\d\d:\d\d\s\(\d\d:\d\d:\d\d\)\sCrashing$|
^\d\d:\d\d:\d\d\s\(\d\d:\d\d:\d\d\)\s[p|P]rocesses\srunning:.*|
^\d\d:\d\d:\d\d\s\(\d\d:\d\d:\d\d\)\s5\sprocesses\srunning.*|
^\d:\sPut\s\d*\sstrings\srandom\soffsets.*|
^100.*|
^basic_repmgr_.*\swith:|
^eval\s.*|
^exec\s.*|
^jointest.*$|
^r\sarchive\s*|
^r\sbackup\s*|
^r\sdbm\s*|
^r\shsearch\s*|
^r\sndbm\s*|
^run_recd:\s.*|
^run_reptest\s.*|
^run_secenv:\s.*|
^All\sprocesses\shave\sexited.$|
^Backuptest\s.*|
^Beginning\scycle\s\d$|
^Berkeley\sDB\s.*|
^Byteorder:.*|
^Child\sruns\scomplete\.\s\sParent\smodifies\sdata\.$|
^Deadlock\sdetector:\s\d*\sCheckpoint\sdaemon\s\d*$|
^Ending\srecord.*|
^Environment\s.*?specified;\s\sskipping\.$|
^Executing\srecord\s.*|
^Join\stest:\.*|
^Method:\s.*|
^Putting\s.*databases.*|
^Repl:\stest\d\d\d:.*|
^Repl:\ssdb\d\d\d:.*|
^Running\stest\ssdb.*|
^Running\stest\stest.*|
^Running\sall\scases\sof\s.*|
^run_inmem_db\s.*rep.*|
^run_inmem_log\s.*rep.*|
^run_mixedmode_log\s.*rep.*|
^Script\swatcher\sprocess\s.*|
^Secondary\sindex\sjoin\s.*|
^Test\ssuite\srun\s.*|
^Test\s.*rep.*|
^To\sreproduce\sthis\scase:.*|
^Unlinking\slog:\serror\smessage\sOK$|
^Verifying\s.*|
^\t*\.\.\.dbc->get.*$|
^\t*\.\.\.dbc->put.*$|
^\t*\.\.\.key\s\d.*$|
^\t*\.\.\.Skipping\sdbc.*|
^\t*and\s\d*\sduplicate\sduplicates\.$|
^\t*About\sto\srun\srecovery\s.*complete$|
^\t*Add\sa\sthird\sversion\s.*|
^\t*Archive[:\.].*|
^\t*Backuptest.*|
^\t*Basic\srepmgr\s.*test.*:.*|
^\t*Bigfile[0-9][0-9][0-9].*|
^\t*Building\s.*|
^\t*bulk\sprocessing.*|
^\t*closing\ssecondaries\.$|
^\t*Command\sexecuted\sand\s.*$|
^\t*DBM.*|
^\t*[d|D]ead[0-9][0-9][0-9].*|
^\t*Dump\/load\sof.*|
^\t*[e|E]nv[0-9][0-9][0-9].*|
^\t*Executing\scommand$|
^\t*Executing\stxn_.*|
^\t*File\srecd005\.\d\.db\sexecuted\sand\saborted\.$|
^\t*File\srecd005\.\d\.db\sexecuted\sand\scommitted\.$|
^\t*[f|F]op[0-9][0-9][0-9].*|
^\t*HSEARCH.*|
^\t*in-memory\s.*|
^\t*Initial\sCheckpoint$|
^\t*Iteration\s\d*:\sCheckpointing\.$|
^\t*Joining:\s.*|
^\t*Kid[1|2]\sabort\.\.\.complete$|
^\t*Kid[1|2]\scommit\.\.\.complete$|
^\t*[l|L]ock[0-9][0-9][0-9].*|
^\t*[l|L]og[0-9][0-9][0-9].*|
^\t*[m|M]emp[0-9][0-9][0-9].*|
^\t*[m|M]ut[0-9][0-9][0-9].*|
^\t*NDBM.*|
^\t*no\speering|
^\t*on-disk\s.*|
^\t*opening\ssecondaries\.$|
^\t*op_recover_rec:\sRunning\srecovery.*|
^\t*peering|
^\t*[r|R]ecd[0-9][0-9][0-9].*|
^\t*[r|R]ep[0-9][0-9][0-9].*|
^\t*[r|R]epmgr[0-9][0-9][0-9].*|
^\t*[r|R]ep_push.*|
^\t*[r|R]ep_test.*|
^\t*[r|R]pc[0-9][0-9][0-9].*|
^\t*[r|R]src[0-9][0-9][0-9].*|
^\t*Recover\sfrom\sfirst\sdatabase$|
^\t*Recover\sfrom\ssecond\sdatabase$|
^\t*regular\sprocessing.*|
^\t*Remove\ssecond\sdb$|
^\t*Rep_verify.*|
^\t*Running\srecovery\son\s.*|
^\t*[s|S]ec[0-9][0-9][0-9].*|
^\t*[s|S]i[0-9][0-9][0-9].*|
^\t*[s|S]ijoin.*|
^\t*Salvage\stests\sof.*|
^\t*sdb[0-9][0-9][0-9].*|
^\t*Skipping\s.*|
^\t*Subdb[0-9][0-9][0-9].*|
^\t*Subdbtest[0-9][0-9][0-9].*|
^\t*Syncing$|
^\t*[t|T]est[0-9][0-9][0-9].*|
^\t*[t|T]xn[0-9][0-9][0-9].*|
^\t*Txnscript.*|
^\t*Using\s.*option.*$|
^\t*Using\s.*?\senvironment\.$|
^\t*Verification\sof.*|
^\t*with\stransactions$}
set failed 0
set f [open $file r]
while { [gets $f line] >= 0 } {
if { [regexp $pattern $line] == 0 } {
puts -nonewline "UNEXPECTED OUTPUT: "
puts $line
set failed 1
}
}
close $f
return $failed
}
proc r { args } {
global test_names
global has_crypto
global rand_init
global one_test
global test_recopts
global checking_valid_methods
source ./include.tcl
set exflgs [eval extractflags $args]
set args [lindex $exflgs 0]
set flags [lindex $exflgs 1]
set display 1
set run 1
set saveflags "--"
foreach f $flags {
switch $f {
n {
set display 1
set run 0
set saveflags "-n $saveflags"
}
}
}
if {[catch {
set sub [ lindex $args 0 ]
set starttest [lindex $args 1]
switch $sub {
auto_repmgr -
bigfile -
dead -
env -
lock -
log -
memp -
multi_repmgr -
mutex -
other_repmgr -
rsrc -
sdbtest -
txn {
if { $display } {
run_subsystem $sub 1 0 $starttest
}
if { $run } {
run_subsystem $sub 0 1 $starttest
}
}
byte {
if { $one_test == "ALL" } {
run_test byteorder $display $run
}
}
archive -
backup -
dbm -
hsearch -
ndbm -
shelltest {
if { $one_test == "ALL" } {
if { $display } { puts "eval $sub" }
if { $run } {
check_handles
eval $sub
}
}
}
compact -
elect -
inmemdb -
init -
fop {
set tindx [lsearch $test_names($sub) $starttest]
if { $tindx == -1 } {
set tindx 0
}
set rlist [lrange $test_names($sub) $tindx end]
foreach test $rlist {
eval run_test $test $display $run
}
}
compressed {
set tindex [lsearch $test_names(test) $starttest]
if { $tindex == -1 } {
set tindex 0
}
set clist [lrange $test_names(test) $tindex end]
foreach test $clist {
eval run_compressed btree $test $display $run
}
}
join {
eval r $saveflags join1
eval r $saveflags join2
eval r $saveflags join3
eval r $saveflags join4
eval r $saveflags join5
eval r $saveflags join6
}
join1 {
if { $display } { puts "eval jointest" }
if { $run } {
check_handles
eval jointest
}
}
joinbench {
puts "[timestamp]"
eval r $saveflags join1
eval r $saveflags join2
puts "[timestamp]"
}
join2 {
if { $display } { puts "eval jointest 512" }
if { $run } {
check_handles
eval jointest 512
}
}
join3 {
if { $display } {
puts "eval jointest 8192 0 -join_item"
}
if { $run } {
check_handles
eval jointest 8192 0 -join_item
}
}
join4 {
if { $display } { puts "eval jointest 8192 2" }
if { $run } {
check_handles
eval jointest 8192 2
}
}
join5 {
if { $display } { puts "eval jointest 8192 3" }
if { $run } {
check_handles
eval jointest 8192 3
}
}
join6 {
if { $display } { puts "eval jointest 512 3" }
if { $run } {
check_handles
eval jointest 512 3
}
}
partition {
foreach method { btree hash } {
foreach test "$test_names(recd)\
$test_names(test)" {
run_range_partition\
$test $method $display $run
run_partition_callback\
$test $method $display $run
}
}
}
recd {
check_handles
eval {run_recds all $run $display} [lrange $args 1 end]
}
rep {
run_rep_subset rep $starttest $testdir \
$display $run $args
}
repmgr {
r other_repmgr
foreach test $test_names(basic_repmgr) {
$test 100 1 1 1 1 1
$test 100 1 0 0 0 0
$test 100 0 1 0 0 0
$test 100 0 0 1 0 0
$test 100 0 0 0 1 0
$test 100 0 0 0 0 1
$test 100 0 0 0 0 0
}
}
rep_commit {
run_rep_subset rep_commit $starttest $testdir \
$display $run $args
r repmgr
}
# To run a subset of the complete rep tests, use
# rep_subset, which randomly picks an access type to
# use, and randomly picks whether to open envs with
# the -recover flag.
rep_subset {
run_rep_subset rep $starttest $testdir \
$display $run $args
}
rep_complete {
set tindex [lsearch $test_names(rep) $starttest]
if { $tindex == -1 } {
set tindex 0
}
set rlist [lrange $test_names(rep) $tindex end]
foreach test $rlist {
run_test $test $display $run
}
if { $one_test == "ALL" } {
if { $display } {
#puts "basic_db_reptest"
#puts "basic_db_reptest 1"
}
if { $run } {
#basic_db_reptest
#basic_db_reptest 1
}
}
}
replicate {
# We seed the random number generator here
# instead of in run_replicate so that we
# aren't always reusing the first few
# responses from random_int.
#
berkdb srand $rand_init
foreach sub { test sdb } {
foreach test $test_names($sub) {
eval run_test run_replicate \
$display $run $test
}
}
}
repmethod {
# We seed the random number generator here
# instead of in run_repmethod so that we
# aren't always reusing the first few
# responses from random_int.
#
berkdb srand $rand_init
foreach sub { test sdb } {
foreach test $test_names($sub) {
eval run_test run_repmethod \
$display $run $test
}
}
}
sec {
# Skip secure mode tests if release
# does not support encryption.
if { $has_crypto == 0 } {
return
}
if { $display } {
run_subsystem $sub 1 0
}
if { $run } {
run_subsystem $sub 0 1
}
}
secmethod {
# Skip secure mode tests if release
# does not support encryption.
if { $has_crypto == 0 } {
return
}
foreach test $test_names(test) {
eval run_test run_secmethod \
$display $run $test
eval run_test run_secenv \
$display $run $test
}
}
sdb {
if { $one_test == "ALL" } {
if { $display } {
run_subsystem sdbtest 1 0
}
if { $run } {
run_subsystem sdbtest 0 1
}
}
foreach test $test_names(sdb) {
eval run_test $test $display $run
}
}
sindex {
if { $one_test == "ALL" } {
if { $display } {
sindex 1 0
sijoin 1 0
}
if { $run } {
sindex 0 1
sijoin 0 1
}
}
}
btree -
rbtree -
hash -
iqueue -
iqueueext -
queue -
queueext -
recno -
frecno -
heap -
rrecno {
foreach test $test_names(test) {
eval run_method [lindex $args 0] $test \
$display $run stdout [lrange $args 1 end]
}
}
default {
error \
"FAIL:[timestamp] r: $args: unknown command"
}
}
flush stdout
flush stderr
} res] != 0} {
global errorInfo;
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp] r: $args: $theError"
} else {
error $theError;
}
}
}
proc run_rep_subset { sub starttest testdir display run args } {
global one_test
global rand_init
global test_names
if { [is_partition_callback $args] == 1 } {
set nodump 1
} else {
set nodump 0
}
berkdb srand $rand_init
set tindex [lsearch $test_names($sub) $starttest]
if { $tindex == -1 } {
set tindex 0
}
set rlist [lrange $test_names($sub) $tindex end]
foreach test $rlist {
set random_recopt [berkdb random_int 0 1]
if { $random_recopt == 1 } {
set test_recopts "-recover"
} else {
set test_recopts {""}
}
set method_list [find_valid_methods $test]
set list_length [expr [llength $method_list] - 1]
set method_index [berkdb random_int 0 $list_length]
set rand_method [lindex $method_list $method_index]
if { $display } {
puts "eval $test $rand_method; verify_dir \
$testdir \"\" 1 0 $nodump; salvage_dir $testdir 1"
}
if { $run } {
check_handles
eval $test $rand_method
verify_dir $testdir "" 1 0 $nodump
salvage_dir $testdir 1
}
}
if { $one_test == "ALL" } {
if { $display } {
#puts "basic_db_reptest"
#puts "basic_db_reptest 1"
}
if { $run } {
#basic_db_reptest
#basic_db_reptest 1
}
}
set test_recopts { "-recover" "" }
}
proc run_subsystem { sub {display 0} {run 1} {starttest "NULL"} } {
global test_names
global databases_in_memory
if { [info exists test_names($sub)] != 1 } {
puts stderr "Subsystem $sub has no tests specified in\
testparams.tcl; skipping."
return
}
set index [lsearch $test_names($sub) $starttest]
if { $index == -1 } {
set index 0
}
set testlist [lrange $test_names($sub) $index end]
foreach test $testlist {
if { $display } {
puts "eval $test"
}
if { $run } {
check_handles
if {[catch {eval $test} ret] != 0 } {
set databases_in_memory 0
error "FAIL: run_subsystem: $sub $test: \
$ret"
}
}
}
}
proc run_test { test {display 0} {run 1} args } {
source ./include.tcl
global valid_methods
foreach method $valid_methods {
if { $display } {
puts "eval $test -$method $args; \
verify_dir $testdir \"\" 1; \
salvage_dir $testdir 1"
}
if { [is_partition_callback $args] == 1 } {
set nodump 1
} else {
set nodump 0
}
if { $run } {
check_handles
eval {$test -$method} $args
verify_dir $testdir "" 1 0 $nodump
salvage_dir $testdir 1
}
}
}
proc run_method { method test {display 0} {run 1} \
{ outfile stdout } args } {
global __debug_on
global __debug_print
global __debug_test
global test_names
global parms
source ./include.tcl
if { [is_partition_callback $args] == 1 } {
set nodump 1
} else {
set nodump 0
}
if {[catch {
if { $display } {
puts -nonewline $outfile "eval \{ $test \} $method"
puts -nonewline $outfile " $parms($test) { $args }"
puts -nonewline $outfile " ; verify_dir $testdir \"\" 1 0 $nodump"
puts $outfile " ; salvage_dir $testdir 1"
}
if { $run } {
check_handles $outfile
puts $outfile "[timestamp]"
eval {$test} $method $parms($test) $args
if { $__debug_print != 0 } {
puts $outfile ""
}
# Verify all databases the test leaves behind
verify_dir $testdir "" 1 0 $nodump
if { $__debug_on != 0 } {
debug $__debug_test
}
salvage_dir $testdir 1
}
flush stdout
flush stderr
} res] != 0} {
global errorInfo;
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp]\
run_method: $method $test: $theError"
} else {
error $theError;
}
}
}
# Run a testNNN or recdNNN test with range partitioning.
proc run_range_partition { test method {display 0} {run 1}\
{outfile stdout} args } {
# The only allowed access method for range partitioning is btree.
if { [is_btree $method] == 0 } {
if { $display == 0 } {
puts "Skipping range partition\
tests for method $method"
}
return
}
# If we've passed in explicit partitioning args, use them;
# otherwise set them. This particular selection hits some
# interesting cases where we set the key to "key".
set largs $args
if { [is_partitioned $args] == 0 } {
lappend largs -partition {ab cd key key1 zzz}
}
if { [string first recd $test] == 0 } {
eval {run_recd $method $test $run $display} $largs
} elseif { [string first test $test] == 0 } {
eval {run_method $method $test $display $run $outfile} $largs
} else {
puts "Skipping test $test with range partitioning."
}
}
# Run a testNNN or recdNNN test with partition callbacks.
proc run_partition_callback { test method {display 0} {run 1}\
{outfile stdout} args } {
# The only allowed access methods are btree and hash.
if { [is_btree $method] == 0 && [is_hash $method] == 0 } {
if { $display == 0 } {
puts "Skipping partition callback tests\
for method $method"
}
return
}
# If we've passed in explicit partitioning args, use them;
# otherwise set them.
set largs $args
if { [is_partition_callback $args] == 0 } {
lappend largs -partition_callback 5 part
}
if { [string first recd $test] == 0 } {
eval {run_recd $method $test $run $display} $largs
} elseif { [string first test $test] == 0 } {
eval {run_method $method $test $display $run $outfile} $largs
} else {
puts "Skipping test $test with partition callbacks."
}
}
#
# Run method tests for btree only using compression.
#
proc run_compressed { method test {display 0} {run 1} \
{ outfile stdout } args } {
if { [is_btree $method] == 0 } {
puts "Skipping compression test for method $method."
return
}
set largs $args
append largs " -compress "
eval run_method $method $test $display $run $outfile $largs
}
#
# Run method tests in secure mode.
#
proc run_secmethod { method test {display 0} {run 1} \
{ outfile stdout } args } {
global passwd
global has_crypto
# Skip secure mode tests if release does not support encryption.
if { $has_crypto == 0 } {
return
}
set largs $args
append largs " -encryptaes $passwd "
eval run_method $method $test $display $run $outfile $largs
}
#
# Run method tests each in its own, new secure environment.
#
proc run_secenv { method test {largs ""} } {
global __debug_on
global __debug_print
global __debug_test
global is_envmethod
global has_crypto
global test_names
global parms
global passwd
source ./include.tcl
# Skip secure mode tests if release does not support encryption.
if { $has_crypto == 0 } {
return
}
puts "run_secenv: $method $test $largs"
set save_largs $largs
env_cleanup $testdir
set is_envmethod 1
set stat [catch {
check_handles
set env [eval {berkdb_env -create -mode 0644 -home $testdir \
-encryptaes $passwd -pagesize 512 -cachesize {0 4194304 1}}]
error_check_good env_open [is_valid_env $env] TRUE
append largs " -env $env "
puts "[timestamp]"
if { [info exists parms($test)] != 1 } {
puts stderr "$test disabled in\
testparams.tcl; skipping."
continue
}
#
# Run each test multiple times in the secure env.
# Once with a secure env + clear database
# Once with a secure env + secure database
#
eval $test $method $parms($test) $largs
append largs " -encrypt "
eval $test $method $parms($test) $largs
if { $__debug_print != 0 } {
puts ""
}
if { $__debug_on != 0 } {
debug $__debug_test
}
flush stdout
flush stderr
set largs $save_largs
error_check_good envclose [$env close] 0
error_check_good envremove [berkdb envremove \
-home $testdir -encryptaes $passwd] 0
} res]
if { $stat != 0} {
global errorInfo;
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp]\
run_secenv: $method $test: $theError"
} else {
error $theError;
}
set is_envmethod 0
}
}
#
# Run replication method tests in master and client env.
# This proc runs a specific test/method using the db_replicate utility.
#
proc run_replicate_test { method test {nsites 2} {largs "" } } {
source ./include.tcl
global __debug_on
global __debug_print
global __debug_test
global errorInfo
global has_crypto
global is_envmethod
global masterdir
global parms
global passwd
global rep_verbose
global repenv
global verbose_type
puts "run_replicate_test $method $test $nsites $largs"
# Test124 can't be run under reptest because we delete all
# the test files at the end of the test to avoid triggering
# verification failures (it uses a non-standard sort).
if { $test == "test124" } {
puts "Skipping $test under run_replicate"
return
}
set verbargs ""
if { $rep_verbose == 1 } {
set verbargs " -verbose {$verbose_type on}"
}
set do_sec 0
env_cleanup $testdir
set is_envmethod 1
# Some tests that use a small db pagesize need a small
# mpool pagesize as well -- otherwise we'll run out of
# mutexes. First determine the natural pagesize, so
# that can be used in the normal case, then adjust where
# needed.
set tmpenv [berkdb_env -create -home $testdir]
set pg [$tmpenv get_mp_pagesize]
error_check_good env_close [$tmpenv close] 0
berkdb envremove -home $testdir
set small_pagesize_tests [list test035 test096 test112 test113 test114]
if { [lsearch -exact $small_pagesize_tests $test] != -1 } {
set pg 512
}
#
# Set log smaller than default to force changing files,
# but big enough so that the tests that use binary files
# as keys/data can run. Increase the size of the log region --
# sdb004 needs this, now that subdatabase names are stored
# in the env region.
#
# All the settings below will be the same for all sites in the group.
#
set logmax [expr 3 * 1024 * 1024]
set lockmax 40000
set logregion 2097152
#
# TODO: Turn on crypto and test with that. Off for now.
#
if { $do_sec && $has_crypto } {
set envargs "-encryptaes $passwd"
append largs " -encrypt "
} else {
set envargs ""
}
check_handles
set last_site [expr $nsites - 1]
set winner [berkdb random_int 0 $last_site]
for { set i 0 } { $i < $nsites } { incr i } {
set repdir($i) $testdir/ENV$i
file mkdir $repdir($i)
if { $i == $winner } {
set pri 10
} else {
set pri [berkdb random_int 0 1]
}
replicate_make_config $repdir($i) $nsites $i $pri
set envcmd($i) "berkdb_env_noerr -create -log_max $logmax \
$envargs -rep -home $repdir($i) -txn -thread -pagesize $pg \
-log_regionmax $logregion -lock_max_objects $lockmax \
-lock_max_locks $lockmax -errpfx $repdir($i) $verbargs"
set env($i) [eval $envcmd($i)]
error_check_good env_open($i) [is_valid_env $env($i)] TRUE
}
#
# Now that we have all of the envs opened, we can start db_replicate
# in each one too. Afterward, we check for which site is master.
#
for { set i 0 } { $i < $nsites } { incr i } {
set dpid($i) [eval {exec $util_path/db_replicate -t 3 \
-h $repdir($i)} -L $testdir/LOG$i &]
puts "Started db_replicate $repdir($i): $dpid($i)"
}
#
# Wait for enough sites to start and elect someone master.
# For now assume that once the master is elected, all sites
# have started up and we don't have any laggards. If that
# seems to be a problem we could loop checking whether every
# single env knows this master and is at the right LSN.
#
puts "run_replicate_test: Wait for repmgr to elect a master."
await_expected_master $env($winner) 30
set masterdir $repdir($winner)
#
# Set up list of client env handles for later checking
# and verification. Skip the master env.
#
set j 0
set repenv(master) $env($winner)
for { set i 0 } { $i < $nsites } { incr i } {
if { $winner != $i } {
set repenv($j) $env($i)
incr j
}
}
puts "run_replicate_test: Found master at $repdir($winner)"
#
# Give a few seconds for the clients to sync with the master
# before we begin blasting at them. If we don't pause here,
# we otherwise will race with the db_replicate process that is
# in rep_start and our test will fail with DB_LOCK_DEADLOCK.
# This pause gives the group a chance to quiesce.
#
tclsleep 5
#
# We went through all that so that we can append '-env masterenv'
# to the largs for the test. Clobber the 30-second anti-archive
# timer in case the test we're about to run wants to do any log
# archiving, database renaming and/or removal.
#
$env($winner) test force noarchive_timeout
append largs " -env $env($winner) "
#
# Now run the actual test.
#
set stat [catch {
puts "[timestamp]"
if { [info exists parms($test)] != 1 } {
puts stderr "$test disabled in\
testparams.tcl; skipping."
continue
}
puts -nonewline "Replicate: $test: $nsites sites "
if { $do_sec } {
puts -nonewline " with security;"
} else {
puts -nonewline " no security;"
}
puts ""
eval $test $method $parms($test) $largs
if { $__debug_print != 0 } {
puts ""
}
if { $__debug_on != 0 } {
debug $__debug_test
}
flush stdout
flush stderr
} res]
#
# Test is over. We must kill the db_replicate processes no matter
# whether there was an error or not.
# And we must close the envs. We save the original errorInfo
# because it could be overwritten by tclkill.
#
puts "Replicate: $test: Done ($stat). Wait and kill db_replicate."
set save_errInfo $errorInfo
tclsleep 10
#
# We kill all the clients first then kill the master. If we
# just kill them in order, and kill the master first, the others
# may complete an election and the processes get killed in the
# middle of recovery, thus leaving the env locked out which is
# a problem in the verify phase.
#
for { set i 0 } { $i < $nsites } { incr i } {
if { $i != $winner } {
tclkill $dpid($i)
}
}
tclsleep 2
tclkill $dpid($winner)
if { $stat != 0} {
for { set i 0 } { $i < $nsites } { incr i } {
catch { $env($i) close } ignore
}
puts "Error result string: $res"
set fnl [string first "\n" $save_errInfo]
set theError [string range $save_errInfo 0 [expr $fnl - 1]]
if {[string first FAIL $save_errInfo] == -1} {
error "FAIL:[timestamp]\
run_reptest: $method $test: $theError"
} else {
error $theError;
}
} else {
repl_envver0 $test $method [expr $nsites - 1]
for { set i 0 } { $i < $nsites } { incr i } {
catch { $env($i) close } ignore
}
}
set is_envmethod 0
}
#
# Run replication method tests in master and client env.
# This proc runs a specific test/method with our own message handling.
#
proc run_reptest { method test {droppct 0} {nclients 1} {do_del 0} \
{do_sec 0} {do_oob 0} {largs "" } } {
source ./include.tcl
global __debug_on
global __debug_print
global __debug_test
global is_envmethod
global parms
global passwd
global has_crypto
puts "run_reptest \
$method $test $droppct $nclients $do_del $do_sec $do_oob $largs"
# Test124 can't be run under reptest because we delete all
# the test files at the end of the test to avoid triggering
# verification failures (it uses a non-standard sort).
if { $test == "test124"} {
puts "Skipping $test under run_repmethod"
return
}
env_cleanup $testdir
set is_envmethod 1
set stat [catch {
if { $do_sec && $has_crypto } {
set envargs "-encryptaes $passwd"
append largs " -encrypt "
} else {
set envargs ""
}
check_handles
#
# This will set up the master and client envs
# and will return us the args to pass to the
# test.
set largs [repl_envsetup \
$envargs $largs $test $nclients $droppct $do_oob]
puts "[timestamp]"
if { [info exists parms($test)] != 1 } {
puts stderr "$test disabled in\
testparams.tcl; skipping."
continue
}
puts -nonewline \
"Repl: $test: dropping $droppct%, $nclients clients "
if { $do_del } {
puts -nonewline " with delete verification;"
} else {
puts -nonewline " no delete verification;"
}
if { $do_sec } {
puts -nonewline " with security;"
} else {
puts -nonewline " no security;"
}
if { $do_oob } {
puts -nonewline " with out-of-order msgs;"
} else {
puts -nonewline " no out-of-order msgs;"
}
puts ""
eval $test $method $parms($test) $largs
if { $__debug_print != 0 } {
puts ""
}
if { $__debug_on != 0 } {
debug $__debug_test
}
flush stdout
flush stderr
repl_envprocq $test $nclients $do_oob
repl_envver0 $test $method $nclients
if { $do_del } {
repl_verdel $test $method $nclients
}
repl_envclose $test $envargs
} res]
if { $stat != 0} {
global errorInfo;
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp]\
run_reptest: $method $test: $theError"
} else {
error $theError;
}
}
set is_envmethod 0
}
#
# Run replication method tests in master and client env.
# Wrapper to run db_replicate utility test.
#
proc run_replicate { method test {nums 0} {display 0} {run 1} \
{outfile stdout} {largs ""} } {
source ./include.tcl
set save_largs $largs
env_cleanup $testdir
#
# Run 2 sites 40%, 3 sites 40%, 4 sites 10%, 5 sites 10%
set site_list { 2 2 2 2 3 3 3 3 4 5 }
set s_len [expr [llength $site_list] - 1]
if { $nums == 0 } {
set sindex [berkdb random_int 0 $s_len]
set nsites [lindex $site_list $sindex]
} else {
set nsites $nums
}
if { $display == 1 } {
puts $outfile "eval run_replicate_test $method $test \
$nsites $largs"
}
if { $run == 1 } {
run_replicate_test $method $test $nsites $largs
}
}
#
# Run replication method tests in master and client env.
# Wrapper to run a test on a replicated group.
#
proc run_repmethod { method test {numcl 0} {display 0} {run 1} \
{outfile stdout} {largs ""} } {
source ./include.tcl
global __debug_on
global __debug_print
global __debug_test
global is_envmethod
global test_names
global parms
global has_crypto
global passwd
set save_largs $largs
env_cleanup $testdir
# Use an array for number of clients because we really don't
# want to evenly-weight all numbers of clients. Favor smaller
# numbers but test more clients occasionally.
set drop_list { 0 0 0 0 0 1 1 5 5 10 20 }
set drop_len [expr [llength $drop_list] - 1]
set client_list { 1 1 2 1 1 1 2 2 3 1 }
set cl_len [expr [llength $client_list] - 1]
if { $numcl == 0 } {
set clindex [berkdb random_int 0 $cl_len]
set nclients [lindex $client_list $clindex]
} else {
set nclients $numcl
}
set drindex [berkdb random_int 0 $drop_len]
set droppct [lindex $drop_list $drindex]
# Do not drop messages on Windows. Since we can't set
# re-request times with less than millisecond precision,
# dropping messages will cause test failures.
if { $is_windows_test == 1 } {
set droppct 0
}
set do_sec [berkdb random_int 0 1]
set do_oob [berkdb random_int 0 1]
# Test130 cannot run with delete verification. [#18944]
if { $test == "test130" } {
set do_del 0
} else {
set do_del [berkdb random_int 0 1]
}
if { $display == 1 } {
puts $outfile "eval run_reptest $method $test $droppct \
$nclients $do_del $do_sec $do_oob $largs"
}
if { $run == 1 } {
run_reptest $method $test $droppct $nclients $do_del \
$do_sec $do_oob $largs
}
}
#
# Run method tests, each in its own, new environment. (As opposed to
# run_envmethod1 which runs all the tests in a single environment.)
#
proc run_envmethod { method test {display 0} {run 1} {outfile stdout} \
{ largs "" } } {
global __debug_on
global __debug_print
global __debug_test
global is_envmethod
global test_names
global parms
source ./include.tcl
set save_largs $largs
set envargs ""
# Enlarge the logging region by default - sdb004 needs this because
# it uses very long subdb names, and the names are stored in the
# env region.
set logargs " -log_regionmax 2057152 "
# Enlarge the cache by default - some compaction tests need it.
set cacheargs "-cachesize {0 4194304 1} -pagesize 512"
env_cleanup $testdir
if { $display == 1 } {
if { $run == 0 } {
puts $outfile "eval run_envmethod $method $test 0 1 \
stdout $largs; verify_log $testdir"
} else {
puts $outfile "eval run_envmethod $method \
$test 0 1 stdout $largs"
}
}
# To run a normal test using system memory, call run_envmethod
# with the flag -shm.
set sindex [lsearch -exact $largs "-shm"]
if { $sindex >= 0 } {
set shm_key 20
if { [mem_chk " -system_mem -shm_key $shm_key"] == 1 } {
break
} else {
append envargs " -system_mem -shm_key $shm_key"
set largs [lreplace $largs $sindex $sindex]
}
}
set sindex [lsearch -exact $largs "-log_max"]
if { $sindex >= 0 } {
append envargs " -log_max 100000 "
set largs [lreplace $largs $sindex $sindex]
}
# Test for -thread option and pass to berkdb_env open. Leave in
# $largs because -thread can also be passed to an individual
# test as an arg. Double the number of lockers because a threaded
# env requires more than an ordinary env.
if { [lsearch -exact $largs "-thread"] != -1 } {
append envargs " -thread -lock_max_lockers 2000 "
}
# Test for -alloc option and pass to berkdb_env open only.
# Remove from largs because -alloc is not an allowed test arg.
set aindex [lsearch -exact $largs "-alloc"]
if { $aindex >= 0 } {
append envargs " -alloc "
set largs [lreplace $largs $aindex $aindex]
}
# We raise the number of locks and objects - there are a few
# compaction tests that require a large number.
set lockargs " -lock_max_locks 40000 -lock_max_objects 20000 "
if { $run == 1 } {
set is_envmethod 1
set stat [catch {
check_handles
set env [eval {berkdb_env -create -txn -mode 0644 \
-home $testdir} $logargs $cacheargs $lockargs $envargs]
error_check_good env_open [is_valid_env $env] TRUE
append largs " -env $env "
puts "[timestamp]"
if { [info exists parms($test)] != 1 } {
puts stderr "$test disabled in\
testparams.tcl; skipping."
continue
}
eval $test $method $parms($test) $largs
if { $__debug_print != 0 } {
puts ""
}
if { $__debug_on != 0 } {
debug $__debug_test
}
flush stdout
flush stderr
set largs $save_largs
error_check_good envclose [$env close] 0
# error_check_good envremove [berkdb envremove \
# -home $testdir] 0
} res]
if { $stat != 0} {
global errorInfo;
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp]\
run_envmethod: $method $test: $theError"
} else {
error $theError;
}
}
set is_envmethod 0
}
}
proc run_compact { method } {
source ./include.tcl
for {set tnum 111} {$tnum <= 115} {incr tnum} {
run_envmethod $method test$tnum 0 1 stdout -log_max
puts "\tTest$tnum: Test Recovery"
set env1 [eval berkdb env -create -txn \
-recover_fatal -home $testdir]
error_check_good env_close [$env1 close] 0
error_check_good verify_dir \
[verify_dir $testdir "" 0 0 1 ] 0
puts "\tTest$tnum: Remove db and test Recovery"
exec sh -c "rm -f $testdir/*.db"
set env1 [eval berkdb env -create -txn \
-recover_fatal -home $testdir]
error_check_good env_close [$env1 close] 0
error_check_good verify_dir \
[verify_dir $testdir "" 0 0 1 ] 0
}
}
proc run_recd { method test {run 1} {display 0} args } {
global __debug_on
global __debug_print
global __debug_test
global parms
global test_names
global log_log_record_types
global gen_upgrade_log
global upgrade_be
global upgrade_dir
global upgrade_method
global upgrade_name
source ./include.tcl
if { $run == 1 } {
puts "run_recd: $method $test $parms($test) $args"
}
if {[catch {
if { $display } {
puts "eval { $test } $method $parms($test) { $args }"
}
if { $run } {
check_handles
set upgrade_method $method
set upgrade_name $test
puts "[timestamp]"
# By redirecting stdout to stdout, we make exec
# print output rather than simply returning it.
# By redirecting stderr to stdout too, we make
# sure everything winds up in the ALL.OUT file.
set ret [catch { exec $tclsh_path << \
"source $test_path/test.tcl; \
set log_log_record_types $log_log_record_types;\
set gen_upgrade_log $gen_upgrade_log;\
set upgrade_be $upgrade_be; \
set upgrade_dir $upgrade_dir; \
set upgrade_method $upgrade_method; \
set upgrade_name $upgrade_name; \
eval { $test } $method $parms($test) {$args}" \
>&@ stdout
} res]
# Don't die if the test failed; we want
# to just proceed.
if { $ret != 0 } {
puts "FAIL:[timestamp] $res"
}
if { $__debug_print != 0 } {
puts ""
}
if { $__debug_on != 0 } {
debug $__debug_test
}
flush stdout
flush stderr
}
} res] != 0} {
global errorInfo;
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp]\
run_recd: $method: $theError"
} else {
error $theError;
}
}
}
proc recds {method args} {
eval {run_recds $method 1 0} $args
}
proc run_recds {{run_methods "all"} {run 1} {display 0} args } {
source ./include.tcl
global log_log_record_types
global test_names
global gen_upgrade_log
global encrypt
global valid_methods
set log_log_record_types 1
set run_zero 0
if { $run_methods == "all" } {
set run_methods $valid_methods
set run_zero 1
}
logtrack_init
# Define a small set of tests to run with log file zeroing.
set zero_log_tests \
{recd001 recd002 recd003 recd004 recd005 recd006 recd007}
foreach method $run_methods {
check_handles
#set test_names(recd) "recd005 recd017"
foreach test $test_names(recd) {
# Skip recd017 for non-crypto upgrade testing.
# Run only recd017 for crypto upgrade testing.
if { $gen_upgrade_log == 1 && $test == "recd017" && \
$encrypt == 0 } {
puts "Skipping recd017 for non-crypto run."
continue
}
if { $gen_upgrade_log == 1 && $test != "recd017" && \
$encrypt == 1 } {
puts "Skipping $test for crypto run."
continue
}
if { [catch {eval {run_recd $method $test $run \
$display} $args} ret ] != 0 } {
puts $ret
}
# If it's one of the chosen tests, and btree, run with
# log file zeroing.
set zlog_idx [lsearch -exact $zero_log_tests $test]
if { $run_zero == 1 && \
$method == "btree" && $zlog_idx > -1 } {
if { [catch {eval {run_recd $method $test \
$run $display -zero_log} $args} ret ] != 0 } {
puts $ret
}
}
if { $gen_upgrade_log == 1 } {
save_upgrade_files $testdir
}
}
}
# We can skip logtrack_summary during the crypto upgrade run -
# it doesn't introduce any new log types.
if { $run } {
if { $gen_upgrade_log == 0 || $encrypt == 0 } {
logtrack_summary
}
}
set log_log_record_types 0
}
# A small subset of tests to be used in conjunction with the
# automated builds. Ideally these tests will cover a lot of ground
# but run in only 15 minutes or so. You can put any test in the
# list of tests and it will be run all the ways that run_all
# runs it.
proc run_smoke { } {
source ./include.tcl
global valid_methods
fileremove -f SMOKE.OUT
set smoke_tests { \
lock001 log001 test001 test004 sdb001 sec001 rep001 txn001 }
# Run each test in all its permutations, and
# concatenate the results in the file SMOKE.OUT.
foreach test $smoke_tests {
run_all $test
set in [open ALL.OUT r]
set out [open SMOKE.OUT a]
while { [gets $in str] != -1 } {
puts $out $str
}
close $in
close $out
}
}
proc run_inmem_tests { { testname ALL } args } {
global test_names
global one_test
global valid_methods
source ./include.tcl
fileremove -f ALL.OUT
set one_test $testname
# Source testparams again to adjust test_names.
source $test_path/testparams.tcl
set exflgs [eval extractflags $args]
set flags [lindex $exflgs 1]
set display 1
set run 1
foreach f $flags {
switch $f {
n {
set display 1
set run 0
}
}
}
set o [open ALL.OUT a]
if { $run == 1 } {
puts -nonewline "Test suite run started at: "
puts [clock format [clock seconds] -format "%H:%M %D"]
puts [berkdb version -string]
puts -nonewline $o "Test suite run started at: "
puts $o [clock format [clock seconds] -format "%H:%M %D"]
puts $o [berkdb version -string]
}
close $o
# Run in-memory testing for databases, logs, replication files,
# and region files (env -private). It is not necessary to run
# both run_inmem_log and run_mixedmode_log because run_mixedmode_log
# includes the pure in-memory case.
set inmem_procs [list run_inmem_db \
run_inmem_log run_mixedmode_log run_inmem_rep run_env_private]
# The above 3 procs only support tests like repXXX, so we only run
# these tests here.
foreach inmem_proc $inmem_procs {
foreach method $valid_methods {
foreach test $test_names(rep) {
# Skip the rep tests that don't support
# particular kinds of in-memory testing
# when appropriate.
if { $inmem_proc == "run_inmem_db" } {
set indx [lsearch -exact \
$test_names(skip_for_inmem_db) $test]
if { $indx >= 0 } {
continue
}
}
if { $inmem_proc == "run_inmem_rep" } {
set indx [lsearch -exact \
$test_names(skip_for_inmem_rep) $test]
if { $indx >= 0 } {
continue
}
}
if { $inmem_proc == "run_env_private" } {
set indx [lsearch -exact \
$test_names(skip_for_env_private) $test]
if { $indx >= 0 } {
continue
}
}
if { $display } {
set o [open ALL.OUT a]
puts $o "eval \
$inmem_proc $test -$method; \
verify_dir $testdir \"\" 1 0 0; \
salvage_dir $testdir"
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
eval $inmem_proc $test -$method;\
verify_dir $testdir \"\" 1 0 0; \
salvage_dir $testdir" \
>>& ALL.OUT } res ] {
set o [open ALL.OUT a]
puts $o "FAIL:$inmem_proc \
$test -$method: $res"
close $o
}
}
}
}
}
if { $run == 0 } {
return
}
set failed [check_output ALL.OUT]
set o [open ALL.OUT a]
if { $failed == 0 } {
puts "Regression Tests Succeeded"
puts $o "Regression Tests Succeeded"
} else {
puts "Regression Tests Failed"
puts "Check UNEXPECTED OUTPUT lines."
puts "Review ALL.OUT.x for details."
puts $o "Regression Tests Failed"
}
puts -nonewline "Test suite run completed at: "
puts [clock format [clock seconds] -format "%H:%M %D"]
puts -nonewline $o "Test suite run completed at: "
puts $o [clock format [clock seconds] -format "%H:%M %D"]
close $o
}
proc run_all { { testname ALL } args } {
global test_names
global one_test
global has_crypto
global valid_methods
source ./include.tcl
fileremove -f ALL.OUT
set one_test $testname
if { $one_test != "ALL" } {
# Source testparams again to adjust test_names.
source $test_path/testparams.tcl
}
set exflgs [eval extractflags $args]
set flags [lindex $exflgs 1]
set display 1
set run 1
set am_only 0
set parallel 0
set nparalleltests 0
set rflags {--}
foreach f $flags {
switch $f {
m {
set am_only 1
}
n {
set display 1
set run 0
set rflags [linsert $rflags 0 "-n"]
}
}
}
set o [open ALL.OUT a]
if { $run == 1 } {
puts -nonewline "Test suite run started at: "
puts [clock format [clock seconds] -format "%H:%M %D"]
puts [berkdb version -string]
puts -nonewline $o "Test suite run started at: "
puts $o [clock format [clock seconds] -format "%H:%M %D"]
puts $o [berkdb version -string]
}
close $o
#
# First run standard tests. Send in a -A to let run_std know
# that it is part of the "run_all" run, so that it doesn't
# print out start/end times.
#
lappend args -A
eval {run_std} $one_test $args
set test_pagesizes [get_test_pagesizes]
set args [lindex $exflgs 0]
set save_args $args
foreach pgsz $test_pagesizes {
set args $save_args
append args " -pagesize $pgsz -chksum"
if { $am_only == 0 } {
# Run recovery tests.
#
# XXX These don't actually work at multiple pagesizes;
# disable them for now.
#
# XXX These too are broken into separate tclsh
# instantiations so we don't require so much
# memory, but I think it's cleaner
# and more useful to do it down inside proc r than here,
# since "r recd" gets done a lot and needs to work.
#
# XXX See comment in run_std for why this only directs
# stdout and not stderr. Don't worry--the right stuff
# happens.
#puts "Running recovery tests with pagesize $pgsz"
#if [catch {exec $tclsh_path \
# << "source $test_path/test.tcl; \
# r $rflags recd $args" \
# 2>@ stderr >> ALL.OUT } res] {
# set o [open ALL.OUT a]
# puts $o "FAIL: recd test:"
# puts $o $res
# close $o
#}
}
# Access method tests.
# Run subdb tests with varying pagesizes too.
# XXX
# Broken up into separate tclsh instantiations so
# we don't require so much memory.
foreach method $valid_methods {
puts "Running $method tests with pagesize $pgsz"
foreach sub {test sdb si} {
foreach test $test_names($sub) {
if { $run == 0 } {
set o [open ALL.OUT a]
eval {run_method -$method \
$test $display $run $o} \
$args
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
eval {run_method -$method \
$test $display $run \
stdout} $args" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: \
-$method $test: $res"
close $o
}
}
}
}
}
}
set args $save_args
#
# Run access method tests at default page size in one env.
#
foreach method $valid_methods {
puts "Running $method tests in a txn env"
foreach sub {test sdb si} {
foreach test $test_names($sub) {
if { $run == 0 } {
set o [open ALL.OUT a]
run_envmethod -$method $test $display \
$run $o $args
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
run_envmethod -$method $test \
$display $run stdout $args" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: run_envmethod \
$method $test: $res"
close $o
}
}
}
}
}
#
# Run access method tests at default page size in thread-enabled env.
# We're not truly running threaded tests, just testing the interface.
#
foreach method $valid_methods {
puts "Running $method tests in a threaded txn env"
foreach sub {test sdb si} {
foreach test $test_names($sub) {
if { $run == 0 } {
set o [open ALL.OUT a]
eval {run_envmethod -$method $test \
$display $run $o -thread}
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
eval {run_envmethod -$method $test \
$display $run stdout -thread}" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: run_envmethod \
$method $test -thread: $res"
close $o
}
}
}
}
}
#
# Run access method tests at default page size with -alloc enabled.
#
foreach method $valid_methods {
puts "Running $method tests in an env with -alloc"
foreach sub {test sdb si} {
foreach test $test_names($sub) {
if { $run == 0 } {
set o [open ALL.OUT a]
eval {run_envmethod -$method $test \
$display $run $o -alloc}
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
eval {run_envmethod -$method $test \
$display $run stdout -alloc}" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: run_envmethod \
$method $test -alloc: $res"
close $o
}
}
}
}
}
# Run standard access method tests under replication.
#
set test_list [list {"testNNN under replication" "repmethod"}]
# If we're on Windows, Linux, FreeBSD, or Solaris, run the
# bigfile tests. These create files larger than 4 GB.
if { $is_freebsd_test == 1 || $is_linux_test == 1 || \
$is_sunos_test == 1 || $is_windows_test == 1 } {
lappend test_list {"big files" "bigfile"}
}
# If release supports encryption, run security tests.
#
if { $has_crypto == 1 } {
lappend test_list {"testNNN with security" "secmethod"}
}
foreach pair $test_list {
set msg [lindex $pair 0]
set cmd [lindex $pair 1]
puts "Running $msg tests"
if [catch {exec $tclsh_path << \
"global one_test; set one_test $one_test; \
source $test_path/test.tcl; \
r $rflags $cmd $args" >>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: $cmd test: $res"
close $o
}
}
# If not actually running, no need to check for failure.
if { $run == 0 } {
return
}
set failed 0
set o [open ALL.OUT r]
while { [gets $o line] >= 0 } {
if { [regexp {^FAIL} $line] != 0 } {
set failed 1
}
}
close $o
set o [open ALL.OUT a]
if { $failed == 0 } {
puts "Regression Tests Succeeded"
puts $o "Regression Tests Succeeded"
} else {
puts "Regression Tests Failed; see ALL.OUT for log"
puts $o "Regression Tests Failed"
}
puts -nonewline "Test suite run completed at: "
puts [clock format [clock seconds] -format "%H:%M %D"]
puts -nonewline $o "Test suite run completed at: "
puts $o [clock format [clock seconds] -format "%H:%M %D"]
close $o
}
proc run_all_new { { testname ALL } args } {
global test_names
global one_test
global has_crypto
global valid_methods
source ./include.tcl
fileremove -f ALL.OUT
set one_test $testname
if { $one_test != "ALL" } {
# Source testparams again to adjust test_names.
source $test_path/testparams.tcl
}
set exflgs [eval extractflags $args]
set flags [lindex $exflgs 1]
set display 1
set run 1
set am_only 0
set parallel 0
set nparalleltests 0
set rflags {--}
foreach f $flags {
switch $f {
m {
set am_only 1
}
n {
set display 1
set run 0
set rflags [linsert $rflags 0 "-n"]
}
}
}
set o [open ALL.OUT a]
if { $run == 1 } {
puts -nonewline "Test suite run started at: "
puts [clock format [clock seconds] -format "%H:%M %D"]
puts [berkdb version -string]
puts -nonewline $o "Test suite run started at: "
puts $o [clock format [clock seconds] -format "%H:%M %D"]
puts $o [berkdb version -string]
}
close $o
#
# First run standard tests. Send in a -A to let run_std know
# that it is part of the "run_all" run, so that it doesn't
# print out start/end times.
#
lappend args -A
eval {run_std} $one_test $args
set test_pagesizes [get_test_pagesizes]
set args [lindex $exflgs 0]
set save_args $args
#
# Run access method tests at default page size in one env.
#
foreach method $valid_methods {
puts "Running $method tests in a txn env"
foreach sub {test sdb si} {
foreach test $test_names($sub) {
if { $run == 0 } {
set o [open ALL.OUT a]
run_envmethod -$method $test $display \
$run $o $args
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
run_envmethod -$method $test \
$display $run stdout $args" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: run_envmethod \
$method $test: $res"
close $o
}
}
}
}
}
#
# Run access method tests at default page size in thread-enabled env.
# We're not truly running threaded tests, just testing the interface.
#
foreach method $valid_methods {
puts "Running $method tests in a threaded txn env"
set thread_tests "test001"
foreach test $thread_tests {
if { $run == 0 } {
set o [open ALL.OUT a]
eval {run_envmethod -$method $test \
$display $run $o -thread}
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
eval {run_envmethod -$method $test \
$display $run stdout -thread}" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: run_envmethod \
$method $test -thread: $res"
close $o
}
}
}
}
#
# Run access method tests at default page size with -alloc enabled.
#
foreach method $valid_methods {
puts "Running $method tests in an env with -alloc"
set alloc_tests "test001"
foreach test $alloc_tests {
if { $run == 0 } {
set o [open ALL.OUT a]
eval {run_envmethod -$method $test \
$display $run $o -alloc}
close $o
}
if { $run } {
if [catch {exec $tclsh_path << \
"global one_test; \
set one_test $one_test; \
source $test_path/test.tcl; \
eval {run_envmethod -$method $test \
$display $run stdout -alloc}" \
>>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: run_envmethod \
$method $test -alloc: $res"
close $o
}
}
}
}
# Run standard access method tests under replication.
#
set test_list [list {"testNNN under replication" "repmethod"}]
# If we're on Windows, Linux, FreeBSD, or Solaris, run the
# bigfile tests. These create files larger than 4 GB.
if { $is_freebsd_test == 1 || $is_linux_test == 1 || \
$is_sunos_test == 1 || $is_windows_test == 1 } {
lappend test_list {"big files" "bigfile"}
}
# If release supports encryption, run security tests.
#
if { $has_crypto == 1 } {
lappend test_list {"testNNN with security" "secmethod"}
}
foreach pair $test_list {
set msg [lindex $pair 0]
set cmd [lindex $pair 1]
puts "Running $msg tests"
if [catch {exec $tclsh_path << \
"global one_test; set one_test $one_test; \
source $test_path/test.tcl; \
r $rflags $cmd $args" >>& ALL.OUT } res] {
set o [open ALL.OUT a]
puts $o "FAIL: $cmd test: $res"
close $o
}
}
# If not actually running, no need to check for failure.
if { $run == 0 } {
return
}
set failed 0
set o [open ALL.OUT r]
while { [gets $o line] >= 0 } {
if { [regexp {^FAIL} $line] != 0 } {
set failed 1
}
}
close $o
set o [open ALL.OUT a]
if { $failed == 0 } {
puts "Regression Tests Succeeded"
puts $o "Regression Tests Succeeded"
} else {
puts "Regression Tests Failed; see ALL.OUT for log"
puts $o "Regression Tests Failed"
}
puts -nonewline "Test suite run completed at: "
puts [clock format [clock seconds] -format "%H:%M %D"]
puts -nonewline $o "Test suite run completed at: "
puts $o [clock format [clock seconds] -format "%H:%M %D"]
close $o
}
#
# Run method tests in one environment. (As opposed to run_envmethod
# which runs each test in its own, new environment.)
#
proc run_envmethod1 { method {display 0} {run 1} { outfile stdout } args } {
global __debug_on
global __debug_print
global __debug_test
global is_envmethod
global test_names
global parms
source ./include.tcl
if { $run == 1 } {
puts "run_envmethod1: $method $args"
}
set is_envmethod 1
if { $run == 1 } {
check_handles
env_cleanup $testdir
error_check_good envremove [berkdb envremove -home $testdir] 0
set env [eval {berkdb_env -create -cachesize {0 10000000 0}} \
{-pagesize 512 -mode 0644 -home $testdir} $args ]
error_check_good env_open [is_valid_env $env] TRUE
append largs " -env $env "
}
if { $display } {
# The envmethod1 tests can't be split up, since they share
# an env.
puts $outfile "eval run_envmethod1 $method $args"
}
set stat [catch {
foreach test $test_names(test) {
if { [info exists parms($test)] != 1 } {
puts stderr "$test disabled in\
testparams.tcl; skipping."
continue
}
if { $run } {
puts $outfile "[timestamp]"
eval $test $method $parms($test) $largs
if { $__debug_print != 0 } {
puts $outfile ""
}
if { $__debug_on != 0 } {
debug $__debug_test
}
}
flush stdout
flush stderr
}
} res]
if { $stat != 0} {
global errorInfo;
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp]\
run_envmethod: $method $test: $theError"
} else {
error $theError;
}
}
set stat [catch {
foreach test $test_names(test) {
if { [info exists parms($test)] != 1 } {
puts stderr "$test disabled in\
testparams.tcl; skipping."
continue
}
if { $run } {
puts $outfile "[timestamp]"
eval $test $method $parms($test) $largs
if { $__debug_print != 0 } {
puts $outfile ""
}
if { $__debug_on != 0 } {
debug $__debug_test
}
}
flush stdout
flush stderr
}
} res]
if { $stat != 0} {
global errorInfo;
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp]\
run_envmethod1: $method $test: $theError"
} else {
error $theError;
}
}
if { $run == 1 } {
error_check_good envclose [$env close] 0
check_handles $outfile
}
set is_envmethod 0
}
# Run the secondary index tests.
proc sindex { {display 0} {run 1} {outfile stdout} {verbose 0} args } {
global test_names
global testdir
global verbose_check_secondaries
set verbose_check_secondaries $verbose
# Standard number of secondary indices to create if a single-element
# list of methods is passed into the secondary index tests.
global nsecondaries
set nsecondaries 2
# Run basic tests with a single secondary index and a small number
# of keys, then again with a larger number of keys. (Note that
# we can't go above 5000, since we use two items from our
# 10K-word list for each key/data pair.)
foreach n { 200 5000 } {
foreach pm { btree hash recno frecno queue queueext } {
foreach sm { dbtree dhash ddbtree ddhash btree hash } {
foreach test $test_names(si) {
if { $display } {
puts -nonewline $outfile \
"eval $test {\[list\
$pm $sm $sm\]} $n ;"
puts -nonewline $outfile \
" verify_dir \
$testdir \"\" 1; "
puts $outfile " salvage_dir \
$testdir 1"
}
if { $run } {
check_handles $outfile
eval $test \
{[list $pm $sm $sm]} $n
verify_dir $testdir "" 1
salvage_dir $testdir 1
}
}
}
}
}
# Run tests with 20 secondaries.
foreach pm { btree hash } {
set methlist [list $pm]
for { set j 1 } { $j <= 20 } {incr j} {
# XXX this should incorporate hash after #3726
if { $j % 2 == 0 } {
lappend methlist "dbtree"
} else {
lappend methlist "ddbtree"
}
}
foreach test $test_names(si) {
if { $display } {
puts "eval $test {\[list $methlist\]} 500"
}
if { $run } {
eval $test {$methlist} 500
}
}
}
}
# Run secondary index join test. (There's no point in running
# this with both lengths, the primary is unhappy for now with fixed-
# length records (XXX), and we need unsorted dups in the secondaries.)
proc sijoin { {display 0} {run 1} {outfile stdout} } {
foreach pm { btree hash recno } {
if { $display } {
foreach sm { btree hash } {
puts $outfile "eval sijointest\
{\[list $pm $sm $sm\]} 1000"
}
puts $outfile "eval sijointest\
{\[list $pm btree hash\]} 1000"
puts $outfile "eval sijointest\
{\[list $pm hash btree\]} 1000"
}
if { $run } {
foreach sm { btree hash } {
eval sijointest {[list $pm $sm $sm]} 1000
}
eval sijointest {[list $pm btree hash]} 1000
eval sijointest {[list $pm hash btree]} 1000
}
}
}
proc run { proc_suffix method {start 1} {stop 999} } {
global test_names
switch -exact -- $proc_suffix {
envmethod -
method -
recd -
repmethod -
reptest -
secenv -
secmethod {
# Run_recd runs the recd tests, all others
# run the "testxxx" tests.
if { $proc_suffix == "recd" } {
set testtype recd
} else {
set testtype test
}
for { set i $start } { $i <= $stop } { incr i } {
set name [format "%s%03d" $testtype $i]
# If a test number is missing, silently skip
# to next test; sparse numbering is allowed.
if { [lsearch -exact $test_names($testtype) \
$name] == -1 } {
continue
}
run_$proc_suffix $method $name
}
}
default {
puts "$proc_suffix is not set up with to be used with run"
}
}
}
# We want to test all of 512b, 8Kb, and 64Kb pages, but chances are one
# of these is the default pagesize. We don't want to run all the AM tests
# twice, so figure out what the default page size is, then return the
# other two.
proc get_test_pagesizes { } {
# Create an in-memory database.
set db [berkdb_open -create -btree]
error_check_good gtp_create [is_valid_db $db] TRUE
set statret [$db stat]
set pgsz 0
foreach pair $statret {
set fld [lindex $pair 0]
if { [string compare $fld {Page size}] == 0 } {
set pgsz [lindex $pair 1]
}
}
error_check_good gtp_close [$db close] 0
error_check_bad gtp_pgsz $pgsz 0
switch $pgsz {
512 { return {8192 65536} }
8192 { return {512 65536} }
65536 { return {512 8192} }
default { return {512 8192 65536} }
}
error_check_good NOTREACHED 0 1
}
proc run_timed_once { timedtest args } {
set start [timestamp -r]
set ret [catch {
eval $timedtest $args
flush stdout
flush stderr
} res]
set stop [timestamp -r]
if { $ret != 0 } {
global errorInfo
set fnl [string first "\n" $errorInfo]
set theError [string range $errorInfo 0 [expr $fnl - 1]]
if {[string first FAIL $errorInfo] == -1} {
error "FAIL:[timestamp]\
run_timed: $timedtest: $theError"
} else {
error $theError;
}
}
return [expr $stop - $start]
}
proc run_timed { niter timedtest args } {
if { $niter < 1 } {
error "run_timed: Invalid number of iterations $niter"
}
set sum 0
set e {}
for { set i 1 } { $i <= $niter } { incr i } {
set elapsed [eval run_timed_once $timedtest $args]
lappend e $elapsed
set sum [expr $sum + $elapsed]
puts "Test $timedtest run $i completed: $elapsed seconds"
}
if { $niter > 1 } {
set avg [expr $sum / $niter]
puts "Average $timedtest time: $avg"
puts "Raw $timedtest data: $e"
}
}
|