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 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870
|
//
// Copyright (C) 2004-2008 Maciej Sobczak, Stephen Hutton
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
//
#include "soci/soci.h"
#ifdef SOCI_HAVE_CXX17
#include "soci/std-optional.h"
#endif
#include "soci-compiler.h"
#include <catch.hpp>
#if defined(_MSC_VER) && (_MSC_VER < 1500)
#undef SECTION
#define SECTION(name) INTERNAL_CATCH_SECTION(name, "dummy-for-vc8")
#endif
#include <algorithm>
#include <clocale>
#include <cstdint>
#include <cstdlib>
#include <limits>
#include <string>
#include <typeinfo>
#include <type_traits>
#include "soci-mktime.h"
#include "test-assert.h"
#include "test-myint.h"
#include "test-padded.h"
namespace soci
{
namespace tests
{
// Define the test cases in their own namespace to avoid clashes with the test
// cases defined in individual backend tests: as only line number is used for
// building the name of the "anonymous" function by the TEST_CASE macro, we
// could have a conflict between a test defined here and in some backend if
// they happened to start on the same line.
namespace test_cases
{
inline bool operator== ( const std::tm& a, const std::tm& b )
{
return a.tm_sec == b.tm_sec && a.tm_min == b.tm_min && a.tm_hour == b.tm_hour && a.tm_mday == b.tm_mday && a.tm_mon == b.tm_mon &&
a.tm_year == b.tm_year && a.tm_wday == b.tm_wday && a.tm_yday == b.tm_yday && a.tm_isdst == b.tm_isdst;
}
TEST_CASE("timegm implementation", "[core][timegm]")
{
std::tm t1;
t1.tm_year = 105;
t1.tm_mon = 13; // + 1 year
t1.tm_mday = 15;
t1.tm_hour = 28; // + 1 day
t1.tm_min = 14;
t1.tm_sec = 17;
std::tm t2 = t1;
const auto timegm_result = timegm (&t1);
const auto timegm_soci_result = details::timegm_impl_soci (&t2);
CHECK ( timegm_result == timegm_soci_result );
CHECK ( t1.tm_year == 106 );
CHECK ( t1.tm_mon == 1 );
CHECK ( t1.tm_mday == 16 );
CHECK ( t1.tm_hour == 4 );
CHECK ( ( t1 == t2 ) );
}
TEST_CASE_METHOD(common_tests, "Exception on not connected", "[core][exception]")
{
soci::session sql; // no connection
// ensure connection is checked, no crash occurs
CHECK_THROWS_AS(sql.begin(), soci_error);
CHECK_THROWS_AS(sql.commit(), soci_error);
CHECK_THROWS_AS(sql.rollback(), soci_error);
CHECK_THROWS_AS(sql.get_backend_name(), soci_error);
CHECK_THROWS_AS(sql.make_statement_backend(), soci_error);
CHECK_THROWS_AS(sql.make_rowid_backend(), soci_error);
CHECK_THROWS_AS(sql.make_blob_backend(), soci_error);
std::string s;
long long l;
CHECK_THROWS_AS(sql.get_next_sequence_value(s, l), soci_error);
CHECK_THROWS_AS(sql.get_last_insert_id(s, l), soci_error);
}
TEST_CASE_METHOD(common_tests, "Basic functionality", "[core][basics]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
CHECK_THROWS_AS(sql << "drop table soci_test_nosuchtable", soci_error);
sql << "insert into soci_test (id) values (" << 123 << ")";
int id;
sql << "select id from soci_test", into(id);
CHECK(id == 123);
sql << "insert into soci_test (id) values (" << 234 << ")";
sql << "insert into soci_test (id) values (" << 345 << ")";
// Test prepare, execute, fetch correctness
statement st = (sql.prepare << "select id from soci_test", into(id));
st.execute();
int count = 0;
while(st.fetch())
count++;
CHECK(count == 3 );
bool fetchEnd = st.fetch(); // All the data has been read here so additional fetch must return false
CHECK(fetchEnd == false);
}
// "into" tests, type conversions, etc.
TEST_CASE_METHOD(common_tests, "Use and into", "[core][into]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
SECTION("Round trip works for char")
{
char c('a');
sql << "insert into soci_test(c) values(:c)", use(c);
sql << "select c from soci_test", into(c);
CHECK(c == 'a');
}
SECTION("Round trip works for string")
{
std::string helloSOCI("Hello, SOCI!");
sql << "insert into soci_test(str) values(:s)", use(helloSOCI);
std::string str;
sql << "select str from soci_test", into(str);
CHECK(str == "Hello, SOCI!");
}
SECTION("Round trip works for short")
{
short three(3);
sql << "insert into soci_test(sh) values(:id)", use(three);
short sh(0);
sql << "select sh from soci_test", into(sh);
CHECK(sh == 3);
}
SECTION("Round trip works for int")
{
int five(5);
sql << "insert into soci_test(id) values(:id)", use(five);
int i(0);
sql << "select id from soci_test", into(i);
CHECK(i == 5);
}
SECTION("Round trip works for unsigned long")
{
unsigned long seven(7);
sql << "insert into soci_test(ul) values(:ul)", use(seven);
unsigned long ul(0);
sql << "select ul from soci_test", into(ul);
CHECK(ul == 7);
}
SECTION("Round trip works for double")
{
double pi(3.14159265);
sql << "insert into soci_test(d) values(:d)", use(pi);
double d(0.0);
sql << "select d from soci_test", into(d);
ASSERT_EQUAL(d, pi);
}
SECTION("Round trip works for date without time")
{
std::tm nov15 = std::tm();
nov15.tm_year = 105;
nov15.tm_mon = 10;
nov15.tm_mday = 15;
nov15.tm_hour = 0;
nov15.tm_min = 0;
nov15.tm_sec = 0;
sql << "insert into soci_test(tm) values(:tm)", use(nov15);
std::tm t = std::tm();
sql << "select tm from soci_test", into(t);
CHECK(t.tm_year == 105);
CHECK(t.tm_mon == 10);
CHECK(t.tm_mday == 15);
CHECK(t.tm_hour == 0);
CHECK(t.tm_min == 0);
CHECK(t.tm_sec == 0);
}
SECTION("Round trip works for date with time")
{
std::tm nov15 = std::tm();
nov15.tm_year = 105;
nov15.tm_mon = 10;
nov15.tm_mday = 15;
nov15.tm_hour = 22;
nov15.tm_min = 14;
nov15.tm_sec = 17;
sql << "insert into soci_test(tm) values(:tm)", use(nov15);
std::tm t = std::tm();
sql << "select tm from soci_test", into(t);
CHECK(t.tm_year == 105);
CHECK(t.tm_mon == 10);
CHECK(t.tm_mday == 15);
CHECK(t.tm_hour == 22);
CHECK(t.tm_min == 14);
CHECK(t.tm_sec == 17);
}
SECTION("Indicator is filled correctly in the simplest case")
{
int id(1);
std::string str("Hello");
sql << "insert into soci_test(id, str) values(:id, :str)",
use(id), use(str);
int i;
indicator ind;
sql << "select id from soci_test", into(i, ind);
CHECK(ind == i_ok);
}
SECTION("Indicators work correctly more generally")
{
sql << "insert into soci_test(id,tm) values(NULL,NULL)";
int i;
indicator ind;
sql << "select id from soci_test", into(i, ind);
CHECK(ind == i_null);
// additional test for NULL with std::tm
std::tm t = std::tm();
sql << "select tm from soci_test", into(t, ind);
CHECK(ind == i_null);
// indicator should be initialized even when nothing is found
ind = i_ok;
sql << "select id from soci_test where str='NO SUCH ROW'",
into(i, ind);
CHECK(ind == i_null);
try
{
// expect error
sql << "select id from soci_test", into(i);
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
CHECK(e.get_error_message() ==
"Null value fetched and no indicator defined.");
CHECK_THAT(e.what(),
Catch::Contains("for the parameter number 1"));
}
sql << "select id from soci_test where id = 1000", into(i, ind);
CHECK(sql.got_data() == false);
// no data expected
sql << "select id from soci_test where id = 1000", into(i);
CHECK(sql.got_data() == false);
// no data expected, test correct behaviour with use
int id = 1000;
sql << "select id from soci_test where id = :id", use(id), into(i);
CHECK(sql.got_data() == false);
}
}
// repeated fetch and bulk fetch
TEST_CASE_METHOD(common_tests, "Repeated and bulk fetch", "[core][bulk]")
{
soci::session sql(backEndFactory_, connectString_);
// create and populate the test table
auto_table_creator tableCreator(tc_.table_creator_1(sql));
SECTION("char")
{
char c;
for (c = 'a'; c <= 'z'; ++c)
{
sql << "insert into soci_test(c) values(\'" << c << "\')";
}
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == 'z' - 'a' + 1);
{
char c2 = 'a';
statement st = (sql.prepare <<
"select c from soci_test order by c", into(c));
st.execute();
while (st.fetch())
{
CHECK(c == c2);
++c2;
}
CHECK(c2 == 'a' + count);
}
{
char c2 = 'a';
std::vector<char> vec(10);
statement st = (sql.prepare <<
"select c from soci_test order by c", into(vec));
st.execute();
while (st.fetch())
{
for (std::size_t i = 0; i != vec.size(); ++i)
{
CHECK(c2 == vec[i]);
++c2;
}
vec.resize(10);
}
CHECK(c2 == 'a' + count);
}
{
// verify an exception is thrown when empty vector is used
std::vector<char> vec;
try
{
sql << "select c from soci_test", into(vec);
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
CHECK(e.get_error_message() ==
"Vectors of size 0 are not allowed.");
}
}
}
// repeated fetch and bulk fetch of std::string
SECTION("std::string")
{
int const rowsToTest = 10;
for (int i = 0; i != rowsToTest; ++i)
{
std::ostringstream ss;
ss << "Hello_" << i;
sql << "insert into soci_test(str) values(\'"
<< ss.str() << "\')";
}
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == rowsToTest);
{
int i = 0;
std::string s;
statement st = (sql.prepare <<
"select str from soci_test order by str", into(s));
st.execute();
while (st.fetch())
{
std::ostringstream ss;
ss << "Hello_" << i;
CHECK(s == ss.str());
++i;
}
CHECK(i == rowsToTest);
}
{
int i = 0;
std::vector<std::string> vec(4);
statement st = (sql.prepare <<
"select str from soci_test order by str", into(vec));
st.execute();
while (st.fetch())
{
for (std::size_t j = 0; j != vec.size(); ++j)
{
std::ostringstream ss;
ss << "Hello_" << i;
CHECK(ss.str() == vec[j]);
++i;
}
vec.resize(4);
}
CHECK(i == rowsToTest);
}
}
SECTION("short")
{
short const rowsToTest = 100;
short sh;
for (sh = 0; sh != rowsToTest; ++sh)
{
sql << "insert into soci_test(sh) values(" << sh << ")";
}
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == rowsToTest);
{
short sh2 = 0;
statement st = (sql.prepare <<
"select sh from soci_test order by sh", into(sh));
st.execute();
while (st.fetch())
{
CHECK(sh == sh2);
++sh2;
}
CHECK(sh2 == rowsToTest);
}
{
short sh2 = 0;
std::vector<short> vec(8);
statement st = (sql.prepare <<
"select sh from soci_test order by sh", into(vec));
st.execute();
while (st.fetch())
{
for (std::size_t i = 0; i != vec.size(); ++i)
{
CHECK(sh2 == vec[i]);
++sh2;
}
vec.resize(8);
}
CHECK(sh2 == rowsToTest);
}
}
SECTION("int")
{
int const rowsToTest = 100;
int i;
for (i = 0; i != rowsToTest; ++i)
{
sql << "insert into soci_test(id) values(" << i << ")";
}
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == rowsToTest);
{
int i2 = 0;
statement st = (sql.prepare <<
"select id from soci_test order by id", into(i));
st.execute();
while (st.fetch())
{
CHECK(i == i2);
++i2;
}
CHECK(i2 == rowsToTest);
}
{
// additional test with the use element
int i2 = 0;
int cond = 0; // this condition is always true
statement st = (sql.prepare <<
"select id from soci_test where id >= :cond order by id",
use(cond), into(i));
st.execute();
while (st.fetch())
{
CHECK(i == i2);
++i2;
}
CHECK(i2 == rowsToTest);
}
{
int i2 = 0;
std::vector<int> vec(8);
statement st = (sql.prepare <<
"select id from soci_test order by id", into(vec));
st.execute();
while (st.fetch())
{
for (std::size_t n = 0; n != vec.size(); ++n)
{
CHECK(i2 == vec[n]);
++i2;
}
vec.resize(8);
}
CHECK(i2 == rowsToTest);
}
}
SECTION("unsigned int")
{
unsigned int const rowsToTest = 100;
unsigned int ul;
for (ul = 0; ul != rowsToTest; ++ul)
{
sql << "insert into soci_test(ul) values(" << ul << ")";
}
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == static_cast<int>(rowsToTest));
{
unsigned int ul2 = 0;
statement st = (sql.prepare <<
"select ul from soci_test order by ul", into(ul));
st.execute();
while (st.fetch())
{
CHECK(ul == ul2);
++ul2;
}
CHECK(ul2 == rowsToTest);
}
{
unsigned int ul2 = 0;
std::vector<unsigned int> vec(8);
statement st = (sql.prepare <<
"select ul from soci_test order by ul", into(vec));
st.execute();
while (st.fetch())
{
for (std::size_t i = 0; i != vec.size(); ++i)
{
CHECK(ul2 == vec[i]);
++ul2;
}
vec.resize(8);
}
CHECK(ul2 == rowsToTest);
}
}
SECTION("unsigned long long")
{
unsigned int const rowsToTest = 100;
unsigned long long ul;
for (ul = 0; ul != rowsToTest; ++ul)
{
sql << "insert into soci_test(ul) values(" << ul << ")";
}
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == static_cast<int>(rowsToTest));
{
unsigned long long ul2 = 0;
statement st = (sql.prepare <<
"select ul from soci_test order by ul", into(ul));
st.execute();
while (st.fetch())
{
CHECK(ul == ul2);
++ul2;
}
CHECK(ul2 == rowsToTest);
}
{
unsigned long long ul2 = 0;
std::vector<unsigned long long> vec(8);
statement st = (sql.prepare <<
"select ul from soci_test order by ul", into(vec));
st.execute();
while (st.fetch())
{
for (std::size_t i = 0; i != vec.size(); ++i)
{
CHECK(ul2 == vec[i]);
++ul2;
}
vec.resize(8);
}
CHECK(ul2 == rowsToTest);
}
}
SECTION("double")
{
int const rowsToTest = 100;
double d = 0.0;
statement sti = (sql.prepare <<
"insert into soci_test(d) values(:d)", use(d));
for (int i = 0; i != rowsToTest; ++i)
{
sti.execute(true);
d += 0.6;
}
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == rowsToTest);
{
double d2 = 0.0;
int i = 0;
statement st = (sql.prepare <<
"select d from soci_test order by d", into(d));
st.execute();
while (st.fetch())
{
ASSERT_EQUAL(d, d2);
d2 += 0.6;
++i;
}
CHECK(i == rowsToTest);
}
{
double d2 = 0.0;
int i = 0;
std::vector<double> vec(8);
statement st = (sql.prepare <<
"select d from soci_test order by d", into(vec));
st.execute();
while (st.fetch())
{
for (std::size_t j = 0; j != vec.size(); ++j)
{
ASSERT_EQUAL(d2, vec[j]);
d2 += 0.6;
++i;
}
vec.resize(8);
}
CHECK(i == rowsToTest);
}
}
SECTION("std::tm")
{
int const rowsToTest = 8;
for (int i = 0; i != rowsToTest; ++i)
{
std::ostringstream ss;
ss << 2000 + i << "-0" << 1 + i << '-' << 20 - i << ' '
<< 15 + i << ':' << 50 - i << ':' << 40 + i;
sql << "insert into soci_test(id, tm) values(" << i
<< ", " << tc_.to_date_time(ss.str()) << ")";
}
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == rowsToTest);
{
std::tm t = std::tm();
int i = 0;
statement st = (sql.prepare <<
"select tm from soci_test order by id", into(t));
st.execute();
while (st.fetch())
{
CHECK(t.tm_year == 2000 - 1900 + i);
CHECK(t.tm_mon == i);
CHECK(t.tm_mday == 20 - i);
CHECK(t.tm_hour == 15 + i);
CHECK(t.tm_min == 50 - i);
CHECK(t.tm_sec == 40 + i);
++i;
}
CHECK(i == rowsToTest);
}
{
int i = 0;
std::vector<std::tm> vec(3);
statement st = (sql.prepare <<
"select tm from soci_test order by id", into(vec));
st.execute();
while (st.fetch())
{
for (std::size_t j = 0; j != vec.size(); ++j)
{
CHECK(vec[j].tm_year == 2000 - 1900 + i);
CHECK(vec[j].tm_mon == i);
CHECK(vec[j].tm_mday == 20 - i);
CHECK(vec[j].tm_hour == 15 + i);
CHECK(vec[j].tm_min == 50 - i);
CHECK(vec[j].tm_sec == 40 + i);
++i;
}
vec.resize(3);
}
CHECK(i == rowsToTest);
}
}
}
// test for indicators (repeated fetch and bulk)
TEST_CASE_METHOD(common_tests, "Indicators", "[core][indicator]")
{
soci::session sql(backEndFactory_, connectString_);
// create and populate the test table
auto_table_creator tableCreator(tc_.table_creator_1(sql));
{
sql << "insert into soci_test(id, val) values(1, 10)";
sql << "insert into soci_test(id, val) values(2, 11)";
sql << "insert into soci_test(id, val) values(3, NULL)";
sql << "insert into soci_test(id, val) values(4, NULL)";
sql << "insert into soci_test(id, val) values(5, 12)";
{
int val;
indicator ind;
statement st = (sql.prepare <<
"select val from soci_test order by id", into(val, ind));
st.execute();
bool gotData = st.fetch();
CHECK(gotData);
CHECK(ind == i_ok);
CHECK(val == 10);
gotData = st.fetch();
CHECK(gotData);
CHECK(ind == i_ok);
CHECK(val == 11);
gotData = st.fetch();
CHECK(gotData);
CHECK(ind == i_null);
gotData = st.fetch();
CHECK(gotData);
CHECK(ind == i_null);
gotData = st.fetch();
CHECK(gotData);
CHECK(ind == i_ok);
CHECK(val == 12);
gotData = st.fetch();
CHECK(gotData == false);
}
{
std::vector<int> vals(3);
std::vector<indicator> inds(3);
statement st = (sql.prepare <<
"select val from soci_test order by id", into(vals, inds));
st.execute();
bool gotData = st.fetch();
CHECK(gotData);
CHECK(vals.size() == 3);
CHECK(inds.size() == 3);
CHECK(inds[0] == i_ok);
CHECK(vals[0] == 10);
CHECK(inds[1] == i_ok);
CHECK(vals[1] == 11);
CHECK(inds[2] == i_null);
gotData = st.fetch();
CHECK(gotData);
CHECK(vals.size() == 2);
CHECK(inds[0] == i_null);
CHECK(inds[1] == i_ok);
CHECK(vals[1] == 12);
gotData = st.fetch();
CHECK(gotData == false);
}
// additional test for "no data" condition
{
std::vector<int> vals(3);
std::vector<indicator> inds(3);
statement st = (sql.prepare <<
"select val from soci_test where 0 = 1", into(vals, inds));
bool gotData = st.execute(true);
CHECK(gotData == false);
// for convenience, vectors should be truncated
CHECK(vals.empty());
CHECK(inds.empty());
// for even more convenience, fetch should not fail
// but just report end of rowset
// (and vectors should be truncated)
vals.resize(1);
inds.resize(1);
gotData = st.fetch();
CHECK(gotData == false);
CHECK(vals.empty());
CHECK(inds.empty());
}
// additional test for "no data" without prepared statement
{
std::vector<int> vals(3);
std::vector<indicator> inds(3);
sql << "select val from soci_test where 0 = 1",
into(vals, inds);
// vectors should be truncated
CHECK(vals.empty());
CHECK(inds.empty());
}
}
}
// test for different sizes of data vector and indicators vector
// (library should force ind. vector to have same size as data vector)
TEST_CASE_METHOD(common_tests, "Indicators vector", "[core][indicator][vector]")
{
soci::session sql(backEndFactory_, connectString_);
// create and populate the test table
auto_table_creator tableCreator(tc_.table_creator_1(sql));
{
sql << "insert into soci_test(id, str, val) values(1, 'ten', 10)";
sql << "insert into soci_test(id, str, val) values(2, 'elf', 11)";
sql << "insert into soci_test(id, str, val) values(3, NULL, NULL)";
sql << "insert into soci_test(id, str, val) values(4, NULL, NULL)";
sql << "insert into soci_test(id, str, val) values(5, 'xii', 12)";
{
std::vector<int> vals(4);
std::vector<indicator> inds;
statement st = (sql.prepare <<
"select val from soci_test order by id", into(vals, inds));
st.execute();
st.fetch();
CHECK(vals.size() == 4);
CHECK(inds.size() == 4);
vals.resize(3);
st.fetch();
CHECK(vals.size() == 1);
CHECK(inds.size() == 1);
std::vector<std::string> strs(5);
sql << "select str from soci_test order by id", into(strs, inds);
REQUIRE(inds.size() == 5);
CHECK(inds[0] == i_ok);
CHECK(inds[1] == i_ok);
CHECK(inds[2] == i_null);
CHECK(inds[3] == i_null);
CHECK(inds[4] == i_ok);
strs.resize(1);
sql << "select str from soci_test order by id", into(strs, inds);
CHECK(inds.size() == 1);
strs.resize(1);
st = (sql.prepare << "select str from soci_test order by id", into(strs, inds));
st.execute();
st.fetch();
CHECK(inds.size() == 1);
while (st.fetch());
std::vector<int> ids(1);
sql << "select id from soci_test", into(ids);
CHECK(ids.size() == 1);
}
}
}
TEST_CASE_METHOD(common_tests, "Get last insert ID", "[core][get_last_insert_id]")
{
soci::session sql(backEndFactory_, connectString_);
// create and populate the test table
auto_table_creator tableCreator(tc_.table_creator_get_last_insert_id(sql));
// If the get_last_insert_id() supported by the backend.
if (!tableCreator.get())
return;
long long id;
REQUIRE(sql.get_last_insert_id("soci_test", id));
// The initial value should be 1 and we call get_last_insert_id() before
// the first insert, so the "pre-initial value" is 0.
CHECK(id == 0);
sql << "insert into soci_test(val) values(10)";
REQUIRE(sql.get_last_insert_id("soci_test", id));
CHECK(id == 1);
sql << "insert into soci_test(val) values(11)";
REQUIRE(sql.get_last_insert_id("soci_test", id));
CHECK(id == 2);
}
// "use" tests, type conversions, etc.
TEST_CASE_METHOD(common_tests, "Use type conversion", "[core][use]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
SECTION("char")
{
char c('a');
sql << "insert into soci_test(c) values(:c)", use(c);
c = 'b';
sql << "select c from soci_test", into(c);
CHECK(c == 'a');
}
SECTION("std::string")
{
std::string s = "Hello SOCI!";
sql << "insert into soci_test(str) values(:s)", use(s);
std::string str;
sql << "select str from soci_test", into(str);
CHECK(str == "Hello SOCI!");
}
SECTION("int8_t")
{
int8_t i = 123;
sql << "insert into soci_test(id) values(:id)", use(i);
int8_t i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == 123);
sql << "delete from soci_test";
i = (std::numeric_limits<int8_t>::min)();
sql << "insert into soci_test(id) values(:id)", use(i);
i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == (std::numeric_limits<int8_t>::min)());
sql << "delete from soci_test";
i = (std::numeric_limits<int8_t>::max)();
sql << "insert into soci_test(id) values(:id)", use(i);
i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == (std::numeric_limits<int8_t>::max)());
}
SECTION("uint8_t")
{
uint8_t ui = 123;
sql << "insert into soci_test(id) values(:id)", use(ui);
uint8_t ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == 123);
sql << "delete from soci_test";
ui = (std::numeric_limits<uint8_t>::min)();
sql << "insert into soci_test(id) values(:id)", use(ui);
ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == (std::numeric_limits<uint8_t>::min)());
sql << "delete from soci_test";
ui = (std::numeric_limits<uint8_t>::max)();
sql << "insert into soci_test(id) values(:id)", use(ui);
ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == (std::numeric_limits<uint8_t>::max)());
}
SECTION("short")
{
short s = 123;
sql << "insert into soci_test(id) values(:id)", use(s);
short s2 = 0;
sql << "select id from soci_test", into(s2);
CHECK(s2 == 123);
}
SECTION("int16_t")
{
int16_t i = 123;
sql << "insert into soci_test(id) values(:id)", use(i);
int16_t i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == 123);
sql << "delete from soci_test";
i = (std::numeric_limits<int16_t>::min)();
sql << "insert into soci_test(id) values(:id)", use(i);
i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == (std::numeric_limits<int16_t>::min)());
sql << "delete from soci_test";
i = (std::numeric_limits<int16_t>::max)();
sql << "insert into soci_test(id) values(:id)", use(i);
i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == (std::numeric_limits<int16_t>::max)());
}
SECTION("uint16_t")
{
uint16_t ui = 123;
sql << "insert into soci_test(id) values(:id)", use(ui);
uint16_t ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == 123);
sql << "delete from soci_test";
ui = (std::numeric_limits<uint16_t>::min)();
sql << "insert into soci_test(id) values(:id)", use(ui);
ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == (std::numeric_limits<uint16_t>::min)());
sql << "delete from soci_test";
ui = (std::numeric_limits<uint16_t>::max)();
sql << "insert into soci_test(id) values(:id)", use(ui);
ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == (std::numeric_limits<uint16_t>::max)());
}
SECTION("int")
{
int i = -12345678;
sql << "insert into soci_test(id) values(:i)", use(i);
int i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == -12345678);
}
SECTION("int32_t")
{
int32_t i = -12345678;
sql << "insert into soci_test(id) values(:i)", use(i);
int32_t i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == -12345678);
sql << "delete from soci_test";
i = (std::numeric_limits<int32_t>::min)();
sql << "insert into soci_test(id) values(:i)", use(i);
i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == (std::numeric_limits<int32_t>::min)());
sql << "delete from soci_test";
i = (std::numeric_limits<int32_t>::max)();
sql << "insert into soci_test(id) values(:i)", use(i);
i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == (std::numeric_limits<int32_t>::max)());
}
SECTION("uint32_t")
{
uint32_t ui = 12345678;
sql << "insert into soci_test(id) values(:i)", use(ui);
uint32_t ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == 12345678);
sql << "delete from soci_test";
ui = (std::numeric_limits<uint32_t>::min)();
sql << "insert into soci_test(id) values(:i)", use(ui);
ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == (std::numeric_limits<uint32_t>::min)());
sql << "delete from soci_test";
ui = (std::numeric_limits<uint32_t>::max)();
sql << "insert into soci_test(ul) values(:i)", use(ui);
ui2 = 0;
sql << "select ul from soci_test", into(ui2);
CHECK(ui2 == (std::numeric_limits<uint32_t>::max)());
}
SECTION("unsigned long")
{
unsigned long ul = 4000000000ul;
sql << "insert into soci_test(ul) values(:num)", use(ul);
unsigned long ul2 = 0;
sql << "select ul from soci_test", into(ul2);
CHECK(ul2 == 4000000000ul);
}
SECTION("int64_t")
{
int64_t i = 4000000000ll;
sql << "insert into soci_test(ll) values(:num)", use(i);
int64_t i2 = 0;
sql << "select ll from soci_test", into(i2);
CHECK(i2 == 4000000000ll);
sql << "delete from soci_test";
i = (std::numeric_limits<int64_t>::min)();
sql << "insert into soci_test(ll) values(:num)", use(i);
i2 = 0;
sql << "select ll from soci_test", into(i2);
CHECK(i2 == (std::numeric_limits<int64_t>::min)());
sql << "delete from soci_test";
i = (std::numeric_limits<int64_t>::max)();
sql << "insert into soci_test(ll) values(:num)", use(i);
i2 = 0;
sql << "select ll from soci_test", into(i2);
CHECK(i2 == (std::numeric_limits<int64_t>::max)());
}
SECTION("uint64_t")
{
uint64_t ui = 4000000000ull;
sql << "insert into soci_test(ul) values(:num)", use(ui);
uint64_t ui2 = 0;
sql << "select ul from soci_test", into(ui2);
CHECK(ui2 == 4000000000ull);
sql << "delete from soci_test";
ui = (std::numeric_limits<uint64_t>::min)();
sql << "insert into soci_test(ul) values(:num)", use(ui);
ui2 = 0;
sql << "select ul from soci_test", into(ui2);
CHECK(ui2 == (std::numeric_limits<uint64_t>::min)());
sql << "delete from soci_test";
ui = (std::numeric_limits<uint64_t>::max)();
sql << "insert into soci_test(ul) values(:num)", use(ui);
ui2 = 0;
sql << "select ul from soci_test", into(ui2);
if (tc_.truncates_uint64_to_int64())
{
CHECK(ui2 == static_cast<uint64_t>((std::numeric_limits<int64_t>::max)()));
}
else
{
CHECK(ui2 == (std::numeric_limits<uint64_t>::max)());
}
}
SECTION("double")
{
double d = 3.14159265;
sql << "insert into soci_test(d) values(:d)", use(d);
double d2 = 0;
sql << "select d from soci_test", into(d2);
ASSERT_EQUAL(d2, d);
}
SECTION("std::tm")
{
std::tm t = std::tm();
t.tm_year = 105;
t.tm_mon = 10;
t.tm_mday = 19;
t.tm_hour = 21;
t.tm_min = 39;
t.tm_sec = 57;
sql << "insert into soci_test(tm) values(:t)", use(t);
std::tm t2 = std::tm();
t2.tm_year = 0;
t2.tm_mon = 0;
t2.tm_mday = 0;
t2.tm_hour = 0;
t2.tm_min = 0;
t2.tm_sec = 0;
sql << "select tm from soci_test", into(t2);
CHECK(t.tm_year == 105);
CHECK(t.tm_mon == 10);
CHECK(t.tm_mday == 19);
CHECK(t.tm_hour == 21);
CHECK(t.tm_min == 39);
CHECK(t.tm_sec == 57);
}
SECTION("repeated use")
{
int i;
statement st = (sql.prepare
<< "insert into soci_test(id) values(:id)", use(i));
i = 5;
st.execute(true);
i = 6;
st.execute(true);
i = 7;
st.execute(true);
std::vector<int> v(5);
sql << "select id from soci_test order by id", into(v);
CHECK(v.size() == 3);
CHECK(v[0] == 5);
CHECK(v[1] == 6);
CHECK(v[2] == 7);
}
// tests for use of const objects
SECTION("const char")
{
char const c('a');
sql << "insert into soci_test(c) values(:c)", use(c);
char c2 = 'b';
sql << "select c from soci_test", into(c2);
CHECK(c2 == 'a');
}
SECTION("const std::string")
{
std::string const s = "Hello const SOCI!";
sql << "insert into soci_test(str) values(:s)", use(s);
std::string str;
sql << "select str from soci_test", into(str);
CHECK(str == "Hello const SOCI!");
}
SECTION("const int8_t")
{
int8_t const i = 123;
sql << "insert into soci_test(id) values(:id)", use(i);
int8_t i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == 123);
}
SECTION("const uint8_t")
{
uint8_t const ui = 123;
sql << "insert into soci_test(id) values(:id)", use(ui);
uint8_t ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == 123);
}
SECTION("const short")
{
short const s = 123;
sql << "insert into soci_test(id) values(:id)", use(s);
short s2 = 0;
sql << "select id from soci_test", into(s2);
CHECK(s2 == 123);
}
SECTION("const int16_t")
{
int16_t const i = 123;
sql << "insert into soci_test(id) values(:id)", use(i);
int16_t i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == 123);
}
SECTION("const uint16_t")
{
uint16_t const ui = 123;
sql << "insert into soci_test(id) values(:id)", use(ui);
uint16_t ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == 123);
}
SECTION("const int")
{
int const i = -12345678;
sql << "insert into soci_test(id) values(:i)", use(i);
int i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == -12345678);
}
SECTION("const int32_t")
{
int32_t const i = -12345678;
sql << "insert into soci_test(id) values(:i)", use(i);
int32_t i2 = 0;
sql << "select id from soci_test", into(i2);
CHECK(i2 == -12345678);
}
SECTION("const uint32_t")
{
uint32_t const ui = 12345678;
sql << "insert into soci_test(id) values(:i)", use(ui);
uint32_t ui2 = 0;
sql << "select id from soci_test", into(ui2);
CHECK(ui2 == 12345678);
}
SECTION("const unsigned long")
{
unsigned long const ul = 4000000000ul;
sql << "insert into soci_test(ul) values(:num)", use(ul);
unsigned long ul2 = 0;
sql << "select ul from soci_test", into(ul2);
CHECK(ul2 == 4000000000ul);
}
SECTION("const int64_t")
{
int64_t const i = 4000000000ll;
sql << "insert into soci_test(ul) values(:num)", use(i);
int64_t i2 = 0;
sql << "select ul from soci_test", into(i2);
CHECK(i2 == 4000000000ll);
}
SECTION("const uint64_t")
{
uint64_t const ui = 4000000000ull;
sql << "insert into soci_test(ul) values(:num)", use(ui);
uint64_t ui2 = 0;
sql << "select ul from soci_test", into(ui2);
CHECK(ui2 == 4000000000ull);
}
SECTION("const double")
{
double const d = 3.14159265;
sql << "insert into soci_test(d) values(:d)", use(d);
double d2 = 0;
sql << "select d from soci_test", into(d2);
ASSERT_EQUAL(d2, d);
}
SECTION("const std::tm")
{
std::tm t = std::tm();
t.tm_year = 105;
t.tm_mon = 10;
t.tm_mday = 19;
t.tm_hour = 21;
t.tm_min = 39;
t.tm_sec = 57;
std::tm const & ct = t;
sql << "insert into soci_test(tm) values(:t)", use(ct);
std::tm t2 = std::tm();
t2.tm_year = 0;
t2.tm_mon = 0;
t2.tm_mday = 0;
t2.tm_hour = 0;
t2.tm_min = 0;
t2.tm_sec = 0;
sql << "select tm from soci_test", into(t2);
CHECK(t.tm_year == 105);
CHECK(t.tm_mon == 10);
CHECK(t.tm_mday == 19);
CHECK(t.tm_hour == 21);
CHECK(t.tm_min == 39);
CHECK(t.tm_sec == 57);
}
}
// test for multiple use (and into) elements
TEST_CASE_METHOD(common_tests, "Multiple use and into", "[core][use][into]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
{
int i1 = 5;
int i2 = 6;
int i3 = 7;
sql << "insert into soci_test(i1, i2, i3) values(:i1, :i2, :i3)",
use(i1), use(i2), use(i3);
i1 = 0;
i2 = 0;
i3 = 0;
sql << "select i1, i2, i3 from soci_test",
into(i1), into(i2), into(i3);
CHECK(i1 == 5);
CHECK(i2 == 6);
CHECK(i3 == 7);
// same for vectors
sql << "delete from soci_test";
i1 = 0;
i2 = 0;
i3 = 0;
statement st = (sql.prepare
<< "insert into soci_test(i1, i2, i3) values(:i1, :i2, :i3)",
use(i1), use(i2), use(i3));
i1 = 1;
i2 = 2;
i3 = 3;
st.execute(true);
i1 = 4;
i2 = 5;
i3 = 6;
st.execute(true);
i1 = 7;
i2 = 8;
i3 = 9;
st.execute(true);
std::vector<int> v1(5);
std::vector<int> v2(5);
std::vector<int> v3(5);
sql << "select i1, i2, i3 from soci_test order by i1",
into(v1), into(v2), into(v3);
CHECK(v1.size() == 3);
CHECK(v2.size() == 3);
CHECK(v3.size() == 3);
CHECK(v1[0] == 1);
CHECK(v1[1] == 4);
CHECK(v1[2] == 7);
CHECK(v2[0] == 2);
CHECK(v2[1] == 5);
CHECK(v2[2] == 8);
CHECK(v3[0] == 3);
CHECK(v3[1] == 6);
CHECK(v3[2] == 9);
}
}
// use vector elements
TEST_CASE_METHOD(common_tests, "Use vector", "[core][use][vector]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
SECTION("char")
{
std::vector<char> v;
v.push_back('a');
v.push_back('b');
v.push_back('c');
v.push_back('d');
sql << "insert into soci_test(c) values(:c)", use(v);
std::vector<char> v2(4);
sql << "select c from soci_test order by c", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == 'a');
CHECK(v2[1] == 'b');
CHECK(v2[2] == 'c');
CHECK(v2[3] == 'd');
}
SECTION("std::string")
{
std::vector<std::string> v;
v.push_back("ala");
v.push_back("ma");
v.push_back("kota");
sql << "insert into soci_test(str) values(:s)", use(v);
std::vector<std::string> v2(4);
sql << "select str from soci_test order by str", into(v2);
CHECK(v2.size() == 3);
CHECK(v2[0] == "ala");
CHECK(v2[1] == "kota");
CHECK(v2[2] == "ma");
}
SECTION("int8_t")
{
std::vector<int8_t> v;
v.push_back((std::numeric_limits<int8_t>::min)());
v.push_back(-5);
v.push_back(123);
v.push_back((std::numeric_limits<int8_t>::max)());
sql << "insert into soci_test(sh) values(:sh)", use(v);
std::vector<int8_t> v2(4);
sql << "select sh from soci_test", into(v2);
CHECK(v2.size() == 4);
// This is a hack: "order by" doesn't work correctly with SQL Server
// for this type because it's stored as unsigned in the database, so
// sort the values here instead.
std::sort(v2.begin(), v2.end());
CHECK((int)v2[0] == (int)(std::numeric_limits<int8_t>::min)());
CHECK((int)v2[1] == (int)-5);
CHECK((int)v2[2] == (int)123);
CHECK((int)v2[3] == (int)(std::numeric_limits<int8_t>::max)());
}
SECTION("uint8_t")
{
std::vector<uint8_t> v;
v.push_back((std::numeric_limits<uint8_t>::min)());
v.push_back(6);
v.push_back(123);
v.push_back((std::numeric_limits<uint8_t>::max)());
sql << "insert into soci_test(sh) values(:sh)", use(v);
std::vector<uint8_t> v2(4);
sql << "select sh from soci_test order by sh", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == (std::numeric_limits<uint8_t>::min)());
CHECK(v2[1] == 6);
CHECK(v2[2] == 123);
CHECK(v2[3] == (std::numeric_limits<uint8_t>::max)());
}
SECTION("short")
{
std::vector<short> v;
v.push_back(-5);
v.push_back(6);
v.push_back(7);
v.push_back(123);
sql << "insert into soci_test(sh) values(:sh)", use(v);
std::vector<short> v2(4);
sql << "select sh from soci_test order by sh", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == -5);
CHECK(v2[1] == 6);
CHECK(v2[2] == 7);
CHECK(v2[3] == 123);
}
SECTION("int16_t")
{
std::vector<int16_t> v;
v.push_back((std::numeric_limits<int16_t>::min)());
v.push_back(-5);
v.push_back(123);
v.push_back((std::numeric_limits<int16_t>::max)());
sql << "insert into soci_test(sh) values(:sh)", use(v);
std::vector<int16_t> v2(4);
sql << "select sh from soci_test order by sh", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == (std::numeric_limits<int16_t>::min)());
CHECK(v2[1] == -5);
CHECK(v2[2] == 123);
CHECK(v2[3] == (std::numeric_limits<int16_t>::max)());
}
SECTION("uint16_t")
{
std::vector<uint16_t> v;
v.push_back((std::numeric_limits<uint16_t>::min)());
v.push_back(6);
v.push_back(123);
v.push_back((std::numeric_limits<uint16_t>::max)());
sql << "insert into soci_test(val) values(:val)", use(v);
std::vector<uint16_t> v2(4);
sql << "select val from soci_test order by val", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == (std::numeric_limits<uint16_t>::min)());
CHECK(v2[1] == 6);
CHECK(v2[2] == 123);
CHECK(v2[3] == (std::numeric_limits<uint16_t>::max)());
}
SECTION("int")
{
std::vector<int> v;
v.push_back(-2000000000);
v.push_back(0);
v.push_back(1);
v.push_back(2000000000);
sql << "insert into soci_test(id) values(:i)", use(v);
std::vector<int> v2(4);
sql << "select id from soci_test order by id", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == -2000000000);
CHECK(v2[1] == 0);
CHECK(v2[2] == 1);
CHECK(v2[3] == 2000000000);
}
SECTION("int32_t")
{
std::vector<int32_t> v;
v.push_back((std::numeric_limits<int32_t>::min)());
v.push_back(-2000000000);
v.push_back(0);
v.push_back(1);
v.push_back(2000000000);
v.push_back((std::numeric_limits<int32_t>::max)());
sql << "insert into soci_test(id) values(:i)", use(v);
std::vector<int32_t> v2(6);
sql << "select id from soci_test order by id", into(v2);
CHECK(v2.size() == 6);
CHECK(v2[0] == (std::numeric_limits<int32_t>::min)());
CHECK(v2[1] == -2000000000);
CHECK(v2[2] == 0);
CHECK(v2[3] == 1);
CHECK(v2[4] == 2000000000);
CHECK(v2[5] == (std::numeric_limits<int32_t>::max)());
}
SECTION("unsigned int")
{
std::vector<unsigned int> v;
v.push_back(0);
v.push_back(1);
v.push_back(123);
v.push_back(1000);
sql << "insert into soci_test(ul) values(:ul)", use(v);
std::vector<unsigned int> v2(4);
sql << "select ul from soci_test order by ul", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == 0);
CHECK(v2[1] == 1);
CHECK(v2[2] == 123);
CHECK(v2[3] == 1000);
}
SECTION("uint32_t")
{
std::vector<uint32_t> v;
v.push_back((std::numeric_limits<uint32_t>::min)());
v.push_back(0);
v.push_back(1);
v.push_back(123);
v.push_back(1000);
v.push_back((std::numeric_limits<uint32_t>::max)());
sql << "insert into soci_test(ul) values(:ul)", use(v);
std::vector<uint32_t> v2(6);
sql << "select ul from soci_test order by ul", into(v2);
CHECK(v2.size() == 6);
CHECK(v2[0] == (std::numeric_limits<uint32_t>::min)());
CHECK(v2[1] == 0);
CHECK(v2[2] == 1);
CHECK(v2[3] == 123);
CHECK(v2[4] == 1000);
CHECK(v2[5] == (std::numeric_limits<uint32_t>::max)());
}
SECTION("unsigned long long")
{
std::vector<unsigned long long> v;
v.push_back(0);
v.push_back(1);
v.push_back(123);
v.push_back(1000);
sql << "insert into soci_test(ul) values(:ul)", use(v);
std::vector<unsigned int> v2(4);
sql << "select ul from soci_test order by ul", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == 0);
CHECK(v2[1] == 1);
CHECK(v2[2] == 123);
CHECK(v2[3] == 1000);
}
SECTION("int64_t")
{
std::vector<int64_t> v;
v.push_back((std::numeric_limits<int64_t>::min)());
v.push_back(0);
v.push_back(1);
v.push_back(123);
v.push_back(1000);
v.push_back((std::numeric_limits<int64_t>::max)());
sql << "insert into soci_test(ll) values(:ll)", use(v);
std::vector<int64_t> v2(6);
sql << "select ll from soci_test order by ll", into(v2);
CHECK(v2.size() == 6);
CHECK(v2[0] == (std::numeric_limits<int64_t>::min)());
CHECK(v2[1] == 0);
CHECK(v2[2] == 1);
CHECK(v2[3] == 123);
CHECK(v2[4] == 1000);
CHECK(v2[5] == (std::numeric_limits<int64_t>::max)());
}
SECTION("uint64_t")
{
std::vector<uint64_t> v;
v.push_back((std::numeric_limits<uint64_t>::min)());
v.push_back(0);
v.push_back(1);
v.push_back(123);
v.push_back(1000);
v.push_back((std::numeric_limits<uint64_t>::max)());
sql << "insert into soci_test(ul) values(:ul)", use(v);
std::vector<uint64_t> v2(6);
sql << "select ul from soci_test order by ul", into(v2);
CHECK(v2.size() == 6);
if (tc_.has_uint64_storage_bug())
{
CHECK(v2[0] == (std::numeric_limits<uint64_t>::max)());
CHECK(v2[1] == (std::numeric_limits<uint64_t>::min)());
CHECK(v2[2] == 0);
CHECK(v2[3] == 1);
CHECK(v2[4] == 123);
CHECK(v2[5] == 1000);
}
else
{
CHECK(v2[0] == (std::numeric_limits<uint64_t>::min)());
CHECK(v2[1] == 0);
CHECK(v2[2] == 1);
CHECK(v2[3] == 123);
CHECK(v2[4] == 1000);
if (tc_.truncates_uint64_to_int64())
{
CHECK(v2[5] == static_cast<uint64_t>((std::numeric_limits<int64_t>::max)()));
}
else
{
CHECK(v2[5] == (std::numeric_limits<uint64_t>::max)());
}
}
}
SECTION("double")
{
std::vector<double> v;
v.push_back(0);
v.push_back(-0.0001);
v.push_back(0.0001);
v.push_back(3.1415926);
sql << "insert into soci_test(d) values(:d)", use(v);
std::vector<double> v2(4);
sql << "select d from soci_test order by d", into(v2);
CHECK(v2.size() == 4);
ASSERT_EQUAL(v2[0],-0.0001);
ASSERT_EQUAL(v2[1], 0);
ASSERT_EQUAL(v2[2], 0.0001);
ASSERT_EQUAL(v2[3], 3.1415926);
}
SECTION("std::tm")
{
std::vector<std::tm> v;
std::tm t = std::tm();
t.tm_year = 105;
t.tm_mon = 10;
t.tm_mday = 26;
t.tm_hour = 22;
t.tm_min = 45;
t.tm_sec = 17;
v.push_back(t);
t.tm_sec = 37;
v.push_back(t);
t.tm_mday = 25;
v.push_back(t);
sql << "insert into soci_test(tm) values(:t)", use(v);
std::vector<std::tm> v2(4);
sql << "select tm from soci_test order by tm", into(v2);
CHECK(v2.size() == 3);
CHECK(v2[0].tm_year == 105);
CHECK(v2[0].tm_mon == 10);
CHECK(v2[0].tm_mday == 25);
CHECK(v2[0].tm_hour == 22);
CHECK(v2[0].tm_min == 45);
CHECK(v2[0].tm_sec == 37);
CHECK(v2[1].tm_year == 105);
CHECK(v2[1].tm_mon == 10);
CHECK(v2[1].tm_mday == 26);
CHECK(v2[1].tm_hour == 22);
CHECK(v2[1].tm_min == 45);
CHECK(v2[1].tm_sec == 17);
CHECK(v2[2].tm_year == 105);
CHECK(v2[2].tm_mon == 10);
CHECK(v2[2].tm_mday == 26);
CHECK(v2[2].tm_hour == 22);
CHECK(v2[2].tm_min == 45);
CHECK(v2[2].tm_sec == 37);
}
SECTION("const int")
{
std::vector<int> v;
v.push_back(-2000000000);
v.push_back(0);
v.push_back(1);
v.push_back(2000000000);
std::vector<int> const & cv = v;
sql << "insert into soci_test(id) values(:i)", use(cv);
std::vector<int> v2(4);
sql << "select id from soci_test order by id", into(v2);
CHECK(v2.size() == 4);
CHECK(v2[0] == -2000000000);
CHECK(v2[1] == 0);
CHECK(v2[2] == 1);
CHECK(v2[3] == 2000000000);
}
}
// test for named binding
TEST_CASE_METHOD(common_tests, "Named parameters", "[core][use][named-params]")
{
soci::session sql(backEndFactory_, connectString_);
{
auto_table_creator tableCreator(tc_.table_creator_1(sql));
int i1 = 7;
int i2 = 8;
// verify the exception is thrown if both by position
// and by name use elements are specified
try
{
sql << "insert into soci_test(i1, i2) values(:i1, :i2)",
use(i1, "i1"), use(i2);
FAIL("expected exception not thrown");
}
catch (soci_error const& e)
{
CHECK(e.get_error_message() ==
"Binding for use elements must be either by position "
"or by name.");
}
// normal test
sql << "insert into soci_test(i1, i2) values(:i1, :i2)",
use(i1, "i1"), use(i2, "i2");
i1 = 0;
i2 = 0;
sql << "select i1, i2 from soci_test", into(i1), into(i2);
CHECK(i1 == 7);
CHECK(i2 == 8);
i2 = 0;
sql << "select i2 from soci_test where i1 = :i1", into(i2), use(i1);
CHECK(i2 == 8);
sql << "delete from soci_test";
// test vectors
std::vector<int> v1;
v1.push_back(1);
v1.push_back(2);
v1.push_back(3);
std::vector<int> v2;
v2.push_back(4);
v2.push_back(5);
v2.push_back(6);
sql << "insert into soci_test(i1, i2) values(:i1, :i2)",
use(v1, "i1"), use(v2, "i2");
sql << "select i2, i1 from soci_test order by i1 desc",
into(v1), into(v2);
CHECK(v1.size() == 3);
CHECK(v2.size() == 3);
CHECK(v1[0] == 6);
CHECK(v1[1] == 5);
CHECK(v1[2] == 4);
CHECK(v2[0] == 3);
CHECK(v2[1] == 2);
CHECK(v2[2] == 1);
}
}
TEST_CASE_METHOD(common_tests, "Named parameters with similar names", "[core][use][named-params]")
{
// Verify parsing of parameters with similar names,
// where one name is part of the other, etc.
// https://github.com/SOCI/soci/issues/26
soci::session sql(backEndFactory_, connectString_);
{
auto_table_creator tableCreator(tc_.table_creator_1(sql));
std::string passwd("abc");
std::string passwd_clear("clear");
SECTION("unnamed")
{
sql << "INSERT INTO soci_test(str,name) VALUES(:passwd_clear, :passwd)",
soci::use(passwd), soci::use(passwd_clear);
}
SECTION("same order")
{
sql << "INSERT INTO soci_test(str,name) VALUES(:passwd_clear, :passwd)",
soci::use(passwd_clear, "passwd_clear"), soci::use(passwd, "passwd");
}
SECTION("reversed order")
{
sql << "INSERT INTO soci_test(str,name) VALUES(:passwd_clear, :passwd)",
soci::use(passwd, "passwd"), soci::use(passwd_clear, "passwd_clear");
}
// TODO: Allow binding the same varibale multiple times
// SECTION("one for multiple placeholders")
// {
// sql << "INSERT INTO soci_test(str,name) VALUES(:passwd, :passwd)",
// soci::use(passwd, "passwd");
// }
}
}
// transaction test
TEST_CASE_METHOD(common_tests, "Transactions", "[core][transaction]")
{
soci::session sql(backEndFactory_, connectString_);
if (!tc_.has_transactions_support(sql))
{
WARN("Transactions not supported by the database, skipping the test.");
return;
}
auto_table_creator tableCreator(tc_.table_creator_1(sql));
int count;
sql << "select count(*) from soci_test", into(count);
CHECK(count == 0);
{
transaction tr(sql);
sql << "insert into soci_test (id, name) values(1, 'John')";
sql << "insert into soci_test (id, name) values(2, 'Anna')";
sql << "insert into soci_test (id, name) values(3, 'Mike')";
tr.commit();
}
{
transaction tr(sql);
sql << "select count(*) from soci_test", into(count);
CHECK(count == 3);
sql << "insert into soci_test (id, name) values(4, 'Stan')";
sql << "select count(*) from soci_test", into(count);
CHECK(count == 4);
tr.rollback();
sql << "select count(*) from soci_test", into(count);
CHECK(count == 3);
}
{
transaction tr(sql);
sql << "delete from soci_test";
sql << "select count(*) from soci_test", into(count);
CHECK(count == 0);
tr.rollback();
sql << "select count(*) from soci_test", into(count);
CHECK(count == 3);
}
{
// additional test for detection of double commit
transaction tr(sql);
tr.commit();
try
{
tr.commit();
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
CHECK(e.get_error_message() ==
"The transaction object cannot be handled twice.");
}
}
}
std::tm generate_tm()
{
std::tm t = std::tm();
t.tm_year = 105;
t.tm_mon = 10;
t.tm_mday = 15;
t.tm_hour = 22;
t.tm_min = 14;
t.tm_sec = 17;
return t;
}
// test of use elements with indicators
TEST_CASE_METHOD(common_tests, "Use with indicators", "[core][use][indicator]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
indicator ind1 = i_ok;
indicator ind2 = i_ok;
indicator ind3 = i_ok;
int id = 1;
int val = 10;
std::tm tm_gen = generate_tm();
char const* insert = "insert into soci_test(id, val, tm) values(:id, :val, :tm)";
sql << insert, use(id, ind1), use(val, ind2), use(tm_gen, ind3);
id = 2;
val = 11;
ind2 = i_null;
std::tm tm = std::tm();
ind3 = i_null;
sql << "insert into soci_test(id, val, tm) values(:id, :val, :tm)",
use(id, ind1), use(val, ind2), use(tm, ind3);
sql << "select val from soci_test where id = 1", into(val, ind2);
CHECK(ind2 == i_ok);
CHECK(val == 10);
sql << "select val, tm from soci_test where id = 2", into(val, ind2), into(tm, ind3);
CHECK(ind2 == i_null);
CHECK(ind3 == i_null);
std::vector<int> ids;
ids.push_back(3);
ids.push_back(4);
ids.push_back(5);
std::vector<int> vals;
vals.push_back(12);
vals.push_back(13);
vals.push_back(14);
std::vector<indicator> inds;
inds.push_back(i_ok);
inds.push_back(i_null);
inds.push_back(i_ok);
sql << "insert into soci_test(id, val) values(:id, :val)",
use(ids), use(vals, inds);
ids.resize(5);
vals.resize(5);
sql << "select id, val from soci_test order by id desc",
into(ids), into(vals, inds);
CHECK(ids.size() == 5);
CHECK(ids[0] == 5);
CHECK(ids[1] == 4);
CHECK(ids[2] == 3);
CHECK(ids[3] == 2);
CHECK(ids[4] == 1);
CHECK(inds.size() == 5);
CHECK(inds[0] == i_ok);
CHECK(inds[1] == i_null);
CHECK(inds[2] == i_ok);
CHECK(inds[3] == i_null);
CHECK(inds[4] == i_ok);
CHECK(vals.size() == 5);
CHECK(vals[0] == 14);
CHECK(vals[2] == 12);
CHECK(vals[4] == 10);
}
TEST_CASE_METHOD(common_tests, "Numeric round trip", "[core][float]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
double d1 = 0.003958,
d2;
sql << "insert into soci_test(num76) values (:d1)", use(d1);
sql << "select num76 from soci_test", into(d2);
// The numeric value should make the round trip unchanged, we really want
// to use exact comparisons here.
ASSERT_EQUAL_EXACT(d1, d2);
// test negative doubles too
sql << "delete from soci_test";
d1 = -d1;
sql << "insert into soci_test(num76) values (:d1)", use(d1);
sql << "select num76 from soci_test", into(d2);
ASSERT_EQUAL_EXACT(d1, d2);
}
// test for bulk fetch with single use
TEST_CASE_METHOD(common_tests, "Bulk fetch with single use", "[core][bulk]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
sql << "insert into soci_test(name, id) values('john', 1)";
sql << "insert into soci_test(name, id) values('george', 2)";
sql << "insert into soci_test(name, id) values('anthony', 1)";
sql << "insert into soci_test(name, id) values('marc', 3)";
sql << "insert into soci_test(name, id) values('julian', 1)";
int code = 1;
std::vector<std::string> names(10);
sql << "select name from soci_test where id = :id order by name",
into(names), use(code);
CHECK(names.size() == 3);
CHECK(names[0] == "anthony");
CHECK(names[1] == "john");
CHECK(names[2] == "julian");
}
// test for basic logging support
TEST_CASE_METHOD(common_tests, "Basic logging support", "[core][logging]")
{
soci::session sql(backEndFactory_, connectString_);
sql.set_query_context_logging_mode(log_context::always);
std::ostringstream log;
sql.set_log_stream(&log);
try
{
sql << "drop table soci_test1";
}
catch (...) {}
CHECK(sql.get_last_query() == "drop table soci_test1");
CHECK(sql.get_last_query_context() == "");
sql.set_log_stream(NULL);
{
auto_table_creator tableCreator(tc_.table_creator_1(sql));
int id = 1;
std::string name = "b";
sql << "insert into soci_test (name,id) values (:name,:id)", use(name, "name"), use(id, "id");
CHECK(sql.get_last_query() == "insert into soci_test (name,id) values (:name,:id)");
CHECK(sql.get_last_query_context() == R"(:name="b", :id=1)");
statement stmt = (sql.prepare << "insert into soci_test(name, id) values (:name, :id)");
{
id = 5;
name = "alice";
stmt.exchange(use(name, "name"));
stmt.exchange(use(id, "id"));
stmt.define_and_bind();
stmt.execute(true);
stmt.bind_clean_up();
CHECK(sql.get_last_query() == "insert into soci_test(name, id) values (:name, :id)");
CHECK(sql.get_last_query_context() == R"(:name="alice", :id=5)");
}
{
id = 42;
name = "bob";
stmt.exchange(use(name, "name"));
stmt.exchange(use(id, "id"));
stmt.define_and_bind();
stmt.execute(true);
stmt.bind_clean_up();
CHECK(sql.get_last_query() == "insert into soci_test(name, id) values (:name, :id)");
CHECK(sql.get_last_query_context() == R"(:name="bob", :id=42)");
}
// Suppress bogus MSVC warnings about unrecognized escape sequences in
// the raw strings below.
SOCI_MSVC_WARNING_SUPPRESS(4129)
try {
sql << "insert into soci_test (dummy, id) values (:dummy, :id)", use(name, "dummy"), use(id, "id");
} catch (const soci_error &e) {
REQUIRE_THAT(e.what(),
Catch::Matches(
R"re((.|\n)+ while (preparing|executing) "insert into soci_test \(dummy, id\) values \(:dummy, :id\)" with :dummy="bob", :id=42\.)re"
)
);
}
CHECK(sql.get_last_query() == "insert into soci_test (dummy, id) values (:dummy, :id)");
CHECK(sql.get_last_query_context() == R"(:dummy="bob", :id=42)");
// on_error mode
sql.set_query_context_logging_mode(log_context::on_error);
sql << "insert into soci_test (name, id) values (:name, :id)", use(name, "name"), use(id, "id");
CHECK(sql.get_last_query_context() == "");
try {
sql << "insert into soci_test (dummy, id) values (:dummy, :id)", use(name, "dummy"), use(id, "id");
} catch (const soci_error &e) {
REQUIRE_THAT(e.what(),
Catch::Matches(
R"re((.|\n)+ while (preparing|executing) "insert into soci_test \(dummy, id\) values \(:dummy, :id\)" with :dummy="bob", :id=42\.)re"
)
);
}
CHECK(sql.get_last_query() == "insert into soci_test (dummy, id) values (:dummy, :id)");
CHECK(sql.get_last_query_context() == R"(:dummy="bob", :id=42)");
// never mode
sql.set_query_context_logging_mode(log_context::never);
sql << "insert into soci_test (name, id) values (:name, :id)", use(name, "name"), use(id, "id");
CHECK(sql.get_last_query_context() == "");
try {
sql << "insert into soci_test (dummy, id) values (:dummy, :id)", use(name, "dummy"), use(id, "id");
} catch (const soci_error &e) {
REQUIRE_THAT(e.what(),
Catch::Matches(
R"re((.|\n)+ while (preparing|executing) "insert into soci_test \(dummy, id\) values \(:dummy, :id\)"\.)re"
)
);
}
SOCI_MSVC_WARNING_RESTORE(4129)
CHECK(sql.get_last_query() == "insert into soci_test (dummy, id) values (:dummy, :id)");
CHECK(sql.get_last_query_context() == "");
}
sql.set_log_stream(&log);
try
{
sql << "drop table soci_test3";
}
catch (...) {}
CHECK(sql.get_last_query() == "drop table soci_test3");
CHECK(log.str() ==
"drop table soci_test1\n"
"drop table soci_test3\n");
}
TEST_CASE("soci_error is nothrow", "[core][exception][nothrow]")
{
CHECK(std::is_nothrow_copy_assignable<soci_error>::value == true);
CHECK(std::is_nothrow_copy_constructible<soci_error>::value == true);
CHECK(std::is_nothrow_destructible<soci_error>::value == true);
}
#ifdef SOCI_HAVE_CXX17
// test for handling NULL values with std::optional
// (both into and use)
TEST_CASE_METHOD(common_tests, "NULL with std optional", "[core][null]")
{
soci::session sql(backEndFactory_, connectString_);
// create and populate the test table
auto_table_creator tableCreator0(tc_.table_creator_1(sql));
{
sql << "insert into soci_test(val) values(7)";
{
// verify non-null value is fetched correctly
std::optional<int> opt;
sql << "select val from soci_test", into(opt);
CHECK(opt.has_value());
CHECK(opt.value() == 7);
// indicators can be used with optional
// (although that's just a consequence of implementation,
// not an intended feature - but let's test it anyway)
indicator ind;
opt.reset();
sql << "select val from soci_test", into(opt, ind);
CHECK(opt.has_value());
CHECK(opt.value() == 7);
CHECK(ind == i_ok);
// verify null value is fetched correctly
sql << "select i1 from soci_test", into(opt);
CHECK(opt.has_value() == false);
// and with indicator
opt = 5;
sql << "select i1 from soci_test", into(opt, ind);
CHECK(opt.has_value() == false);
CHECK(ind == i_null);
// verify non-null is inserted correctly
opt = 3;
sql << "update soci_test set val = :v", use(opt);
int j = 0;
sql << "select val from soci_test", into(j);
CHECK(j == 3);
// verify null is inserted correctly
opt.reset();
sql << "update soci_test set val = :v", use(opt);
ind = i_ok;
sql << "select val from soci_test", into(j, ind);
CHECK(ind == i_null);
}
// vector tests (select)
{
sql << "delete from soci_test";
// simple readout of non-null data
sql << "insert into soci_test(id, val, str) values(1, 5, \'abc\')";
sql << "insert into soci_test(id, val, str) values(2, 6, \'def\')";
sql << "insert into soci_test(id, val, str) values(3, 7, \'ghi\')";
sql << "insert into soci_test(id, val, str) values(4, 8, null)";
sql << "insert into soci_test(id, val, str) values(5, 9, \'mno\')";
std::vector<std::optional<int> > v(10);
sql << "select val from soci_test order by val", into(v);
CHECK(v.size() == 5);
CHECK(v[0].has_value());
CHECK(v[0].value() == 5);
CHECK(v[1].has_value());
CHECK(v[1].value() == 6);
CHECK(v[2].has_value());
CHECK(v[2].value() == 7);
CHECK(v[3].has_value());
CHECK(v[3].value() == 8);
CHECK(v[4].has_value());
CHECK(v[4].value() == 9);
// readout of nulls
sql << "update soci_test set val = null where id = 2 or id = 4";
std::vector<int> ids(5);
sql << "select id, val from soci_test order by id", into(ids), into(v);
CHECK(v.size() == 5);
CHECK(ids.size() == 5);
CHECK(v[0].has_value());
CHECK(v[0].value() == 5);
CHECK(v[1].has_value() == false);
CHECK(v[2].has_value());
CHECK(v[2].value() == 7);
CHECK(v[3].has_value() == false);
CHECK(v[4].has_value());
CHECK(v[4].value() == 9);
// readout with statement preparation
int id = 1;
ids.resize(3);
v.resize(3);
statement st = (sql.prepare <<
"select id, val from soci_test order by id", into(ids), into(v));
st.execute();
while (st.fetch())
{
for (std::size_t i = 0; i != v.size(); ++i)
{
CHECK(id == ids[i]);
if (id == 2 || id == 4)
{
CHECK(v[i].has_value() == false);
}
else
{
CHECK(v[i].has_value());
CHECK(v[i].value() == id + 4);
}
++id;
}
ids.resize(3);
v.resize(3);
}
CHECK(id == 6);
}
// and why not stress iterators and the dynamic binding, too!
{
rowset<row> rs = (sql.prepare << "select id, val, str from soci_test order by id");
rowset<row>::const_iterator it = rs.begin();
CHECK(it != rs.end());
row const& r1 = (*it);
CHECK(r1.size() == 3);
// Note: for the reason of differences between number(x,y) type and
// binary representation of integers, the following commented assertions
// do not work for Oracle.
// The problem is that for this single table the data type used in Oracle
// table creator for the id column is number(10,0),
// which allows to insert all int values.
// On the other hand, the column description scheme used in the Oracle
// backend figures out that the natural type for such a column
// is eUnsignedInt - this makes the following assertions fail.
// Other database backends (like PostgreSQL) use other types like int
// and this not only allows to insert all int values (obviously),
// but is also recognized as int (obviously).
// There is a similar problem with stream-like extraction,
// where internally get<T> is called and the type mismatch is detected
// for the id column - that's why the code below skips this column
// and tests the remaining column only.
//CHECK(r1.get_properties(0).get_data_type() == dt_integer);
//CHECK(r1.get_properties(0).get_db_type() == db_int32);
CHECK(r1.get_properties(1).get_data_type() == dt_integer);
CHECK(r1.get_properties(1).get_db_type() == db_int32);
CHECK(r1.get_properties(2).get_data_type() == dt_string);
CHECK(r1.get_properties(2).get_db_type() == db_string);
//CHECK(r1.get<int>(0) == 1);
CHECK(r1.get<int>(1) == 5);
CHECK(r1.get<std::string>(2) == "abc");
CHECK(r1.get<std::optional<int> >(1).has_value());
CHECK(r1.get<std::optional<int> >(1).value() == 5);
CHECK(r1.get<std::optional<std::string> >(2).has_value());
CHECK(r1.get<std::optional<std::string> >(2).value() == "abc");
++it;
row const& r2 = (*it);
CHECK(r2.size() == 3);
// CHECK(r2.get_properties(0).get_data_type() == dt_integer);
// CHECK(r2.get_properties(0).get_db_type() == db_int32);
CHECK(r2.get_properties(1).get_data_type() == dt_integer);
CHECK(r2.get_properties(1).get_db_type() == db_int32);
CHECK(r2.get_properties(2).get_data_type() == dt_string);
CHECK(r2.get_properties(2).get_db_type() == db_string);
//CHECK(r2.get<int>(0) == 2);
try
{
// expect exception here, this is NULL value
(void)r1.get<int>(1);
FAIL("expected exception not thrown");
}
catch (soci_error const &) {}
// but we can read it as optional
CHECK(r2.get<std::optional<int> >(1).has_value() == false);
// stream-like data extraction
++it;
row const &r3 = (*it);
std::optional<int> io;
std::optional<std::string> so;
r3.skip(); // move to val and str columns
r3 >> io >> so;
CHECK(io.has_value());
CHECK(io.value() == 7);
CHECK(so.has_value());
CHECK(so.value() == "ghi");
++it;
row const &r4 = (*it);
r3.skip(); // move to val and str columns
r4 >> io >> so;
CHECK(io.has_value() == false);
CHECK(so.has_value() == false);
}
// inserts of non-null const data
{
sql << "delete from soci_test";
const int id = 10;
const std::optional<int> val = 11;
sql << "insert into soci_test(id, val) values(:id, :val)",
use(id, "id"),
use(val, "val");
int sum;
sql << "select sum(val) from soci_test", into(sum);
CHECK(sum == 11);
}
// bulk inserts of non-null data
{
sql << "delete from soci_test";
std::vector<int> ids;
std::vector<std::optional<int> > v;
ids.push_back(10); v.push_back(20);
ids.push_back(11); v.push_back(21);
ids.push_back(12); v.push_back(22);
ids.push_back(13); v.push_back(23);
sql << "insert into soci_test(id, val) values(:id, :val)",
use(ids, "id"), use(v, "val");
int sum;
sql << "select sum(val) from soci_test", into(sum);
CHECK(sum == 86);
// bulk inserts of some-null data
sql << "delete from soci_test";
v[2].reset();
v[3].reset();
sql << "insert into soci_test(id, val) values(:id, :val)",
use(ids, "id"), use(v, "val");
sql << "select sum(val) from soci_test", into(sum);
CHECK(sum == 41);
}
// bulk inserts of non-null data with const vector
{
sql << "delete from soci_test";
std::vector<int> ids;
std::vector<std::optional<int> > v;
ids.push_back(10); v.push_back(20);
ids.push_back(11); v.push_back(21);
ids.push_back(12); v.push_back(22);
ids.push_back(13); v.push_back(23);
const std::vector<int>& cref_ids = ids;
const std::vector<std::optional<int> >& cref_v = v;
sql << "insert into soci_test(id, val) values(:id, :val)",
use(cref_ids, "id"),
use(cref_v, "val");
int sum;
sql << "select sum(val) from soci_test", into(sum);
CHECK(sum == 86);
// bulk inserts of some-null data
sql << "delete from soci_test";
v[2].reset();
v[3].reset();
sql << "insert into soci_test(id, val) values(:id, :val)",
use(cref_ids, "id"),
use(cref_v, "val");
sql << "select sum(val) from soci_test", into(sum);
CHECK(sum == 41);
}
// composability with user conversions
{
sql << "delete from soci_test";
std::optional<MyInt> omi1;
std::optional<MyInt> omi2;
omi1 = MyInt(125);
omi2.reset();
sql << "insert into soci_test(id, val) values(:id, :val)",
use(omi1), use(omi2);
sql << "select id, val from soci_test", into(omi2), into(omi1);
CHECK(omi1.has_value() == false);
CHECK(omi2.has_value());
CHECK(omi2.value().get() == 125);
}
// use with const optional and user conversions
{
sql << "delete from soci_test";
std::optional<MyInt> omi1;
std::optional<MyInt> omi2;
omi1 = MyInt(125);
omi2.reset();
std::optional<MyInt> const & comi1 = omi1;
std::optional<MyInt> const & comi2 = omi2;
sql << "insert into soci_test(id, val) values(:id, :val)",
use(comi1), use(comi2);
sql << "select id, val from soci_test", into(omi2), into(omi1);
CHECK(omi1.has_value() == false);
CHECK(omi2.has_value());
CHECK(omi2.value().get() == 125);
}
// use with rowset and table containing null values
{
auto_table_creator tableCreator(tc_.table_creator_1(sql));
sql << "insert into soci_test(id, val) values(1, 10)";
sql << "insert into soci_test(id, val) values(2, 11)";
sql << "insert into soci_test(id, val) values(3, NULL)";
sql << "insert into soci_test(id, val) values(4, 13)";
rowset<std::optional<int> > rs = (sql.prepare <<
"select val from soci_test order by id asc");
// 1st row
rowset<std::optional<int> >::const_iterator pos = rs.begin();
CHECK((*pos).has_value());
CHECK(10 == (*pos).value());
// 2nd row
++pos;
CHECK((*pos).has_value());
CHECK(11 == (*pos).value());
// 3rd row
++pos;
CHECK((*pos).has_value() == false);
// 4th row
++pos;
CHECK((*pos).has_value());
CHECK(13 == (*pos).value());
}
// inserting using an i_null indicator with a std::optional should
// insert null, even if the optional is valid, just as with standard
// types
{
auto_table_creator tableCreator(tc_.table_creator_1(sql));
{
indicator ind = i_null;
std::optional<int> v1(10);
sql << "insert into soci_test(id, val) values(1, :val)",
use(v1, ind);
}
// verify the value is fetched correctly as null
{
indicator ind;
std::optional<int> opt;
ind = i_truncated;
opt = 0;
sql << "select val from soci_test where id = 1", into(opt, ind);
CHECK(ind == i_null);
CHECK(!opt.has_value());
}
}
// prepared statement inserting non-null and null values alternatively
// (without passing an explicit indicator)
{
auto_table_creator tableCreator(tc_.table_creator_1(sql));
{
int id;
std::optional<int> val;
statement st = (sql.prepare
<< "insert into soci_test(id, val) values (:id, :val)",
use(id), use(val));
id = 1;
val = 10;
st.execute(true);
id = 2;
val = std::optional<int>();
st.execute(true);
id = 3;
val = 11;
st.execute(true);
}
// verify values are fetched correctly
{
indicator ind;
std::optional<int> opt;
ind = i_truncated;
opt = 0;
sql << "select val from soci_test where id = 1", into(opt, ind);
CHECK(ind == i_ok);
CHECK(opt.has_value());
CHECK(opt.value() == 10);
ind = i_truncated;
opt = 0;
sql << "select val from soci_test where id = 2", into(opt, ind);
CHECK(ind == i_null);
CHECK(!opt.has_value());
ind = i_truncated;
opt = 0;
sql << "select val from soci_test where id = 3", into(opt, ind);
CHECK(ind == i_ok);
REQUIRE(opt.has_value());
CHECK(opt.value() == 11);
}
}
}
}
#endif
// connection and reconnection tests
TEST_CASE_METHOD(common_tests, "Connection and reconnection", "[core][connect]")
{
{
// empty session
soci::session sql;
CHECK(!sql.is_connected());
// idempotent:
sql.close();
try
{
sql.reconnect();
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
CHECK(e.get_error_message() ==
"Cannot reconnect without previous connection.");
}
// open from empty session
sql.open(backEndFactory_, connectString_);
CHECK(sql.is_connected());
sql.close();
CHECK(!sql.is_connected());
// reconnecting from closed session
sql.reconnect();
CHECK(sql.is_connected());
// opening already connected session
try
{
sql.open(backEndFactory_, connectString_);
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
CHECK(e.get_error_message() ==
"Cannot open already connected session.");
}
CHECK(sql.is_connected());
sql.close();
// open from closed
sql.open(backEndFactory_, connectString_);
CHECK(sql.is_connected());
// reconnect from already connected session
sql.reconnect();
CHECK(sql.is_connected());
}
{
soci::session sql;
try
{
sql << "this statement cannot execute";
FAIL("expected exception not thrown");
}
catch (soci_error const &e)
{
CHECK(e.get_error_message() ==
"Session is not connected.");
}
}
{
// check move semantics of session
#if __GNUC__ >= 13 || defined (__clang__)
SOCI_GCC_WARNING_SUPPRESS(self-move)
#endif
soci::session sql_0;
soci::session sql_1 = std::move(sql_0);
CHECK(!sql_0.is_connected());
CHECK(!sql_1.is_connected());
sql_0.open(backEndFactory_, connectString_);
CHECK(sql_0.is_connected());
CHECK(sql_0.get_backend());
sql_1 = std::move(sql_0);
CHECK(!sql_0.is_connected());
CHECK(!sql_0.get_backend());
CHECK(sql_1.is_connected());
CHECK(sql_1.get_backend());
sql_1 = std::move(sql_1);
CHECK(sql_1.is_connected());
CHECK(sql_1.get_backend());
#if __GNUC__ >= 13 || defined (__clang__)
SOCI_GCC_WARNING_RESTORE(self-move)
#endif
}
}
// connection pool - simple sequential test, no multiple threads
TEST_CASE_METHOD(common_tests, "Connection pool", "[core][connection][pool]")
{
// phase 1: preparation
const size_t pool_size = 10;
connection_pool pool(pool_size);
for (std::size_t i = 0; i != pool_size; ++i)
{
session & sql = pool.at(i);
sql.open(backEndFactory_, connectString_);
}
// phase 2: usage
for (std::size_t i = 0; i != pool_size; ++i)
{
// poor man way to lease more than one connection
soci::session sql_unused1(pool);
soci::session sql(pool);
soci::session sql_unused2(pool);
{
auto_table_creator tableCreator(tc_.table_creator_1(sql));
char c('a');
sql << "insert into soci_test(c) values(:c)", use(c);
sql << "select c from soci_test", into(c);
CHECK(c == 'a');
}
}
}
// Issue 66 - test query transformation callback feature
static std::string no_op_transform(std::string query)
{
return query;
}
static std::string lower_than_g(std::string query)
{
return query + " WHERE c < 'g'";
}
struct where_condition
{
where_condition(std::string const& where)
: where_(where)
{}
std::string operator()(std::string const& query) const
{
return query + " WHERE " + where_;
}
std::string where_;
};
void run_query_transformation_test(test_context_base const& tc, session& sql)
{
// create and populate the test table
auto_table_creator tableCreator(tc.table_creator_1(sql));
for (char c = 'a'; c <= 'z'; ++c)
{
sql << "insert into soci_test(c) values(\'" << c << "\')";
}
char const* query = "select count(*) from soci_test";
// free function, no-op
{
sql.set_query_transformation(no_op_transform);
int count;
sql << query, into(count);
CHECK(count == 'z' - 'a' + 1);
}
// free function
{
sql.set_query_transformation(lower_than_g);
int count;
sql << query, into(count);
CHECK(count == 'g' - 'a');
}
// function object with state
{
sql.set_query_transformation(where_condition("c > 'g' AND c < 'j'"));
int count = 0;
sql << query, into(count);
CHECK(count == 'j' - 'h');
count = 0;
sql.set_query_transformation(where_condition("c > 's' AND c <= 'z'"));
sql << query, into(count);
CHECK(count == 'z' - 's');
}
#if 0
// lambda is just presented as an example to curious users
{
sql.set_query_transformation(
[](std::string const& query) {
return query + " WHERE c > 'g' AND c < 'j'";
});
int count = 0;
sql << query, into(count);
CHECK(count == 'j' - 'h');
}
#endif
// prepared statements
// constant effect (pre-prepare set transformation)
{
// set transformation after statement is prepared
sql.set_query_transformation(lower_than_g);
// prepare statement
int count;
statement st = (sql.prepare << query, into(count));
// observe transformation effect
st.execute(true);
CHECK(count == 'g' - 'a');
// reset transformation
sql.set_query_transformation(no_op_transform);
// observe the same transformation, no-op set above has no effect
count = 0;
st.execute(true);
CHECK(count == 'g' - 'a');
}
// no effect (post-prepare set transformation)
{
// reset
sql.set_query_transformation(no_op_transform);
// prepare statement
int count;
statement st = (sql.prepare << query, into(count));
// set transformation after statement is prepared
sql.set_query_transformation(lower_than_g);
// observe no effect of WHERE clause injection
st.execute(true);
CHECK(count == 'z' - 'a' + 1);
}
}
TEST_CASE_METHOD(common_tests, "Query transformation", "[core][query-transform]")
{
soci::session sql(backEndFactory_, connectString_);
run_query_transformation_test(tc_, sql);
}
TEST_CASE_METHOD(common_tests, "Query transformation with connection pool", "[core][query-transform][pool]")
{
// phase 1: preparation
const size_t pool_size = 10;
connection_pool pool(pool_size);
for (std::size_t i = 0; i != pool_size; ++i)
{
session & sql = pool.at(i);
sql.open(backEndFactory_, connectString_);
}
soci::session sql(pool);
run_query_transformation_test(tc_, sql);
}
// Originally, submitted to SQLite3 backend and later moved to common test.
// Test commit b394d039530f124802d06c3b1a969c3117683152
// Author: Mika Fischer <mika.fischer@zoopnet.de>
// Date: Thu Nov 17 13:28:07 2011 +0100
// Implement get_affected_rows for SQLite3 backend
TEST_CASE_METHOD(common_tests, "Get affected rows", "[core][affected-rows]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_4(sql));
if (!tableCreator.get())
{
WARN("test get_affected_rows skipped (function not implemented)");
return;
}
for (int i = 0; i != 10; i++)
{
sql << "insert into soci_test(val) values(:val)", use(i);
}
int step = 2;
statement st1 = (sql.prepare <<
"update soci_test set val = val + :step where val = 5", use(step, "step"));
st1.execute(true);
CHECK(st1.get_affected_rows() == 1);
// attempts to run the query again, no rows should be affected
st1.execute(true);
CHECK(st1.get_affected_rows() == 0);
statement st2 = (sql.prepare <<
"update soci_test set val = val + 1");
st2.execute(true);
CHECK(st2.get_affected_rows() == 10);
statement st3 = (sql.prepare <<
"delete from soci_test where val <= 5");
st3.execute(true);
CHECK(st3.get_affected_rows() == 5);
statement st4 = (sql.prepare <<
"update soci_test set val = val + 1");
st4.execute(true);
CHECK(st4.get_affected_rows() == 5);
std::vector<int> v(5, 0);
for (std::size_t i = 0; i < v.size(); ++i)
{
v[i] = (7 + static_cast<int>(i));
}
// test affected rows for bulk operations.
statement st5 = (sql.prepare <<
"delete from soci_test where val = :v", use(v));
st5.execute(true);
CHECK(st5.get_affected_rows() == 5);
if (tc_.has_partial_update_bug())
{
WARN("Skipping partial update test due to a known backend bug");
return;
}
std::vector<std::string> w(2, "1");
w[1] = "a"; // this invalid value may cause an exception.
statement st6 = (sql.prepare <<
"insert into soci_test(val) values(:val)", use(w));
CHECK_THROWS_AS(st6.execute(true), soci_error);
CHECK(st6.get_affected_rows() == 1);
// confirm the partial insertion.
int val = 0;
sql << "select count(val) from soci_test", into(val);
CHECK(val == 1);
}
// test fix for: Backend is not set properly with connection pool (pull #5)
TEST_CASE_METHOD(common_tests, "Backend with connection pool", "[core][pool]")
{
const size_t pool_size = 1;
connection_pool pool(pool_size);
for (std::size_t i = 0; i != pool_size; ++i)
{
session & sql = pool.at(i);
sql.open(backEndFactory_, connectString_);
}
soci::session sql(pool);
sql.reconnect();
sql.begin(); // no crash expected
}
// test fix for: Session from connection pool not set backend properly when call open
TEST_CASE_METHOD(common_tests, "Session from connection pool call open reset backend", "[core][pool]")
{
const size_t pool_size = 1;
connection_pool pool(pool_size);
soci::session sql(pool);
sql.open(backEndFactory_, connectString_);
REQUIRE_NOTHROW( sql.begin() );
}
// issue 67 - Allocated statement backend memory leaks on exception
// If the test runs under memory debugger and it passes, then
// soci::details::statement_impl::backEnd_ must not leak
TEST_CASE_METHOD(common_tests, "Backend memory leak", "[core][leak]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
try
{
rowset<row> rs1 = (sql.prepare << "select * from soci_testX");
// TODO: On Linux, no exception thrown; neither from prepare, nor from execute?
// soci_odbc_test_postgresql:
// /home/travis/build/SOCI/soci/src/core/test/common-tests.h:3505:
// void soci::tests::common_tests::test_issue67(): Assertion `!"exception expected"' failed.
//FAIL("exception expected"); // relax temporarily
}
catch (soci_error const &e)
{
(void)e;
}
}
// issue 154 - Calling undefine_and_bind and then define_and_bind causes a leak.
// If the test runs under memory debugger and it passes, then
// soci::details::standard_use_type_backend and vector_use_type_backend must not leak
TEST_CASE_METHOD(common_tests, "Bind memory leak", "[core][leak]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
sql << "insert into soci_test(id) values (1)";
{
int id = 1;
int val = 0;
statement st(sql);
st.exchange(use(id));
st.alloc();
st.prepare("select id from soci_test where id = :1");
st.define_and_bind();
st.undefine_and_bind();
st.exchange(soci::into(val));
st.define_and_bind();
st.execute(true);
CHECK(val == 1);
}
// vector variation
{
std::vector<int> ids(1, 2);
std::vector<int> vals(1, 1);
int val = 0;
statement st(sql);
st.exchange(use(ids));
st.alloc();
st.prepare("insert into soci_test(id, val) values (:1, :2)");
st.define_and_bind();
st.undefine_and_bind();
st.exchange(use(vals));
st.define_and_bind();
st.execute(true);
sql << "select val from soci_test where id = 2", into(val);
CHECK(val == 1);
}
}
// Helper functions for issue 723 test
namespace {
// Creates a std::tm with UK DST threshold 31st March 2019 01:00:00
std::tm create_uk_dst_threshold()
{
std::tm dst_threshold = std::tm();
dst_threshold.tm_year = 119; // 2019
dst_threshold.tm_mon = 2; // March
dst_threshold.tm_mday = 31; // 31st
dst_threshold.tm_hour = 1; // 1AM
dst_threshold.tm_min = 0;
dst_threshold.tm_sec = 0;
dst_threshold.tm_isdst = -1; // Determine DST from OS
return dst_threshold;
}
// Sanity check to verify that the DST threshold causes mktime to modify
// the input hour (the condition that causes issue 723).
// This check really shouldn't fail but since it is the basis of the test
// it is worth verifying.
bool does_mktime_modify_input_hour()
{
std::tm dst_threshold = create_uk_dst_threshold();
std::tm verify_mktime = dst_threshold;
mktime(&verify_mktime);
return verify_mktime.tm_hour != dst_threshold.tm_hour;
}
// We don't have any way to change the time zone for just this process
// under MSW, so we just skip this test when not running in UK time-zone
// there. Under Unix systems we can however switch to UK time zone
// temporarily by just setting the TZ environment variable.
#ifndef _WIN32
// Helper RAII class changing time zone to the specified one in its ctor
// and restoring the original time zone in its dtor.
class tz_setter
{
public:
explicit tz_setter(const std::string& time_zone)
{
char* tz_value = getenv("TZ");
if (tz_value != NULL)
{
original_tz_value_ = tz_value;
}
setenv("TZ", time_zone.c_str(), 1 /* overwrite */);
tzset();
}
~tz_setter()
{
// Restore TZ value so other tests aren't affected.
if (original_tz_value_.empty())
unsetenv("TZ");
else
setenv("TZ", original_tz_value_.c_str(), 1);
tzset();
}
private:
std::string original_tz_value_;
};
#endif // !_WIN32
}
// Issue 723 - std::tm timestamp problem with DST.
// When reading date/time on Daylight Saving Time threshold, hour value is
// silently changed.
TEST_CASE_METHOD(common_tests, "std::tm timestamp problem with DST", "[core][into][tm][dst]")
{
#ifdef _WIN32
if (!does_mktime_modify_input_hour())
{
WARN("The DST test can only be run in the UK time zone, please switch to it manually.");
return;
}
#else // !_WIN32
// Set UK timezone for this test scope.
tz_setter switch_to_UK_tz("Europe/London");
if (!does_mktime_modify_input_hour())
{
WARN("Switching to the UK time zone unexpectedly failed, skipping the DST test.");
return;
}
#endif // _WIN32/!_WIN32
// Open session and create table with a date/time column.
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
// Round trip dst threshold time to database.
std::tm write_time = create_uk_dst_threshold();
sql << "insert into soci_test(tm) values(:tm)", use(write_time);
std::tm read_time = std::tm();
sql << "select tm from soci_test", soci::into(read_time);
// Check that the round trip was consistent.
std::tm dst_threshold = create_uk_dst_threshold();
CHECK(read_time.tm_year == dst_threshold.tm_year);
CHECK(read_time.tm_mon == dst_threshold.tm_mon);
CHECK(read_time.tm_mday == dst_threshold.tm_mday);
CHECK(read_time.tm_hour == dst_threshold.tm_hour);
CHECK(read_time.tm_min == dst_threshold.tm_min);
CHECK(read_time.tm_sec == dst_threshold.tm_sec);
}
TEST_CASE_METHOD(common_tests, "Insert error", "[core][insert][exception]")
{
soci::session sql(backEndFactory_, connectString_);
struct pk_table_creator : table_creator_base
{
explicit pk_table_creator(session& sql) : table_creator_base(sql)
{
// For some backends (at least Firebird), it is important to
// execute the DDL statements in a separate transaction, so start
// one here and commit it before using the new table below.
sql.begin();
sql << "create table soci_test("
"name varchar(100) not null primary key, "
"age integer not null"
")";
sql.commit();
}
} table_creator(sql);
SECTION("literal SQL queries appear in the error message")
{
sql << "insert into soci_test(name, age) values ('John', 74)";
sql << "insert into soci_test(name, age) values ('Paul', 72)";
sql << "insert into soci_test(name, age) values ('George', 72)";
try
{
// Oops, this should have been 'Ringo'
sql << "insert into soci_test(name, age) values ('John', 74)";
FAIL("exception expected on unique constraint violation not thrown");
}
catch (soci_error const &e)
{
REQUIRE_THAT(e.what(),
Catch::Contains("insert into soci_test(name, age) values ('John', 74)")
);
}
}
SECTION("SQL queries parameters appear in the error message")
{
char const* const names[] = { "John", "Paul", "George", "John", NULL };
int const ages[] = { 74, 72, 72, 74, 0 };
std::string name;
int age;
statement st = (sql.prepare <<
"insert into soci_test(name, age) values (:name, :age)",
use(name), use(age));
try
{
int const *a = ages;
for (char const* const* n = names; *n; ++n, ++a)
{
name = *n;
age = *a;
st.execute(true);
}
FAIL("exception expected on unique constraint violation with prepared statement not thrown");
}
catch (soci_error const &e)
{
// Oracle converts all parameter names to upper case internally, so
// we must check for the substring case-insensitively.
REQUIRE_THAT(e.what(),
Catch::Contains(R"(with :name="John", :age=74)", Catch::CaseSensitive::No)
);
}
}
SECTION("SQL queries vector parameters appear in the error message")
{
std::vector<std::string> names{"John", "Paul", "George", "John"};
std::vector<int> ages{74, 72, 72, 74};
statement st = (sql.prepare <<
"insert into soci_test(name, age) values (:name, :age)",
use(names), use(ages));
try
{
st.execute(true);
FAIL("exception expected on unique constraint violation with prepared bulk statement not thrown");
}
catch (soci_error const &e)
{
// Unfortunately, some backends don't provide the values here but
// just use the generic "<vector>" placeholder. Don't fail the test
// just because of that.
std::string const msg = e.what();
if (msg.find("<vector>") == std::string::npos)
{
REQUIRE_THAT(msg,
Catch::Contains(R"(with :name="John", :age=74)", Catch::CaseSensitive::No)
);
}
}
}
}
namespace
{
// This is just a helper to avoid duplicating the same code in two sections in
// the test below, it's logically part of it.
void check_for_exception_on_truncation(session& sql)
{
// As the name column has length 20, inserting a longer string into it
// shouldn't work, unless we're dealing with a database that doesn't
// respect column types at all (hello SQLite).
try
{
std::string const long_name("George Raymond Richard Martin");
sql << "insert into soci_test(name) values(:name)", use(long_name);
// If insert didn't throw, it should have at least preserved the data
// (only SQLite does this currently).
std::string name;
sql << "select name from soci_test", into(name);
CHECK(name == long_name);
}
catch (soci_error const &)
{
// Unfortunately the contents of the message differ too much between
// the backends (most give an error about value being "too long",
// Oracle says "too large" while SQL Server (via ODBC) just says that
// it "would be truncated"), so we can't really check that we received
// the right error here -- be optimistic and hope that we did.
}
}
// And another helper for the test below.
void check_for_no_truncation(session& sql, bool with_padding)
{
const std::string str20 = "exactly of length 20";
sql << "delete from soci_test";
// Also check that there is no truncation when inserting a string of
// the same length as the column size.
CHECK_NOTHROW( (sql << "insert into soci_test(name) values(:s)", use(str20)) );
std::string s;
sql << "select name from soci_test", into(s);
// Firebird can pad CHAR(N) columns when using UTF-8 encoding.
// the result will be padded to 80 bytes (UTF-8 max for 20 chars)
if (with_padding)
CHECK_EQUAL_PADDED(s, str20)
else
CHECK( s == str20 );
}
} // anonymous namespace
TEST_CASE_METHOD(common_tests, "Truncation error", "[core][insert][truncate][exception]")
{
soci::session sql(backEndFactory_, connectString_);
if (tc_.has_silent_truncate_bug(sql))
{
WARN("Database is broken and silently truncates input data.");
return;
}
SECTION("Error given for char column")
{
struct fixed_name_table_creator : table_creator_base
{
fixed_name_table_creator(session& sql)
: table_creator_base(sql)
{
sql << "create table soci_test(name char(20))";
}
} tableCreator(sql);
tc_.on_after_ddl(sql);
check_for_exception_on_truncation(sql);
// Firebird can pad CHAR(N) columns when using UTF-8 encoding.
check_for_no_truncation(sql, sql.get_backend_name() == "firebird");
}
SECTION("Error given for varchar column")
{
// Reuse one of the standard tables which has a varchar(20) column.
auto_table_creator tableCreator(tc_.table_creator_1(sql));
check_for_exception_on_truncation(sql);
check_for_no_truncation(sql, false);
}
}
TEST_CASE_METHOD(common_tests, "Blank padding", "[core][insert][exception]")
{
soci::session sql(backEndFactory_, connectString_);
if (!tc_.enable_std_char_padding(sql))
{
WARN("This backend doesn't pad CHAR(N) correctly, skipping test.");
return;
}
struct fixed_name_table_creator : table_creator_base
{
fixed_name_table_creator(session& sql)
: table_creator_base(sql)
{
sql.begin();
sql << "create table soci_test(sc char, name char(10), name2 varchar(10))";
sql.commit();
}
} tableCreator(sql);
std::string test1 = "abcde ";
std::string singleChar = "a";
sql << "insert into soci_test(sc, name,name2) values(:sc,:name,:name2)",
use(singleChar), use(test1), use(test1);
std::string sc, tchar,tvarchar;
sql << "select sc,name,name2 from soci_test",
into(sc), into(tchar), into(tvarchar);
// Firebird can pad "a" to "a " when using UTF-8 encoding.
CHECK_EQUAL_PADDED(sc, singleChar);
CHECK_EQUAL_PADDED(tchar, test1);
CHECK(tvarchar == test1);
// Check 10-space string - same as inserting empty string since spaces will
// be padded up to full size of the column.
test1 = " ";
singleChar = " ";
sql << "update soci_test set sc=:sc, name=:name, name2=:name2",
use(singleChar), use(test1), use(test1);
sql << "select sc, name,name2 from soci_test",
into(sc), into(tchar), into(tvarchar);
CHECK_EQUAL_PADDED(sc, singleChar);
CHECK_EQUAL_PADDED(tchar, test1);
CHECK(tvarchar == test1);
}
TEST_CASE_METHOD(common_tests, "Select without table", "[core][select][dummy_from]")
{
soci::session sql(backEndFactory_, connectString_);
int plus17;
sql << ("select abs(-17)" + sql.get_dummy_from_clause()),
into(plus17);
CHECK(plus17 == 17);
}
TEST_CASE_METHOD(common_tests, "String length", "[core][string][length]")
{
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
std::string s("123");
REQUIRE_NOTHROW((
sql << "insert into soci_test(str) values(:s)", use(s)
));
std::string sout;
size_t slen;
REQUIRE_NOTHROW((
sql << "select str," + tc_.sql_length("str") + " from soci_test",
into(sout), into(slen)
));
CHECK(slen == 3);
CHECK(sout.length() == 3);
CHECK(sout == s);
sql << "delete from soci_test";
std::vector<std::string> v;
v.push_back("Hello");
v.push_back("");
v.push_back("whole of varchar(20)");
REQUIRE_NOTHROW((
sql << "insert into soci_test(str) values(:s)", use(v)
));
std::vector<std::string> vout(10);
// Although none of the strings here is really null, Oracle handles the
// empty string as being null, so to avoid an error about not providing
// the indicator when retrieving a null value, we must provide it here.
std::vector<indicator> vind(10);
std::vector<unsigned int> vlen(10);
REQUIRE_NOTHROW((
sql << "select str," + tc_.sql_length("str") + " from soci_test"
" order by " + tc_.sql_length("str"),
into(vout, vind), into(vlen)
));
REQUIRE(vout.size() == 3);
REQUIRE(vlen.size() == 3);
CHECK(vlen[0] == 0);
CHECK(vout[0].length() == 0);
CHECK(vlen[1] == 5);
CHECK(vout[1].length() == 5);
CHECK(vlen[2] == 20);
CHECK(vout[2].length() == 20);
}
TEST_CASE_METHOD(common_tests, "Logger", "[core][log]")
{
// Logger class used for testing: appends all queries to the provided
// buffer.
class test_log_impl : public soci::logger_impl
{
public:
explicit test_log_impl(std::vector<std::string>& logbuf)
: m_logbuf(logbuf)
{
}
virtual void start_query(std::string const & query)
{
m_logbuf.push_back(query);
}
private:
virtual logger_impl* do_clone() const
{
return new test_log_impl(m_logbuf);
}
std::vector<std::string>& m_logbuf;
};
soci::session sql(backEndFactory_, connectString_);
auto_table_creator tableCreator(tc_.table_creator_1(sql));
soci::logger const logger_orig = sql.get_logger();
std::vector<std::string> logbuf;
sql.set_logger(new test_log_impl(logbuf));
int count;
sql << "select count(*) from soci_test", into(count);
REQUIRE( logbuf.size() == 1 );
CHECK( logbuf.front() == "select count(*) from soci_test" );
sql.set_logger(logger_orig);
}
} // namespace test_cases
// Implement test_context_common ctor here: like this, just using this class
// pulls in the tests defined in this file.
//
// These variables are defined in other files we want to force linking with.
extern volatile bool soci_use_test_boost;
extern volatile bool soci_use_test_connparams;
extern volatile bool soci_use_test_custom;
extern volatile bool soci_use_test_dynamic;
extern volatile bool soci_use_test_lob;
extern volatile bool soci_use_test_manual;
extern volatile bool soci_use_test_rowset;
test_context_common::test_context_common()
{
#ifdef SOCI_HAVE_BOOST
soci_use_test_boost = true;
#endif
soci_use_test_connparams = true;
soci_use_test_custom = true;
soci_use_test_dynamic = true;
soci_use_test_lob = true;
soci_use_test_manual = true;
soci_use_test_rowset = true;
}
} // namespace tests
} // namespace soci
|