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
|
require File.join(File.dirname(__FILE__), "spec_helper")
context "Dataset" do
setup do
@dataset = Sequel::Dataset.new("db")
end
specify "should accept database and opts in initialize" do
db = "db"
opts = {:from => :test}
d = Sequel::Dataset.new(db, opts)
d.db.should be(db)
d.opts.should be(opts)
d = Sequel::Dataset.new(db)
d.db.should be(db)
d.opts.should be_a_kind_of(Hash)
d.opts.should == {}
end
specify "should provide clone for chainability" do
d1 = @dataset.clone(:from => [:test])
d1.class.should == @dataset.class
d1.should_not == @dataset
d1.db.should be(@dataset.db)
d1.opts[:from].should == [:test]
@dataset.opts[:from].should be_nil
d2 = d1.clone(:order => [:name])
d2.class.should == @dataset.class
d2.should_not == d1
d2.should_not == @dataset
d2.db.should be(@dataset.db)
d2.opts[:from].should == [:test]
d2.opts[:order].should == [:name]
d1.opts[:order].should be_nil
end
specify "should include Enumerable" do
Sequel::Dataset.included_modules.should include(Enumerable)
end
specify "should raise ImplementedError for the dataset interface methods" do
proc {@dataset.fetch_rows('abc')}.should raise_error(NotImplementedError)
proc {@dataset.insert(1, 2, 3)}.should raise_error(NotImplementedError)
proc {@dataset.update(:name => 'abc')}.should raise_error(NotImplementedError)
proc {@dataset.delete}.should raise_error(NotImplementedError)
end
end
context "Dataset#clone" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:items)
end
specify "should create an exact copy of the dataset" do
@c = Class.new
@dataset.set_model(@c)
@clone = @dataset.clone
@clone.should_not === @dataset
@clone.class.should == @dataset.class
@clone.model_classes.should == @dataset.model_classes
end
specify "should deep-copy the dataset opts" do
@clone = @dataset.clone
@clone.opts.should_not eql(@dataset.opts)
@dataset.filter!(:a => 'b')
@clone.opts[:filter].should be_nil
end
specify "should return a clone self" do
clone = @dataset.clone({})
clone.class.should == @dataset.class
clone.db.should == @dataset.db
clone.opts.should == @dataset.opts
end
specify "should merge the specified options" do
clone = @dataset.clone(1 => 2)
clone.opts.should == {1 => 2, :from => [:items]}
end
specify "should overwrite existing options" do
clone = @dataset.clone(:from => [:other])
clone.opts.should == {:from => [:other]}
end
specify "should create a clone with a deep copy of options" do
clone = @dataset.clone(:from => [:other])
@dataset.opts[:from].should == [:items]
clone.opts[:from].should == [:other]
end
specify "should return an object with the same modules included" do
m = Module.new do
def __xyz__; "xyz"; end
end
@dataset.extend(m)
@dataset.clone({}).should respond_to(:__xyz__)
end
end
context "A simple dataset" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should format a select statement" do
@dataset.select_sql.should == 'SELECT * FROM test'
end
specify "should format a delete statement" do
@dataset.delete_sql.should == 'DELETE FROM test'
end
specify "should format an insert statement with default values" do
@dataset.insert_sql.should == 'INSERT INTO test DEFAULT VALUES'
end
specify "should format an insert statement with hash" do
@dataset.insert_sql(:name => 'wxyz', :price => 342).
should match(/INSERT INTO test \(name, price\) VALUES \('wxyz', 342\)|INSERT INTO test \(price, name\) VALUES \(342, 'wxyz'\)/)
@dataset.insert_sql({}).should == "INSERT INTO test DEFAULT VALUES"
end
specify "should format an insert statement with string keys" do
@dataset.insert_sql('name' => 'wxyz', 'price' => 342).
should match(/INSERT INTO test \(name, price\) VALUES \('wxyz', 342\)|INSERT INTO test \(price, name\) VALUES \(342, 'wxyz'\)/)
end
specify "should format an insert statement with an object that respond_to? :values" do
dbb = Sequel::Database.new
v = Object.new
def v.values; {:a => 1}; end
@dataset.insert_sql(v).should == "INSERT INTO test (a) VALUES (1)"
def v.values; {}; end
@dataset.insert_sql(v).should == "INSERT INTO test DEFAULT VALUES"
end
specify "should format an insert statement with an arbitrary value" do
@dataset.insert_sql(123).should == "INSERT INTO test VALUES (123)"
end
specify "should format an insert statement with sub-query" do
@sub = Sequel::Dataset.new(nil).from(:something).filter(:x => 2)
@dataset.insert_sql(@sub).should == \
"INSERT INTO test (SELECT * FROM something WHERE (x = 2))"
end
specify "should format an insert statement with array" do
@dataset.insert_sql('a', 2, 6.5).should ==
"INSERT INTO test VALUES ('a', 2, 6.5)"
end
specify "should format an update statement" do
@dataset.update_sql(:name => 'abc').should ==
"UPDATE test SET name = 'abc'"
@dataset.update_sql {:x << :y}.should ==
"UPDATE test SET x = y"
end
specify "should be able to return rows for arbitrary SQL" do
@dataset.select_sql(:sql => 'xxx yyy zzz').should ==
"xxx yyy zzz"
end
end
context "A dataset with multiple tables in its FROM clause" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:t1, :t2)
end
specify "should raise on #update_sql" do
proc {@dataset.update_sql(:a=>1)}.should raise_error(Sequel::Error::InvalidOperation)
end
specify "should raise on #delete_sql" do
proc {@dataset.delete_sql}.should raise_error(Sequel::Error::InvalidOperation)
end
specify "should generate a select query FROM all specified tables" do
@dataset.select_sql.should == "SELECT * FROM t1, t2"
end
end
context "Dataset#where" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
@d1 = @dataset.where(:region => 'Asia')
@d2 = @dataset.where('(region = ?)', 'Asia')
@d3 = @dataset.where("(a = 1)")
end
specify "should work with hashes" do
@dataset.where(:name => 'xyz', :price => 342).select_sql.
should match(/WHERE \(name = 'xyz'\) AND \(price = 342\)|WHERE \(price = 342\) AND \(name = 'xyz'\)/)
end
specify "should work with arrays (ala ActiveRecord)" do
@dataset.where('price < ? AND id in (?)', 100, [1, 2, 3]).select_sql.should ==
"SELECT * FROM test WHERE price < 100 AND id in (1, 2, 3)"
end
specify "should work with strings (custom SQL expressions)" do
@dataset.where('(a = 1 AND b = 2)').select_sql.should ==
"SELECT * FROM test WHERE (a = 1 AND b = 2)"
end
specify "should affect select, delete and update statements" do
@d1.select_sql.should == "SELECT * FROM test WHERE (region = 'Asia')"
@d1.delete_sql.should == "DELETE FROM test WHERE (region = 'Asia')"
@d1.update_sql(:GDP => 0).should == "UPDATE test SET GDP = 0 WHERE (region = 'Asia')"
@d2.select_sql.should == "SELECT * FROM test WHERE (region = 'Asia')"
@d2.delete_sql.should == "DELETE FROM test WHERE (region = 'Asia')"
@d2.update_sql(:GDP => 0).should == "UPDATE test SET GDP = 0 WHERE (region = 'Asia')"
@d3.select_sql.should == "SELECT * FROM test WHERE (a = 1)"
@d3.delete_sql.should == "DELETE FROM test WHERE (a = 1)"
@d3.update_sql(:GDP => 0).should == "UPDATE test SET GDP = 0 WHERE (a = 1)"
end
specify "should be composable using AND operator (for scoping)" do
# hashes are merged, no problem
@d1.where(:size => 'big').select_sql.should ==
"SELECT * FROM test WHERE (region = 'Asia') AND (size = 'big')"
# hash and string
@d1.where('population > 1000').select_sql.should ==
"SELECT * FROM test WHERE (region = 'Asia') AND (population > 1000)"
@d1.where('(a > 1) OR (b < 2)').select_sql.should ==
"SELECT * FROM test WHERE (region = 'Asia') AND ((a > 1) OR (b < 2))"
# hash and array
@d1.where('(GDP > ?)', 1000).select_sql.should ==
"SELECT * FROM test WHERE (region = 'Asia') AND (GDP > 1000)"
# array and array
@d2.where('(GDP > ?)', 1000).select_sql.should ==
"SELECT * FROM test WHERE (region = 'Asia') AND (GDP > 1000)"
# array and hash
@d2.where(:name => ['Japan', 'China']).select_sql.should ==
"SELECT * FROM test WHERE (region = 'Asia') AND (name IN ('Japan', 'China'))"
# array and string
@d2.where('GDP > ?').select_sql.should ==
"SELECT * FROM test WHERE (region = 'Asia') AND (GDP > ?)"
# string and string
@d3.where('b = 2').select_sql.should ==
"SELECT * FROM test WHERE (a = 1) AND (b = 2)"
# string and hash
@d3.where(:c => 3).select_sql.should ==
"SELECT * FROM test WHERE (a = 1) AND (c = 3)"
# string and array
@d3.where('(d = ?)', 4).select_sql.should ==
"SELECT * FROM test WHERE (a = 1) AND (d = 4)"
# string and proc expr
@d3.where {:e < 5}.select_sql.should ==
"SELECT * FROM test WHERE (a = 1) AND (e < 5)"
end
specify "should raise if the dataset is grouped" do
proc {@dataset.group(:t).where(:a => 1)}.should_not raise_error
@dataset.group(:t).where(:a => 1).sql.should ==
"SELECT * FROM test WHERE (a = 1) GROUP BY t"
end
specify "should accept ranges" do
@dataset.filter(:id => 4..7).sql.should ==
'SELECT * FROM test WHERE (id >= 4 AND id <= 7)'
@dataset.filter(:id => 4...7).sql.should ==
'SELECT * FROM test WHERE (id >= 4 AND id < 7)'
@dataset.filter {:id == (4..7)}.sql.should ==
'SELECT * FROM test WHERE (id >= 4 AND id <= 7)'
@dataset.filter {:id.in?(4..7)}.sql.should ==
'SELECT * FROM test WHERE (id >= 4 AND id <= 7)'
@dataset.filter(:table__id => 4..7).sql.should ==
'SELECT * FROM test WHERE (table.id >= 4 AND table.id <= 7)'
@dataset.filter(:table__id => 4...7).sql.should ==
'SELECT * FROM test WHERE (table.id >= 4 AND table.id < 7)'
@dataset.filter {:table__id == (4..7)}.sql.should ==
'SELECT * FROM test WHERE (table.id >= 4 AND table.id <= 7)'
@dataset.filter {:table__id.in?(4..7)}.sql.should ==
'SELECT * FROM test WHERE (table.id >= 4 AND table.id <= 7)'
end
specify "should accept nil" do
@dataset.filter(:owner_id => nil).sql.should ==
'SELECT * FROM test WHERE (owner_id IS NULL)'
@dataset.filter{:owner_id.nil?}.sql.should ==
'SELECT * FROM test WHERE (owner_id IS NULL)'
end
specify "should accept a subquery" do
# select all countries that have GDP greater than the average for Asia
@dataset.filter('gdp > ?', @d1.select(:avg[:gdp])).sql.should ==
"SELECT * FROM test WHERE gdp > (SELECT avg(gdp) FROM test WHERE (region = 'Asia'))"
@dataset.filter(:id => @d1.select(:id)).sql.should ==
"SELECT * FROM test WHERE (id IN (SELECT id FROM test WHERE (region = 'Asia')))"
end
specify "should accept a subquery for an EXISTS clause" do
a = @dataset.filter {:price < 100}
@dataset.filter(a.exists).sql.should ==
'SELECT * FROM test WHERE EXISTS (SELECT * FROM test WHERE (price < 100))'
end
specify "should accept proc expressions" do
d = @d1.select(:avg[:gdp])
@dataset.filter {:gdp > d}.sql.should ==
"SELECT * FROM test WHERE (gdp > (SELECT avg(gdp) FROM test WHERE (region = 'Asia')))"
@dataset.filter {:id.in(4..7)}.sql.should ==
'SELECT * FROM test WHERE (id >= 4 AND id <= 7)'
@dataset.filter {:c == 3}.sql.should ==
'SELECT * FROM test WHERE (c = 3)'
@dataset.filter {:id == :items__id}.sql.should ==
'SELECT * FROM test WHERE (id = items.id)'
@dataset.filter {:a < 1}.sql.should ==
'SELECT * FROM test WHERE (a < 1)'
@dataset.filter {:a != 1}.sql.should ==
'SELECT * FROM test WHERE (NOT (a = 1))'
@dataset.filter {:a >= 1 && :b <= 2}.sql.should ==
'SELECT * FROM test WHERE ((a >= 1) AND (b <= 2))'
@dataset.filter {:c.like 'ABC%'}.sql.should ==
"SELECT * FROM test WHERE (c LIKE 'ABC%')"
@dataset.filter {:c.like? 'ABC%'}.sql.should ==
"SELECT * FROM test WHERE (c LIKE 'ABC%')"
@dataset.filter {:c.like? ['ABC%', '%XYZ']}.sql.should ==
"SELECT * FROM test WHERE ((c LIKE 'ABC%') OR (c LIKE '%XYZ'))"
end
specify "should raise if receiving a single boolean value" do
# the result of erroneous use of comparison not in a block
# so instead of filter{:x == y} someone writes filter(:x == y)
proc {@dataset.filter(:a == 1)}.should raise_error(Sequel::Error::InvalidFilter)
proc {@dataset.filter(:a != 1)}.should raise_error(Sequel::Error::InvalidFilter)
end
specify "should work for grouped datasets" do
@dataset.group(:a).filter(:b => 1).sql.should ==
'SELECT * FROM test WHERE (b = 1) GROUP BY a'
end
end
context "Dataset#or" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
@d1 = @dataset.where(:x => 1)
end
specify "should raise if no filter exists" do
proc {@dataset.or(:a => 1)}.should raise_error(Sequel::Error)
end
specify "should add an alternative expression to the where clause" do
@d1.or(:y => 2).sql.should ==
'SELECT * FROM test WHERE (x = 1) OR (y = 2)'
end
specify "should accept all forms of filters" do
# probably not exhaustive, but good enough
@d1.or('(y > ?)', 2).sql.should ==
'SELECT * FROM test WHERE (x = 1) OR (y > 2)'
(@d1.or {:yy > 3}).sql.should ==
'SELECT * FROM test WHERE (x = 1) OR (yy > 3)'
end
specify "should correctly add parens to give predictable results" do
@d1.filter(:y => 2).or(:z => 3).sql.should ==
'SELECT * FROM test WHERE ((x = 1) AND (y = 2)) OR (z = 3)'
@d1.or(:y => 2).filter(:z => 3).sql.should ==
'SELECT * FROM test WHERE ((x = 1) OR (y = 2)) AND (z = 3)'
end
end
context "Dataset#and" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
@d1 = @dataset.where(:x => 1)
end
specify "should raise if no filter exists" do
proc {@dataset.and(:a => 1)}.should raise_error(Sequel::Error)
proc {@dataset.where(:a => 1).group(:t).and(:b => 2)}.should_not raise_error(Sequel::Error)
@dataset.where(:a => 1).group(:t).and(:b => 2).sql ==
"SELECT * FROM test WHERE (a = 1) AND (b = 2) GROUP BY t"
end
specify "should add an alternative expression to the where clause" do
@d1.and(:y => 2).sql.should ==
'SELECT * FROM test WHERE (x = 1) AND (y = 2)'
end
specify "should accept all forms of filters" do
# probably not exhaustive, but good enough
@d1.and('(y > ?)', 2).sql.should ==
'SELECT * FROM test WHERE (x = 1) AND (y > 2)'
(@d1.and {:yy > 3}).sql.should ==
'SELECT * FROM test WHERE (x = 1) AND (yy > 3)'
end
specify "should correctly add parens to give predictable results" do
@d1.or(:y => 2).and(:z => 3).sql.should ==
'SELECT * FROM test WHERE ((x = 1) OR (y = 2)) AND (z = 3)'
@d1.and(:y => 2).or(:z => 3).sql.should ==
'SELECT * FROM test WHERE ((x = 1) AND (y = 2)) OR (z = 3)'
end
end
context "Dataset#exclude" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should correctly include the NOT operator when one condition is given" do
@dataset.exclude(:region=>'Asia').select_sql.should ==
"SELECT * FROM test WHERE (NOT (region = 'Asia'))"
end
specify "should take multiple conditions as a hash and express the logic correctly in SQL" do
@dataset.exclude(:region => 'Asia', :name => 'Japan').select_sql.
should match(Regexp.union(/WHERE \(NOT \(\(region = 'Asia'\) AND \(name = 'Japan'\)\)\)/,
/WHERE \(NOT \(\(name = 'Japan'\) AND \(region = 'Asia'\)\)\)/))
end
specify "should parenthesize a single string condition correctly" do
@dataset.exclude("region = 'Asia' AND name = 'Japan'").select_sql.should ==
"SELECT * FROM test WHERE (NOT (region = 'Asia' AND name = 'Japan'))"
end
specify "should parenthesize an array condition correctly" do
@dataset.exclude('region = ? AND name = ?', 'Asia', 'Japan').select_sql.should ==
"SELECT * FROM test WHERE (NOT (region = 'Asia' AND name = 'Japan'))"
end
specify "should correctly parenthesize when it is used twice" do
@dataset.exclude(:region => 'Asia').exclude(:name => 'Japan').select_sql.should ==
"SELECT * FROM test WHERE (NOT (region = 'Asia')) AND (NOT (name = 'Japan'))"
end
specify "should support proc expressions" do
@dataset.exclude {:id == (6...12)}.sql.should ==
'SELECT * FROM test WHERE (NOT ((id >= 6 AND id < 12)))'
end
end
context "Dataset#having" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
@grouped = @dataset.group(:region).select(:region, :sum[:population], :avg[:gdp])
@d1 = @grouped.having('sum(population) > 10')
@d2 = @grouped.having(:region => 'Asia')
@columns = "region, sum(population), avg(gdp)"
end
specify "should raise if the dataset is not grouped" do
proc {@dataset.having('avg(gdp) > 10')}.should raise_error(Sequel::Error::InvalidOperation)
end
specify "should affect select statements" do
@d1.select_sql.should ==
"SELECT #{@columns} FROM test GROUP BY region HAVING sum(population) > 10"
end
specify "should support proc expressions" do
@grouped.having {:sum[:population] > 10}.sql.should ==
"SELECT #{@columns} FROM test GROUP BY region HAVING (sum(population) > 10)"
end
specify "should work with and on the having clause" do
@grouped.having{ :a > 1 }.and{ :b < 2 }.sql.should ==
"SELECT #{@columns} FROM test GROUP BY region HAVING (a > 1) AND (b < 2)"
end
end
context "a grouped dataset" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test).group(:type_id)
end
specify "should raise when trying to generate an update statement" do
proc {@dataset.update_sql(:id => 0)}.should raise_error
end
specify "should raise when trying to generate a delete statement" do
proc {@dataset.delete_sql}.should raise_error
end
specify "should specify the grouping in generated select statement" do
@dataset.select_sql.should ==
"SELECT * FROM test GROUP BY type_id"
end
specify "should format the right statement for counting (as a subquery)" do
db = MockDatabase.new
db[:test].select(:name).group(:name).count
db.sqls.should == ["SELECT COUNT(*) FROM (SELECT name FROM test GROUP BY name) t1"]
end
end
context "Dataset#group_by" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test).group_by(:type_id)
end
specify "should raise when trying to generate an update statement" do
proc {@dataset.update_sql(:id => 0)}.should raise_error
end
specify "should raise when trying to generate a delete statement" do
proc {@dataset.delete_sql}.should raise_error
end
specify "should specify the grouping in generated select statement" do
@dataset.select_sql.should ==
"SELECT * FROM test GROUP BY type_id"
end
end
context "Dataset#literal" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should escape strings properly" do
@dataset.literal('abc').should == "'abc'"
@dataset.literal('a"x"bc').should == "'a\"x\"bc'"
@dataset.literal("a'bc").should == "'a''bc'"
@dataset.literal("a''bc").should == "'a''''bc'"
@dataset.literal("a\\bc").should == "'a\\\\bc'"
@dataset.literal("a\\\\bc").should == "'a\\\\\\\\bc'"
@dataset.literal("a\\'bc").should == "'a\\\\''bc'"
end
specify "should literalize numbers properly" do
@dataset.literal(1).should == "1"
@dataset.literal(1.5).should == "1.5"
end
specify "should literalize nil as NULL" do
@dataset.literal(nil).should == "NULL"
end
specify "should literalize an array properly" do
@dataset.literal([]).should == "NULL"
@dataset.literal([1, 'abc', 3]).should == "1, 'abc', 3"
@dataset.literal([1, "a'b''c", 3]).should == "1, 'a''b''''c', 3"
end
specify "should literalize symbols as column references" do
@dataset.literal(:name).should == "name"
@dataset.literal(:items__name).should == "items.name"
end
specify "should raise an error for unsupported types" do
proc {@dataset.literal({})}.should raise_error
end
specify "should literalize datasets as subqueries" do
d = @dataset.from(:test)
d.literal(d).should == "(#{d.sql})"
end
specify "should literalize Time properly" do
t = Time.now
s = t.strftime("TIMESTAMP '%Y-%m-%d %H:%M:%S'")
@dataset.literal(t).should == s
end
specify "should literalize Date properly" do
d = Date.today
s = d.strftime("DATE '%Y-%m-%d'")
@dataset.literal(d).should == s
end
specify "should not literalize expression strings" do
@dataset.literal('col1 + 2'.expr).should == 'col1 + 2'
@dataset.update_sql(:a => 'a + 2'.expr).should ==
'UPDATE test SET a = a + 2'
end
specify "should literalize BigDecimal instances correctly" do
@dataset.literal(BigDecimal.new("80")).should == "80.0"
end
end
context "Dataset#from" do
setup do
@dataset = Sequel::Dataset.new(nil)
end
specify "should accept a Dataset" do
proc {@dataset.from(@dataset)}.should_not raise_error
end
specify "should format a Dataset as a subquery if it has had options set" do
@dataset.from(@dataset.from(:a).where(:a=>1)).select_sql.should ==
"SELECT * FROM (SELECT * FROM a WHERE (a = 1)) t1"
end
specify "should automatically alias sub-queries" do
@dataset.from(@dataset.from(:a).group(:b)).select_sql.should ==
"SELECT * FROM (SELECT * FROM a GROUP BY b) t1"
d1 = @dataset.from(:a).group(:b)
d2 = @dataset.from(:c).group(:d)
@dataset.from(d1, d2).sql.should ==
"SELECT * FROM (SELECT * FROM a GROUP BY b) t1, (SELECT * FROM c GROUP BY d) t2"
end
specify "should accept a hash for aliasing" do
@dataset.from(:a => :b).sql.should ==
"SELECT * FROM a b"
@dataset.from(:a => 'b').sql.should ==
"SELECT * FROM a b"
@dataset.from(:a => :c[:d]).sql.should ==
"SELECT * FROM a c(d)"
@dataset.from(@dataset.from(:a).group(:b) => :c).sql.should ==
"SELECT * FROM (SELECT * FROM a GROUP BY b) c"
end
specify "should use the relevant table name if given a simple dataset" do
@dataset.from(@dataset.from(:a)).select_sql.should ==
"SELECT * FROM a"
end
specify "should raise if no source is given" do
proc {@dataset.from(@dataset.from).select_sql}.should raise_error(Sequel::Error)
end
specify "should accept sql functions" do
@dataset.from(:abc[:def]).select_sql.should ==
"SELECT * FROM abc(def)"
@dataset.from(:a|:i).select_sql.should ==
"SELECT * FROM a[i]"
@dataset.from(:generate_series[1, 2].as(:a[:i])).select_sql.should ==
"SELECT * FROM generate_series(1, 2) AS a(i)"
@dataset.from(:generate_series[1, 2] => :a[:i]).select_sql.should ==
"SELECT * FROM generate_series(1, 2) a(i)"
end
end
context "Dataset#select" do
setup do
@d = Sequel::Dataset.new(nil).from(:test)
end
specify "should accept variable arity" do
@d.select(:name).sql.should == 'SELECT name FROM test'
@d.select(:a, :b, :test__c).sql.should == 'SELECT a, b, test.c FROM test'
end
specify "should accept symbols and literal strings" do
@d.select('aaa'.lit).sql.should == 'SELECT aaa FROM test'
@d.select(:a, 'b'.lit).sql.should == 'SELECT a, b FROM test'
@d.select(:test__cc, 'test.d AS e'.lit).sql.should ==
'SELECT test.cc, test.d AS e FROM test'
@d.select('test.d AS e'.lit, :test__cc).sql.should ==
'SELECT test.d AS e, test.cc FROM test'
# symbol helpers
@d.select(:test.*).sql.should ==
'SELECT test.* FROM test'
@d.select(:test__name.as(:n)).sql.should ==
'SELECT test.name AS n FROM test'
@d.select(:test__name___n).sql.should ==
'SELECT test.name AS n FROM test'
end
specify "should use the wildcard if no arguments are given" do
@d.select.sql.should == 'SELECT * FROM test'
end
specify "should accept a hash for AS values" do
@d.select(:name => 'n', :__ggh => 'age').sql.should =~
/SELECT ((name AS n, __ggh AS age)|(__ggh AS age, name AS n)) FROM test/
end
specify "should overrun the previous select option" do
@d.select!(:a, :b, :c).select.sql.should == 'SELECT * FROM test'
@d.select!(:price).select(:name).sql.should == 'SELECT name FROM test'
end
specify "should accept arbitrary objects and literalize them correctly" do
@d.select(1, :a, 't').sql.should == "SELECT 1, a, 't' FROM test"
@d.select(nil, :sum[:t], :x___y).sql.should == "SELECT NULL, sum(t), x AS y FROM test"
@d.select(nil, 1, :x => :y).sql.should == "SELECT NULL, 1, x AS y FROM test"
end
end
context "Dataset#select_all" do
setup do
@d = Sequel::Dataset.new(nil).from(:test)
end
specify "should select the wildcard" do
@d.select_all.sql.should == 'SELECT * FROM test'
end
specify "should overrun the previous select option" do
@d.select!(:a, :b, :c).select_all.sql.should == 'SELECT * FROM test'
end
end
context "Dataset#select_more" do
setup do
@d = Sequel::Dataset.new(nil).from(:test)
end
specify "should act like #select for datasets with no selection" do
@d.select_more(:a, :b).sql.should == 'SELECT a, b FROM test'
@d.select_all.select_more(:a, :b).sql.should == 'SELECT a, b FROM test'
@d.select(:blah).select_all.select_more(:a, :b).sql.should == 'SELECT a, b FROM test'
end
specify "should add to the currently selected columns" do
@d.select(:a).select_more(:b).sql.should == 'SELECT a, b FROM test'
@d.select(:a.*).select_more(:b.*).sql.should == 'SELECT a.*, b.* FROM test'
end
end
context "Dataset#order" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should include an ORDER BY clause in the select statement" do
@dataset.order(:name).sql.should ==
'SELECT * FROM test ORDER BY name'
end
specify "should accept multiple arguments" do
@dataset.order(:name, :price.desc).sql.should ==
'SELECT * FROM test ORDER BY name, price DESC'
end
specify "should overrun a previous ordering" do
@dataset.order(:name).order(:stamp).sql.should ==
'SELECT * FROM test ORDER BY stamp'
end
specify "should accept a string" do
@dataset.order('dada ASC'.lit).sql.should ==
'SELECT * FROM test ORDER BY dada ASC'
end
specify "should accept a nil to remove ordering" do
@dataset.order(:bah).order(nil).sql.should ==
'SELECT * FROM test'
end
end
context "Dataset#unordered" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should remove ordering from the dataset" do
@dataset.order(:name).unordered.sql.should ==
'SELECT * FROM test'
end
end
context "Dataset#order_by" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should include an ORDER BY clause in the select statement" do
@dataset.order_by(:name).sql.should ==
'SELECT * FROM test ORDER BY name'
end
specify "should accept multiple arguments" do
@dataset.order_by(:name, :price.desc).sql.should ==
'SELECT * FROM test ORDER BY name, price DESC'
end
specify "should overrun a previous ordering" do
@dataset.order_by(:name).order(:stamp).sql.should ==
'SELECT * FROM test ORDER BY stamp'
end
specify "should accept a string" do
@dataset.order_by('dada ASC'.lit).sql.should ==
'SELECT * FROM test ORDER BY dada ASC'
end
specify "should accept a nil to remove ordering" do
@dataset.order_by(:bah).order_by(nil).sql.should ==
'SELECT * FROM test'
end
end
context "Dataset#order_more" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should include an ORDER BY clause in the select statement" do
@dataset.order_more(:name).sql.should ==
'SELECT * FROM test ORDER BY name'
end
specify "should add to a previous ordering" do
@dataset.order(:name).order_more(:stamp.desc).sql.should ==
'SELECT * FROM test ORDER BY name, stamp DESC'
end
end
context "Dataset#reverse_order" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should use DESC as default order" do
@dataset.reverse_order(:name).sql.should ==
'SELECT * FROM test ORDER BY name DESC'
end
specify "should invert the order given" do
@dataset.reverse_order(:name.desc).sql.should ==
'SELECT * FROM test ORDER BY name'
end
specify "should invert the order for ASC expressions" do
@dataset.reverse_order(:name.asc).sql.should ==
'SELECT * FROM test ORDER BY name DESC'
end
specify "should accept multiple arguments" do
@dataset.reverse_order(:name, :price.desc).sql.should ==
'SELECT * FROM test ORDER BY name DESC, price'
end
specify "should reverse a previous ordering if no arguments are given" do
@dataset.order(:name).reverse_order.sql.should ==
'SELECT * FROM test ORDER BY name DESC'
@dataset.order(:clumsy.desc, :fool).reverse_order.sql.should ==
'SELECT * FROM test ORDER BY clumsy, fool DESC'
end
specify "should return an unordered dataset for a dataset with no order" do
@dataset.unordered.reverse_order.sql.should ==
'SELECT * FROM test'
end
specify "should have #reverse alias" do
@dataset.order(:name).reverse.sql.should ==
'SELECT * FROM test ORDER BY name DESC'
end
end
context "Dataset#limit" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should include a LIMIT clause in the select statement" do
@dataset.limit(10).sql.should ==
'SELECT * FROM test LIMIT 10'
end
specify "should accept ranges" do
@dataset.limit(3..7).sql.should ==
'SELECT * FROM test LIMIT 5 OFFSET 3'
@dataset.limit(3...7).sql.should ==
'SELECT * FROM test LIMIT 4 OFFSET 3'
end
specify "should include an offset if a second argument is given" do
@dataset.limit(6, 10).sql.should ==
'SELECT * FROM test LIMIT 6 OFFSET 10'
end
specify "should work with fixed sql datasets" do
@dataset.opts[:sql] = 'select * from cccc'
@dataset.limit(6, 10).sql.should ==
'SELECT * FROM (select * from cccc) t1 LIMIT 6 OFFSET 10'
end
end
context "Dataset#naked" do
setup do
@d1 = Sequel::Dataset.new(nil, {1 => 2, 3 => 4})
@d2 = Sequel::Dataset.new(nil, {1 => 2, 3 => 4}).set_model(Object)
end
specify "should return a clone with :naked option set" do
naked = @d1.naked
naked.opts[:naked].should be_true
end
specify "should remove any existing reference to a model class" do
naked = @d2.naked
naked.opts[:models].should be_nil
end
end
context "Dataset#qualified_column_name" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test)
end
specify "should return the same if already qualified" do
@dataset.send(:qualified_column_name, 'test.a'.lit, :items).should == 'test.a'
@dataset.send(:qualified_column_name, :ccc__b, :items).should == :ccc__b
end
specify "should qualify the column with the supplied table name" do
@dataset.send(:qualified_column_name, 'a'.lit, :items).to_s(@dataset).should == 'items.a'
@dataset.send(:qualified_column_name, :b1, :items).to_s(@dataset).should == 'items.b1'
end
end
class DummyDataset < Sequel::Dataset
VALUES = [
{:a => 1, :b => 2},
{:a => 3, :b => 4},
{:a => 5, :b => 6}
]
def fetch_rows(sql, &block)
VALUES.each(&block)
end
end
context "Dataset#map" do
setup do
@d = DummyDataset.new(nil).from(:items)
end
specify "should provide the usual functionality if no argument is given" do
@d.map {|n| n[:a] + n[:b]}.should == [3, 7, 11]
end
specify "should map using #[column name] if column name is given" do
@d.map(:a).should == [1, 3, 5]
end
specify "should return the complete dataset values if nothing is given" do
@d.map.should == DummyDataset::VALUES
end
end
context "Dataset#to_hash" do
setup do
@d = DummyDataset.new(nil).from(:items)
end
specify "should provide a hash with the first column as key and the second as value" do
@d.to_hash(:a, :b).should == {1 => 2, 3 => 4, 5 => 6}
@d.to_hash(:b, :a).should == {2 => 1, 4 => 3, 6 => 5}
end
end
context "Dataset#uniq" do
setup do
@dataset = Sequel::Dataset.new(nil).from(:test).select(:name)
end
specify "should include DISTINCT clause in statement" do
@dataset.uniq.sql.should == 'SELECT DISTINCT name FROM test'
end
specify "should be aliased by Dataset#distinct" do
@dataset.distinct.sql.should == 'SELECT DISTINCT name FROM test'
end
specify "should accept an expression list" do
@dataset.uniq(:a, :b).sql.should == 'SELECT DISTINCT ON (a, b) name FROM test'
@dataset.uniq(:stamp.cast_as(:integer), :node_id).sql.should == 'SELECT DISTINCT ON (cast(stamp AS integer), node_id) name FROM test'
end
end
context "Dataset#count" do
setup do
@c = Class.new(Sequel::Dataset) do
def self.sql
@@sql
end
def fetch_rows(sql)
@@sql = sql
yield({1 => 1})
end
end
@dataset = @c.new(nil).from(:test)
end
specify "should format SQL properly" do
@dataset.count.should == 1
@c.sql.should == 'SELECT COUNT(*) FROM test'
end
specify "should be aliased by #size" do
@dataset.size.should == 1
end
specify "should include the where clause if it's there" do
@dataset.filter {:abc < 30}.count.should == 1
@c.sql.should == 'SELECT COUNT(*) FROM test WHERE (abc < 30)'
end
specify "should count properly for datasets with fixed sql" do
@dataset.opts[:sql] = "select abc from xyz"
@dataset.count.should == 1
@c.sql.should == "SELECT COUNT(*) FROM (select abc from xyz) t1"
end
end
context "Dataset#group_and_count" do
setup do
@c = Class.new(Sequel::Dataset) do
def self.sql
@@sql
end
def fetch_rows(sql)
@@sql = sql
yield({1 => 1})
end
end
@ds = @c.new(nil).from(:test)
end
specify "should format SQL properly" do
@ds.group_and_count(:name).sql.should ==
"SELECT name, count(*) AS count FROM test GROUP BY name ORDER BY count"
end
specify "should accept multiple columns for grouping" do
@ds.group_and_count(:a, :b).sql.should ==
"SELECT a, b, count(*) AS count FROM test GROUP BY a, b ORDER BY count"
end
specify "should work within query block" do
@ds.query{group_and_count(:a, :b)}.sql.should ==
"SELECT a, b, count(*) AS count FROM test GROUP BY a, b ORDER BY count"
end
end
context "Dataset#empty?" do
specify "should return true if records exist in the dataset" do
@db = Sequel::Database.new
@db.meta_def(:execute) {|sql| @sqls ||=[]; @sqls << sql}
@db.meta_def(:sqls) {@sqls ||= []}
$cccc = Class.new(Sequel::Dataset) do
def fetch_rows(sql)
@db.execute(sql)
yield(:x => 'blah')
end
end
@db.meta_def(:dataset) do
$cccc.new(self)
end
@dataset = Sequel::Dataset.new(@db).from(:test)
@dataset.should_not be_empty
@db.sqls.last.should == 'SELECT 1 WHERE EXISTS (SELECT * FROM test)'
@db.meta_def(:dataset) do
ds = $cccc.new(self)
ds.meta_def(:get) {|c| nil}
ds
end
@dataset.should be_empty
end
end
context "Dataset#join_table" do
setup do
@d = Sequel::Dataset.new(nil).from(:items)
end
specify "should format the JOIN clause properly" do
@d.join_table(:left_outer, :categories, :category_id => :id).sql.should ==
'SELECT * FROM items LEFT OUTER JOIN categories ON (categories.category_id = items.id)'
end
specify "should include WHERE clause if applicable" do
@d.filter {:price < 100}.join_table(:right_outer, :categories, :category_id => :id).sql.should ==
'SELECT * FROM items RIGHT OUTER JOIN categories ON (categories.category_id = items.id) WHERE (price < 100)'
end
specify "should include ORDER BY clause if applicable" do
@d.order(:stamp).join_table(:full_outer, :categories, :category_id => :id).sql.should ==
'SELECT * FROM items FULL OUTER JOIN categories ON (categories.category_id = items.id) ORDER BY stamp'
end
specify "should support multiple joins" do
@d.join_table(:inner, :b, :items_id).join_table(:left_outer, :c, :b_id => :b__id).sql.should ==
'SELECT * FROM items INNER JOIN b ON (b.items_id = items.id) LEFT OUTER JOIN c ON (c.b_id = b.id)'
end
specify "should use id as implicit relation primary key if omitted" do
@d.join_table(:left_outer, :categories, :category_id).sql.should ==
@d.join_table(:left_outer, :categories, :category_id => :id).sql
# when doing multiple joins, id should be qualified using the last joined table
@d.join_table(:right_outer, :b, :items_id).join_table(:full_outer, :c, :b_id).sql.should ==
'SELECT * FROM items RIGHT OUTER JOIN b ON (b.items_id = items.id) FULL OUTER JOIN c ON (c.b_id = b.id)'
end
specify "should support left outer joins" do
@d.join_table(:left_outer, :categories, :category_id).sql.should ==
'SELECT * FROM items LEFT OUTER JOIN categories ON (categories.category_id = items.id)'
@d.left_outer_join(:categories, :category_id).sql.should ==
'SELECT * FROM items LEFT OUTER JOIN categories ON (categories.category_id = items.id)'
end
specify "should support right outer joins" do
@d.join_table(:right_outer, :categories, :category_id).sql.should ==
'SELECT * FROM items RIGHT OUTER JOIN categories ON (categories.category_id = items.id)'
@d.right_outer_join(:categories, :category_id).sql.should ==
'SELECT * FROM items RIGHT OUTER JOIN categories ON (categories.category_id = items.id)'
end
specify "should support full outer joins" do
@d.join_table(:full_outer, :categories, :category_id).sql.should ==
'SELECT * FROM items FULL OUTER JOIN categories ON (categories.category_id = items.id)'
@d.full_outer_join(:categories, :category_id).sql.should ==
'SELECT * FROM items FULL OUTER JOIN categories ON (categories.category_id = items.id)'
end
specify "should support inner joins" do
@d.join_table(:inner, :categories, :category_id).sql.should ==
'SELECT * FROM items INNER JOIN categories ON (categories.category_id = items.id)'
@d.inner_join(:categories, :category_id).sql.should ==
'SELECT * FROM items INNER JOIN categories ON (categories.category_id = items.id)'
end
specify "should default to an inner join" do
@d.join_table(nil, :categories, :category_id).sql.should ==
'SELECT * FROM items INNER JOIN categories ON (categories.category_id = items.id)'
@d.join(:categories, :category_id).sql.should ==
'SELECT * FROM items INNER JOIN categories ON (categories.category_id = items.id)'
end
specify "should raise if an invalid join type is specified" do
proc {@d.join_table(:invalid, :a, :b)}.should raise_error(Sequel::Error)
end
specify "should support aliased tables" do
@d.from('stats s').join('players p', :id => :player_id).sql.should ==
'SELECT * FROM stats s INNER JOIN players p ON (p.id = s.player_id)'
ds = Sequel::Dataset.new(nil).from(:foo => :f). \
join_table(:inner, :bar, :id => :bar_id).sql.should ==
'SELECT * FROM foo f INNER JOIN bar ON (bar.id = f.bar_id)'
end
specify "should allow for arbitrary conditions in the JOIN clause" do
@d.join_table(:left_outer, :categories, :status => 0).sql.should ==
'SELECT * FROM items LEFT OUTER JOIN categories ON (categories.status = 0)'
@d.join_table(:left_outer, :categories, :categorizable_type => "Post").sql.should ==
"SELECT * FROM items LEFT OUTER JOIN categories ON (categories.categorizable_type = 'Post')"
@d.join_table(:left_outer, :categories, :timestamp => "CURRENT_TIMESTAMP".lit).sql.should ==
"SELECT * FROM items LEFT OUTER JOIN categories ON (categories.timestamp = CURRENT_TIMESTAMP)"
@d.join_table(:left_outer, :categories, :status => [1, 2, 3]).sql.should ==
"SELECT * FROM items LEFT OUTER JOIN categories ON (categories.status IN (1, 2, 3))"
end
specify "should raise error for a table without a source" do
proc {Sequel::Dataset.new(nil).join('players p', :id => :player_id)}. \
should raise_error(Sequel::Error)
end
specify "should support joining datasets" do
ds = Sequel::Dataset.new(nil).from(:categories)
@d.join_table(:left_outer, ds, :item_id => :id).sql.should ==
'SELECT * FROM items LEFT OUTER JOIN (SELECT * FROM categories) t1 ON (t1.item_id = items.id)'
ds.filter!(:active => true)
@d.join_table(:left_outer, ds, :item_id => :id).sql.should ==
'SELECT * FROM items LEFT OUTER JOIN (SELECT * FROM categories WHERE (active = \'t\')) t1 ON (t1.item_id = items.id)'
end
specify "should support joining multiple datasets" do
ds = Sequel::Dataset.new(nil).from(:categories)
ds2 = Sequel::Dataset.new(nil).from(:nodes).select(:name)
ds3 = Sequel::Dataset.new(nil).from(:attributes).filter("name = 'blah'")
@d.join_table(:left_outer, ds, :item_id => :id).join_table(:inner, ds2, :node_id=>:id).join_table(:right_outer, ds3, :attribute_id=>:id).sql.should ==
'SELECT * FROM items LEFT OUTER JOIN (SELECT * FROM categories) t1 ON (t1.item_id = items.id) ' \
'INNER JOIN (SELECT name FROM nodes) t2 ON (t2.node_id = t1.id) ' \
"RIGHT OUTER JOIN (SELECT * FROM attributes WHERE name = 'blah') t3 ON (t3.attribute_id = t2.id)"
end
specify "should support joining objects that respond to :table_name" do
ds = Object.new
def ds.table_name; :categories end
@d.join(ds, :item_id => :id).sql.should ==
'SELECT * FROM items INNER JOIN categories ON (categories.item_id = items.id)'
end
end
context "Dataset#[]=" do
setup do
c = Class.new(Sequel::Dataset) do
def last_sql
@@last_sql
end
def update(*args)
@@last_sql = update_sql(*args)
end
end
@d = c.new(nil).from(:items)
end
specify "should perform an update on the specified filter" do
@d[:a => 1] = {:x => 3}
@d.last_sql.should == 'UPDATE items SET x = 3 WHERE (a = 1)'
end
end
context "Dataset#set" do
setup do
c = Class.new(Sequel::Dataset) do
def last_sql
@@last_sql
end
def update(*args, &block)
@@last_sql = update_sql(*args, &block)
end
end
@d = c.new(nil).from(:items)
end
specify "should act as alias to #update" do
@d.set({:x => 3})
@d.last_sql.should == 'UPDATE items SET x = 3'
@d.set {:x << :x + 1}
@d.last_sql.should == 'UPDATE items SET x = (x + 1)'
@d.set {(:x|1) << (:x|2) + 1}
@d.last_sql.should == 'UPDATE items SET x[1] = (x[2] + 1)'
end
end
context "Dataset#insert_multiple" do
setup do
c = Class.new(Sequel::Dataset) do
attr_reader :inserts
def insert(arg)
@inserts ||= []
@inserts << arg
end
end
@d = c.new(nil)
end
specify "should insert all items in the supplied array" do
@d.insert_multiple [:aa, 5, 3, {1 => 2}]
@d.inserts.should == [:aa, 5, 3, {1 => 2}]
end
specify "should pass array items through the supplied block if given" do
a = ["inevitable", "hello", "the ticking clock"]
@d.insert_multiple(a) {|i| i.gsub('l', 'r')}
@d.inserts.should == ["inevitabre", "herro", "the ticking crock"]
end
end
context "Dataset aggregate methods" do
setup do
c = Class.new(Sequel::Dataset) do
def fetch_rows(sql)
yield({1 => sql})
end
end
@d = c.new(nil).from(:test)
end
specify "should include min" do
@d.min(:a).should == 'SELECT min(a) AS v FROM test'
end
specify "should include max" do
@d.max(:b).should == 'SELECT max(b) AS v FROM test'
end
specify "should include sum" do
@d.sum(:c).should == 'SELECT sum(c) AS v FROM test'
end
specify "should include avg" do
@d.avg(:d).should == 'SELECT avg(d) AS v FROM test'
end
specify "should accept qualified columns" do
@d.avg(:test__bc).should == 'SELECT avg(test.bc) AS v FROM test'
end
end
context "Dataset#range" do
setup do
c = Class.new(Sequel::Dataset) do
@@sql = nil
def last_sql; @@sql; end
def fetch_rows(sql)
@@sql = sql
yield(:v1 => 1, :v2 => 10)
end
end
@d = c.new(nil).from(:test)
end
specify "should generate a correct SQL statement" do
@d.range(:stamp)
@d.last_sql.should == "SELECT min(stamp) AS v1, max(stamp) AS v2 FROM test LIMIT 1"
@d.filter {:price > 100}.range(:stamp)
@d.last_sql.should == "SELECT min(stamp) AS v1, max(stamp) AS v2 FROM test WHERE (price > 100) LIMIT 1"
end
specify "should return a range object" do
@d.range(:tryme).should == (1..10)
@d.last_sql.should == "SELECT min(tryme) AS v1, max(tryme) AS v2 FROM test LIMIT 1"
end
end
context "Dataset#range" do
setup do
c = Class.new(Sequel::Dataset) do
@@sql = nil
def last_sql; @@sql; end
def fetch_rows(sql)
@@sql = sql
yield(:v => 1234)
end
end
@d = c.new(nil).from(:test)
end
specify "should generate a correct SQL statement" do
@d.interval(:stamp)
@d.last_sql.should == "SELECT (max(stamp) - min(stamp)) AS v FROM test LIMIT 1"
@d.filter {:price > 100}.interval(:stamp)
@d.last_sql.should == "SELECT (max(stamp) - min(stamp)) AS v FROM test WHERE (price > 100) LIMIT 1"
end
specify "should return a range object" do
@d.interval(:tryme).should == 1234
@d.last_sql.should == "SELECT (max(tryme) - min(tryme)) AS v FROM test LIMIT 1"
end
end
context "Dataset#first" do
setup do
@c = Class.new(Sequel::Dataset) do
@@last_dataset = nil
@@last_opts = nil
def self.last_dataset
@@last_dataset
end
def self.last_opts
@@last_opts
end
def single_record(opts = nil)
@@last_opts = @opts.merge(opts || {})
{:a => 1, :b => 2}
end
def all
@@last_dataset = self
[{:a => 1, :b => 2}] * @opts[:limit]
end
end
@d = @c.new(nil).from(:test)
end
specify "should return the first matching record if a hash is specified" do
@d.first(:z => 26).should == {:a => 1, :b => 2}
@c.last_opts[:where].should == ('(z = 26)')
@d.first('z = ?', 15)
@c.last_opts[:where].should == ('z = 15')
end
specify "should return the first matching record if a block is given" do
@d.first {:z > 26}.should == {:a => 1, :b => 2}
@c.last_opts[:where].should == ('(z > 26)')
end
specify "should return a single record if no argument is given" do
@d.first.should == {:a => 1, :b => 2}
end
specify "should set the limit according to the given number" do
@d.first
@c.last_opts[:limit].should == 1
i = rand(10) + 10
@d.first(i)
@c.last_dataset.opts[:limit].should == i
end
specify "should return an array with the records if argument is greater than 1" do
i = rand(10) + 10
r = @d.first(i)
r.should be_a_kind_of(Array)
r.size.should == i
r.each {|row| row.should == {:a => 1, :b => 2}}
end
end
context "Dataset#last" do
setup do
@c = Class.new(Sequel::Dataset) do
@@last_dataset = nil
def self.last_dataset
@@last_dataset
end
def single_record(opts = nil)
@@last_dataset = clone(opts) if opts
{:a => 1, :b => 2}
end
def all
@@last_dataset = self
[{:a => 1, :b => 2}] * @opts[:limit]
end
end
@d = @c.new(nil).from(:test)
end
specify "should raise if no order is given" do
proc {@d.last}.should raise_error(Sequel::Error)
proc {@d.last(2)}.should raise_error(Sequel::Error)
proc {@d.order(:a).last}.should_not raise_error
proc {@d.order(:a).last(2)}.should_not raise_error
end
specify "should invert the order" do
@d.order(:a).last
@d.literal(@c.last_dataset.opts[:order]).should == @d.literal([:a.desc])
@d.order(:b.desc).last
@d.literal(@c.last_dataset.opts[:order]).should == @d.literal(:b)
@d.order(:c, :d).last
@d.literal(@c.last_dataset.opts[:order]).should == @d.literal([:c.desc, :d.desc])
@d.order(:e.desc, :f).last
@d.literal(@c.last_dataset.opts[:order]).should == @d.literal([:e, :f.desc])
end
specify "should return the first matching record if a hash is specified" do
@d.order(:a).last(:z => 26).should == {:a => 1, :b => 2}
@c.last_dataset.opts[:where].should == ('(z = 26)')
@d.order(:a).last('z = ?', 15)
@c.last_dataset.opts[:where].should == ('z = 15')
end
specify "should return a single record if no argument is given" do
@d.order(:a).last.should == {:a => 1, :b => 2}
end
specify "should set the limit according to the given number" do
i = rand(10) + 10
r = @d.order(:a).last(i)
@c.last_dataset.opts[:limit].should == i
end
specify "should return an array with the records if argument is greater than 1" do
i = rand(10) + 10
r = @d.order(:a).last(i)
r.should be_a_kind_of(Array)
r.size.should == i
r.each {|row| row.should == {:a => 1, :b => 2}}
end
end
context "Dataset set operations" do
setup do
@a = Sequel::Dataset.new(nil).from(:a).filter(:z => 1)
@b = Sequel::Dataset.new(nil).from(:b).filter(:z => 2)
end
specify "should support UNION and UNION ALL" do
@a.union(@b).sql.should == \
"SELECT * FROM a WHERE (z = 1) UNION SELECT * FROM b WHERE (z = 2)"
@b.union(@a, true).sql.should == \
"SELECT * FROM b WHERE (z = 2) UNION ALL SELECT * FROM a WHERE (z = 1)"
end
specify "should support INTERSECT and INTERSECT ALL" do
@a.intersect(@b).sql.should == \
"SELECT * FROM a WHERE (z = 1) INTERSECT SELECT * FROM b WHERE (z = 2)"
@b.intersect(@a, true).sql.should == \
"SELECT * FROM b WHERE (z = 2) INTERSECT ALL SELECT * FROM a WHERE (z = 1)"
end
specify "should support EXCEPT and EXCEPT ALL" do
@a.except(@b).sql.should == \
"SELECT * FROM a WHERE (z = 1) EXCEPT SELECT * FROM b WHERE (z = 2)"
@b.except(@a, true).sql.should == \
"SELECT * FROM b WHERE (z = 2) EXCEPT ALL SELECT * FROM a WHERE (z = 1)"
end
end
context "Dataset#[]" do
setup do
@c = Class.new(Sequel::Dataset) do
@@last_dataset = nil
def self.last_dataset
@@last_dataset
end
def single_record(opts = nil)
@@last_dataset = opts ? clone(opts) : self
{1 => 2, 3 => 4}
end
end
@d = @c.new(nil).from(:test)
end
specify "should return a single record filtered according to the given conditions" do
@d[:name => 'didi'].should == {1 => 2, 3 => 4}
@c.last_dataset.opts[:where].should == "(name = 'didi')"
@d[:id => 5..45].should == {1 => 2, 3 => 4}
@c.last_dataset.opts[:where].should == "(id >= 5 AND id <= 45)"
end
end
context "Dataset#single_record" do
setup do
@c = Class.new(Sequel::Dataset) do
def fetch_rows(sql)
yield sql
end
end
@cc = Class.new(@c) do
def fetch_rows(sql); end
end
@d = @c.new(nil).from(:test)
@e = @cc.new(nil).from(:test)
end
specify "should call each and return the first record" do
@d.single_record.should == 'SELECT * FROM test'
end
specify "should pass opts to each" do
@d.single_record(:limit => 3).should == 'SELECT * FROM test LIMIT 3'
end
specify "should return nil if no record is present" do
@e.single_record.should be_nil
end
end
context "Dataset#single_value" do
setup do
@c = Class.new(Sequel::Dataset) do
def fetch_rows(sql)
yield({1 => sql})
end
end
@cc = Class.new(@c) do
def fetch_rows(sql); end
end
@d = @c.new(nil).from(:test)
@e = @cc.new(nil).from(:test)
end
specify "should call each and return the first value of the first record" do
@d.single_value.should == 'SELECT * FROM test'
end
specify "should pass opts to each" do
@d.single_value(:limit => 3).should == 'SELECT * FROM test LIMIT 3'
end
specify "should return nil" do
@e.single_value.should be_nil
end
end
context "Dataset#get" do
setup do
@c = Class.new(Sequel::Dataset) do
attr_reader :last_sql
def fetch_rows(sql)
@last_sql = sql
yield(:name => sql)
end
end
@d = @c.new(nil).from(:test)
end
specify "should select the specified column and fetch its value" do
@d.get(:name).should == "SELECT name FROM test"
@d.get(:abc).should == "SELECT abc FROM test" # the first available value is returned always
end
specify "should work with filters" do
@d.filter(:id => 1).get(:name).should == "SELECT name FROM test WHERE (id = 1)"
end
specify "should work with aliased fields" do
@d.get(:x__b.as(:name)).should == "SELECT x.b AS name FROM test"
end
end
context "Dataset#set_row_proc" do
setup do
@c = Class.new(Sequel::Dataset) do
def fetch_rows(sql, &block)
# yield a hash with kind as the 1 bit of a number
(1..10).each {|i| block.call({:kind => i[0]})}
end
end
@dataset = @c.new(nil).from(:items)
end
specify "should cause dataset to pass all rows through the filter" do
@dataset.row_proc = proc{|h| h[:der] = h[:kind] + 2; h}
rows = @dataset.all
rows.size.should == 10
rows.each {|r| r[:der].should == (r[:kind] + 2)}
end
specify "should be copied over when dataset is cloned" do
@dataset.row_proc = proc{|h| h[:der] = h[:kind] + 2; h}
@dataset.filter(:a => 1).first.should == {:kind => 1, :der => 3}
end
end
context "Dataset#set_model" do
setup do
@c = Class.new(Sequel::Dataset) do
def fetch_rows(sql, &block)
# yield a hash with kind as the 1 bit of a number
(1..10).each {|i| block.call({:kind => i[0]})}
end
end
@dataset = @c.new(nil).from(:items)
@m = Class.new do
attr_accessor :c, :args
def initialize(c, *args); @c = c; @args = args; end
def ==(o); (@c == o.c) && (@args = o.args); end
end
end
specify "should clear the models hash and restore the stock #each if nil is specified" do
@dataset.set_model(@m)
@dataset.set_model(nil)
@dataset.first.should == {:kind => 1}
@dataset.model_classes.should be_nil
end
specify "should clear the models hash and restore the stock #each if nothing is specified" do
@dataset.set_model(@m)
@dataset.set_model(nil)
@dataset.first.should == {:kind => 1}
@dataset.model_classes.should be_nil
end
specify "should alter #each to provide model instances" do
@dataset.first.should == {:kind => 1}
@dataset.set_model(@m)
@dataset.first.should == @m.new({:kind => 1})
end
specify "should extend the dataset with a #destroy method" do
@dataset.should_not respond_to(:destroy)
@dataset.set_model(@m)
@dataset.should respond_to(:destroy)
end
specify "should set opts[:naked] to nil" do
@dataset.opts[:naked] = true
@dataset.set_model(@m)
@dataset.opts[:naked].should be_nil
end
specify "should send additional arguments to the models' initialize method" do
@dataset.set_model(@m, 7, 6, 5)
@dataset.first.should == @m.new({:kind => 1}, 7, 6, 5)
end
specify "should provide support for polymorphic model instantiation" do
@m1 = Class.new(@m)
@m2 = Class.new(@m)
@dataset.set_model(:kind, 0 => @m1, 1 => @m2)
@dataset.opts[:polymorphic_key].should == :kind
all = @dataset.all
all[0].class.should == @m2
all[1].class.should == @m1
all[2].class.should == @m2
all[3].class.should == @m1
#...
# denude model
@dataset.set_model(nil)
@dataset.first.should == {:kind => 1}
end
specify "should send additional arguments for polymorphic models as well" do
@m1 = Class.new(@m)
@m2 = Class.new(@m)
@dataset.set_model(:kind, {0 => @m1, 1 => @m2}, :hey => :wow)
all = @dataset.all
all[0].class.should == @m2; all[0].args.should == [{:hey => :wow}]
all[1].class.should == @m1; all[1].args.should == [{:hey => :wow}]
all[2].class.should == @m2; all[2].args.should == [{:hey => :wow}]
all[3].class.should == @m1; all[3].args.should == [{:hey => :wow}]
end
specify "should raise for invalid parameters" do
proc {@dataset.set_model('kind')}.should raise_error(ArgumentError)
proc {@dataset.set_model(0)}.should raise_error(ArgumentError)
proc {@dataset.set_model(:kind)}.should raise_error(ArgumentError) # no hash given
end
end
context "Dataset#model_classes" do
setup do
@c = Class.new(Sequel::Dataset) do
# # We don't need that for now
# def fetch_rows(sql, &block)
# (1..10).each(&block)
# end
end
@dataset = @c.new(nil).from(:items)
@m = Class.new do
attr_accessor :c
def initialize(c); @c = c; end
def ==(o); @c == o.c; end
end
end
specify "should return nil for a naked dataset" do
@dataset.model_classes.should == nil
end
specify "should return a {nil => model_class} hash for a model dataset" do
@dataset.set_model(@m)
@dataset.model_classes.should == {nil => @m}
end
specify "should return the polymorphic hash for a polymorphic model dataset" do
@m1 = Class.new(@m)
@m2 = Class.new(@m)
@dataset.set_model(:key, 0 => @m1, 1 => @m2)
@dataset.model_classes.should == {0 => @m1, 1 => @m2}
end
end
context "Dataset#polymorphic_key" do
setup do
@c = Class.new(Sequel::Dataset) do
# # We don't need this for now
# def fetch_rows(sql, &block)
# (1..10).each(&block)
# end
end
@dataset = @c.new(nil).from(:items)
@m = Class.new do
attr_accessor :c
def initialize(c); @c = c; end
def ==(o); @c == o.c; end
end
end
specify "should return nil for a naked dataset" do
@dataset.polymorphic_key.should be_nil
end
specify "should return the polymorphic key" do
@dataset.set_model(:id, nil => @m)
@dataset.polymorphic_key.should == :id
end
end
context "A model dataset" do
setup do
@c = Class.new(Sequel::Dataset) do
def fetch_rows(sql, &block)
(1..10).each(&block)
end
end
@dataset = @c.new(nil).from(:items)
@m = Class.new do
attr_accessor :c
def initialize(c); @c = c; end
def ==(o); @c == o.c; end
end
@dataset.set_model(@m)
end
specify "should supply naked records if the naked option is specified" do
@dataset.each {|r| r.class.should == @m}
@dataset.each(:naked => true) {|r| r.class.should == Fixnum}
end
end
context "A polymorphic model dataset" do
setup do
@c = Class.new(Sequel::Dataset) do
def fetch_rows(sql, &block)
(1..10).each {|i| block.call(:bit => i[0])}
end
end
@dataset = @c.new(nil).from(:items)
@m = Class.new do
attr_accessor :c
def initialize(c); @c = c; end
def ==(o); @c == o.c; end
end
end
specify "should use a nil key in the polymorphic hash to specify the default model class" do
@m2 = Class.new(@m)
@dataset.set_model(:bit, nil => @m, 1 => @m2)
all = @dataset.all
all[0].class.should == @m2
all[1].class.should == @m
all[2].class.should == @m2
all[3].class.should == @m
#...
end
specify "should raise Sequel::Error if no suitable class is found in the polymorphic hash" do
@m2 = Class.new(@m)
@dataset.set_model(:bit, 1 => @m2)
proc {@dataset.all}.should raise_error(Sequel::Error)
end
specify "should supply naked records if the naked option is specified" do
@dataset.set_model(:bit, nil => @m)
@dataset.each(:naked => true) {|r| r.class.should == Hash}
end
end
context "A dataset with associated model class(es)" do
setup do
@c = Class.new(Sequel::Dataset) do
def fetch_rows(sql, &block)
block.call({:x => 1, :y => 2})
end
end
@dataset = @c.new(nil).from(:items)
@m1 = Class.new do
attr_accessor :v
def initialize(v); @v = v; end
end
@m2 = Class.new do
attr_accessor :v, :vv
def initialize(v = nil); @v = v; end
def self.load(v); o = new(nil); o.vv = v; o; end
end
@m3 = Class.new(@m2)
end
specify "should instantiate an instance by passing the record hash as argument" do
@dataset.set_model(@m1)
o = @dataset.first
o.class.should == @m1
o.v.should == {:x => 1, :y => 2}
end
specify "should use the .load constructor if available" do
@dataset.set_model(@m2)
o = @dataset.first
o.class.should == @m2
o.v.should == nil
o.vv.should == {:x => 1, :y => 2}
end
specify "should use the .load constructor also for polymorphic datasets" do
@dataset.set_model(:y, 1 => @m2, 2 => @m3)
o = @dataset.first
o.class.should == @m3
o.v.should == nil
o.vv.should == {:x => 1, :y => 2}
end
end
context "Dataset#destroy" do
setup do
db = Object.new
m = Module.new do
def transaction; yield; end
end
db.extend(m)
$DESTROYED = []
@m = Class.new do
def initialize(c)
@c = c
end
attr_accessor :c
def ==(o)
@c == o.c
end
def destroy
$DESTROYED << self
end
end
$MODELS = [@m.new(12), @m.new(13)]
c = Class.new(Sequel::Dataset) do
def fetch_rows(sql, &block)
(12..13).each(&block)
end
end
@d = c.new(db).from(:test)
@d.set_model(@m)
end
specify "should call destroy for every model instance in the dataset" do
count = @d.destroy
count.should == 2
$DESTROYED.should == $MODELS
end
specify "should raise error if no models are associated with the dataset" do
proc {@d.naked.destroy}.should raise_error(Sequel::Error)
end
end
context "Dataset#<<" do
setup do
@d = Sequel::Dataset.new(nil)
@d.meta_def(:insert) do
1234567890
end
end
specify "should call #insert" do
(@d << {:name => 1}).should == 1234567890
end
end
context "A paginated dataset" do
setup do
@d = Sequel::Dataset.new(nil)
@d.meta_def(:count) {153}
@paginated = @d.paginate(1, 20)
end
specify "should raise an error if the dataset already has a limit" do
proc{@d.limit(10).paginate(1,10)}.should raise_error(Sequel::Error)
proc{@paginated.paginate(2,20)}.should raise_error(Sequel::Error)
end
specify "should set the limit and offset options correctly" do
@paginated.opts[:limit].should == 20
@paginated.opts[:offset].should == 0
end
specify "should set the page count correctly" do
@paginated.page_count.should == 8
@d.paginate(1, 50).page_count.should == 4
end
specify "should set the current page number correctly" do
@paginated.current_page.should == 1
@d.paginate(3, 50).current_page.should == 3
end
specify "should return the next page number or nil if we're on the last" do
@paginated.next_page.should == 2
@d.paginate(4, 50).next_page.should be_nil
end
specify "should return the previous page number or nil if we're on the last" do
@paginated.prev_page.should be_nil
@d.paginate(4, 50).prev_page.should == 3
end
specify "should return the page range" do
@paginated.page_range.should == (1..8)
@d.paginate(4, 50).page_range.should == (1..4)
end
specify "should return the record range for the current page" do
@paginated.current_page_record_range.should == (1..20)
@d.paginate(4, 50).current_page_record_range.should == (151..153)
@d.paginate(5, 50).current_page_record_range.should == (0..0)
end
specify "should return the record count for the current page" do
@paginated.current_page_record_count.should == 20
@d.paginate(3, 50).current_page_record_count.should == 50
@d.paginate(4, 50).current_page_record_count.should == 3
@d.paginate(5, 50).current_page_record_count.should == 0
end
specify "should work with fixed sql" do
ds = @d.clone(:sql => 'select * from blah')
ds.meta_def(:count) {150}
ds.paginate(2, 50).sql.should == 'SELECT * FROM (select * from blah) t1 LIMIT 50 OFFSET 50'
end
end
context "Dataset#each_page" do
setup do
@d = Sequel::Dataset.new(nil).from(:items)
@d.meta_def(:count) {153}
end
specify "should raise an error if the dataset already has a limit" do
proc{@d.limit(10).each_page(10){}}.should raise_error(Sequel::Error)
end
specify "should iterate over each page in the resultset as a paginated dataset" do
a = []
@d.each_page(50) {|p| a << p}
a.map {|p| p.sql}.should == [
'SELECT * FROM items LIMIT 50 OFFSET 0',
'SELECT * FROM items LIMIT 50 OFFSET 50',
'SELECT * FROM items LIMIT 50 OFFSET 100',
'SELECT * FROM items LIMIT 50 OFFSET 150',
]
end
end
context "Dataset#columns" do
setup do
@dataset = DummyDataset.new(nil).from(:items)
@dataset.meta_def(:columns=) {|c| @columns = c}
@dataset.meta_def(:first) {@columns = select_sql(nil)}
end
specify "should return the value of @columns" do
@dataset.columns = [:a, :b, :c]
@dataset.columns.should == [:a, :b, :c]
end
specify "should call first if @columns is nil" do
@dataset.columns = nil
@dataset.columns.should == 'SELECT * FROM items'
@dataset.opts[:from] = [:nana]
@dataset.columns.should == 'SELECT * FROM items'
end
end
context "Dataset#columns!" do
setup do
@dataset = DummyDataset.new(nil).from(:items)
@dataset.meta_def(:columns=) {|c| @columns = c}
@dataset.meta_def(:first) {@columns = select_sql(nil)}
end
specify "should always call first" do
@dataset.columns = nil
@dataset.columns!.should == 'SELECT * FROM items'
@dataset.opts[:from] = [:nana]
@dataset.columns!.should == 'SELECT * FROM nana'
end
end
require 'stringio'
context "Dataset#print" do
setup do
@output = StringIO.new
@orig_stdout = $stdout
$stdout = @output
@dataset = DummyDataset.new(nil).from(:items)
end
teardown do
$stdout = @orig_stdout
end
specify "should print out a table with the values" do
@dataset.print(:a, :b)
@output.rewind
@output.read.should == \
"+-+-+\n|a|b|\n+-+-+\n|1|2|\n|3|4|\n|5|6|\n+-+-+\n"
end
specify "should default to the dataset's columns" do
@dataset.meta_def(:columns) {[:a, :b]}
@dataset.print
@output.rewind
@output.read.should == \
"+-+-+\n|a|b|\n+-+-+\n|1|2|\n|3|4|\n|5|6|\n+-+-+\n"
end
end
context "Dataset#multi_insert" do
setup do
@dbc = Class.new do
attr_reader :sqls
def execute(sql)
@sqls ||= []
@sqls << sql
end
def transaction
@sqls ||= []
@sqls << 'BEGIN'
yield
@sqls << 'COMMIT'
end
end
@db = @dbc.new
@ds = Sequel::Dataset.new(@db).from(:items)
@list = [{:name => 'abc'}, {:name => 'def'}, {:name => 'ghi'}]
end
specify "should join all inserts into a single SQL string" do
@ds.multi_insert(@list)
@db.sqls.should == [
'BEGIN',
"INSERT INTO items (name) VALUES ('abc')",
"INSERT INTO items (name) VALUES ('def')",
"INSERT INTO items (name) VALUES ('ghi')",
'COMMIT'
]
end
specify "should accept the :commit_every option for committing every x records" do
@ds.multi_insert(@list, :commit_every => 2)
@db.sqls.should == [
'BEGIN',
"INSERT INTO items (name) VALUES ('abc')",
"INSERT INTO items (name) VALUES ('def')",
'COMMIT',
'BEGIN',
"INSERT INTO items (name) VALUES ('ghi')",
'COMMIT'
]
end
specify "should accept the :slice option for committing every x records" do
@ds.multi_insert(@list, :slice => 2)
@db.sqls.should == [
'BEGIN',
"INSERT INTO items (name) VALUES ('abc')",
"INSERT INTO items (name) VALUES ('def')",
'COMMIT',
'BEGIN',
"INSERT INTO items (name) VALUES ('ghi')",
'COMMIT'
]
end
specify "should accept a columns array and a values array" do
@ds.multi_insert([:x, :y], [[1, 2], [3, 4]])
@db.sqls.should == [
'BEGIN',
"INSERT INTO items (x, y) VALUES (1, 2)",
"INSERT INTO items (x, y) VALUES (3, 4)",
'COMMIT'
]
end
specify "should accept a columns array and a dataset" do
@ds2 = Sequel::Dataset.new(@db).from(:cats).filter(:purr => true).select(:a, :b)
@ds.multi_insert([:x, :y], @ds2)
@db.sqls.should == [
'BEGIN',
"INSERT INTO items (x, y) VALUES (SELECT a, b FROM cats WHERE (purr = 't'))",
'COMMIT'
]
end
specify "should accept a columns array and a values array with slice option" do
@ds.multi_insert([:x, :y], [[1, 2], [3, 4], [5, 6]], :slice => 2)
@db.sqls.should == [
'BEGIN',
"INSERT INTO items (x, y) VALUES (1, 2)",
"INSERT INTO items (x, y) VALUES (3, 4)",
'COMMIT',
'BEGIN',
"INSERT INTO items (x, y) VALUES (5, 6)",
'COMMIT'
]
end
specify "should be aliased by #import" do
@ds.import([:x, :y], [[1, 2], [3, 4], [5, 6]], :slice => 2)
@db.sqls.should == [
'BEGIN',
"INSERT INTO items (x, y) VALUES (1, 2)",
"INSERT INTO items (x, y) VALUES (3, 4)",
'COMMIT',
'BEGIN',
"INSERT INTO items (x, y) VALUES (5, 6)",
'COMMIT'
]
end
specify "should not do anything if no columns or values are given" do
@ds.multi_insert
@db.sqls.should be_nil
@ds.multi_insert([])
@db.sqls.should be_nil
@ds.multi_insert([], [])
@db.sqls.should be_nil
@ds.multi_insert([{}, {}])
@db.sqls.should be_nil
@ds.multi_insert([:a, :b], [])
@db.sqls.should be_nil
@ds.multi_insert([:x, :y], [[1, 2], [3, 4], [5, 6]], :slice => 2)
@db.sqls.should == [
'BEGIN',
"INSERT INTO items (x, y) VALUES (1, 2)",
"INSERT INTO items (x, y) VALUES (3, 4)",
'COMMIT',
'BEGIN',
"INSERT INTO items (x, y) VALUES (5, 6)",
'COMMIT'
]
end
end
context "Dataset#query" do
setup do
@d = Sequel::Dataset.new(nil)
end
specify "should support #from" do
q = @d.query {from :xxx}
q.class.should == @d.class
q.sql.should == "SELECT * FROM xxx"
end
specify "should support #select" do
q = @d.query do
select :a, :b___mongo
from :yyy
end
q.class.should == @d.class
q.sql.should == "SELECT a, b AS mongo FROM yyy"
end
specify "should support #where" do
q = @d.query do
from :zzz
where {:x + 2 > :y + 3}
end
q.class.should == @d.class
q.sql.should == "SELECT * FROM zzz WHERE ((x + 2) > (y + 3))"
q = @d.from(:zzz).query do
where {:x > 1 && :y > 2}
end
q.class.should == @d.class
q.sql.should == "SELECT * FROM zzz WHERE ((x > 1) AND (y > 2))"
q = @d.from(:zzz).query do
where :x => 33
end
q.class.should == @d.class
q.sql.should == "SELECT * FROM zzz WHERE (x = 33)"
end
specify "should support #group_by and #having" do
q = @d.query do
from :abc
group_by :id
having {:x >= 2}
end
q.class.should == @d.class
q.sql.should == "SELECT * FROM abc GROUP BY id HAVING (x >= 2)"
end
specify "should support #order, #order_by" do
q = @d.query do
from :xyz
order_by :stamp
end
q.class.should == @d.class
q.sql.should == "SELECT * FROM xyz ORDER BY stamp"
end
specify "should raise on non-chainable method calls" do
proc {@d.query {count}}.should raise_error(Sequel::Error)
end
specify "should raise on each, insert, update, delete" do
proc {@d.query {each}}.should raise_error(Sequel::Error)
proc {@d.query {insert(:x => 1)}}.should raise_error(Sequel::Error)
proc {@d.query {update(:x => 1)}}.should raise_error(Sequel::Error)
proc {@d.query {delete}}.should raise_error(Sequel::Error)
end
end
context "Dataset" do
setup do
@d = Sequel::Dataset.new(nil).from(:x)
end
specify "should support self-changing select!" do
@d.select!(:y)
@d.sql.should == "SELECT y FROM x"
end
specify "should support self-changing from!" do
@d.from!(:y)
@d.sql.should == "SELECT * FROM y"
end
specify "should support self-changing order!" do
@d.order!(:y)
@d.sql.should == "SELECT * FROM x ORDER BY y"
end
specify "should support self-changing filter!" do
@d.filter!(:y => 1)
@d.sql.should == "SELECT * FROM x WHERE (y = 1)"
end
specify "should support self-changing filter! with block" do
@d.filter! {:y == 2}
@d.sql.should == "SELECT * FROM x WHERE (y = 2)"
end
specify "should raise for ! methods that don't return a dataset" do
proc {@d.opts!}.should raise_error(NameError)
end
specify "should raise for missing methods" do
proc {@d.xuyz}.should raise_error(NameError)
proc {@d.xyz!}.should raise_error(NameError)
proc {@d.xyz?}.should raise_error(NameError)
end
specify "should support chaining of bang methods" do
@d.order!(:y)
@d.filter!(:y => 1)
@d.sql.should == "SELECT * FROM x WHERE (y = 1) ORDER BY y"
end
end
context "Dataset#transform" do
setup do
@c = Class.new(Sequel::Dataset) do
attr_accessor :raw
attr_accessor :sql
def fetch_rows(sql, &block)
block[@raw]
end
def insert(v)
@sql = insert_sql(v)
end
def update(v)
@sql = update_sql(v)
end
end
@ds = @c.new(nil).from(:items)
@ds.transform(:x => [
proc {|v| Marshal.load(v)},
proc {|v| Marshal.dump(v)}
])
end
specify "should change the dataset to transform values loaded from the database" do
@ds.raw = {:x => Marshal.dump([1, 2, 3]), :y => 'hello'}
@ds.first.should == {:x => [1, 2, 3], :y => 'hello'}
@ds.raw = {:x => Marshal.dump([1, 2, 3]), :y => 'hello'}
@ds.all.should == [{:x => [1, 2, 3], :y => 'hello'}]
end
specify "should change the dataset to transform values saved to the database" do
@ds.insert(:x => :toast)
@ds.sql.should == "INSERT INTO items (x) VALUES ('#{Marshal.dump(:toast)}')"
@ds.insert(:y => 'butter')
@ds.sql.should == "INSERT INTO items (y) VALUES ('butter')"
@ds.update(:x => ['dream'])
@ds.sql.should == "UPDATE items SET x = '#{Marshal.dump(['dream'])}'"
end
specify "should be transferred to cloned datasets" do
@ds2 = @ds.filter(:a => 1)
@ds2.raw = {:x => Marshal.dump([1, 2, 3]), :y => 'hello'}
@ds2.first.should == {:x => [1, 2, 3], :y => 'hello'}
@ds2.insert(:x => :toast)
@ds2.sql.should == "INSERT INTO items (x) VALUES ('#{Marshal.dump(:toast)}')"
end
specify "should work correctly together with set_row_proc" do
@ds.row_proc = proc{|r| r[:z] = r[:x] * 2; r}
@ds.raw = {:x => Marshal.dump("wow"), :y => 'hello'}
@ds.first.should == {:x => "wow", :y => 'hello', :z => "wowwow"}
f = nil
@ds.raw = {:x => Marshal.dump("wow"), :y => 'hello'}
@ds.each(:naked => true) {|r| f = r}
f.should == {:x => "wow", :y => 'hello'}
end
specify "should leave the supplied values intact" do
h = {:x => :toast}
@ds.insert(h)
h.should == {:x => :toast}
end
end
context "Dataset#transform" do
setup do
@c = Class.new(Sequel::Dataset) do
attr_accessor :raw
attr_accessor :sql
def fetch_rows(sql, &block)
block[@raw]
end
def insert(v)
@sql = insert_sql(v)
end
def update(v)
@sql = update_sql(v)
end
end
@ds = @c.new(nil).from(:items)
end
specify "should raise Sequel::Error for invalid transformations" do
proc {@ds.transform(:x => 'mau')}.should raise_error(Sequel::Error::InvalidTransform)
proc {@ds.transform(:x => :mau)}.should raise_error(Sequel::Error::InvalidTransform)
proc {@ds.transform(:x => [])}.should raise_error(Sequel::Error::InvalidTransform)
proc {@ds.transform(:x => ['mau'])}.should raise_error(Sequel::Error::InvalidTransform)
proc {@ds.transform(:x => [proc {|v|}, proc {|v|}])}.should_not raise_error(Sequel::Error::InvalidTransform)
end
specify "should support stock YAML transformation" do
@ds.transform(:x => :yaml)
@ds.raw = {:x => [1, 2, 3].to_yaml, :y => 'hello'}
@ds.first.should == {:x => [1, 2, 3], :y => 'hello'}
@ds.insert(:x => :toast)
@ds.sql.should == "INSERT INTO items (x) VALUES ('#{:toast.to_yaml}')"
@ds.insert(:y => 'butter')
@ds.sql.should == "INSERT INTO items (y) VALUES ('butter')"
@ds.update(:x => ['dream'])
@ds.sql.should == "UPDATE items SET x = '#{['dream'].to_yaml}'"
@ds2 = @ds.filter(:a => 1)
@ds2.raw = {:x => [1, 2, 3].to_yaml, :y => 'hello'}
@ds2.first.should == {:x => [1, 2, 3], :y => 'hello'}
@ds2.insert(:x => :toast)
@ds2.sql.should == "INSERT INTO items (x) VALUES ('#{:toast.to_yaml}')"
@ds.row_proc = proc{|r| r[:z] = r[:x] * 2; r}
@ds.raw = {:x => "wow".to_yaml, :y => 'hello'}
@ds.first.should == {:x => "wow", :y => 'hello', :z => "wowwow"}
f = nil
@ds.raw = {:x => "wow".to_yaml, :y => 'hello'}
@ds.each(:naked => true) {|r| f = r}
f.should == {:x => "wow", :y => 'hello'}
end
specify "should support stock Marshal transformation with Base64 encoding" do
@ds.transform(:x => :marshal)
@ds.raw = {:x => Base64.encode64(Marshal.dump([1, 2, 3])), :y => 'hello'}
@ds.first.should == {:x => [1, 2, 3], :y => 'hello'}
@ds.insert(:x => :toast)
@ds.sql.should == "INSERT INTO items (x) VALUES ('#{Base64.encode64(Marshal.dump(:toast))}')"
@ds.insert(:y => 'butter')
@ds.sql.should == "INSERT INTO items (y) VALUES ('butter')"
@ds.update(:x => ['dream'])
@ds.sql.should == "UPDATE items SET x = '#{Base64.encode64(Marshal.dump(['dream']))}'"
@ds2 = @ds.filter(:a => 1)
@ds2.raw = {:x => Base64.encode64(Marshal.dump([1, 2, 3])), :y => 'hello'}
@ds2.first.should == {:x => [1, 2, 3], :y => 'hello'}
@ds2.insert(:x => :toast)
@ds2.sql.should == "INSERT INTO items (x) VALUES ('#{Base64.encode64(Marshal.dump(:toast))}')"
@ds.row_proc = proc{|r| r[:z] = r[:x] * 2; r}
@ds.raw = {:x => Base64.encode64(Marshal.dump("wow")), :y => 'hello'}
@ds.first.should == {:x => "wow", :y => 'hello', :z => "wowwow"}
f = nil
@ds.raw = {:x => Base64.encode64(Marshal.dump("wow")), :y => 'hello'}
@ds.each(:naked => true) {|r| f = r}
f.should == {:x => "wow", :y => 'hello'}
end
specify "should support loading of Marshalled values without Base64 encoding" do
@ds.transform(:x => :marshal)
@ds.raw = {:x => Marshal.dump([1,2,3]), :y => nil}
@ds.first.should == {:x => [1,2,3], :y => nil}
end
specify "should return self" do
@ds.transform(:x => :marshal).should be(@ds)
end
end
context "A dataset with a transform" do
setup do
@ds = Sequel::Dataset.new(nil).from(:items)
@ds.transform(:x => :marshal)
end
specify "should automatically transform hash filters" do
@ds.filter(:y => 2).sql.should == 'SELECT * FROM items WHERE (y = 2)'
@ds.filter(:x => 2).sql.should == "SELECT * FROM items WHERE (x = '#{Base64.encode64(Marshal.dump(2))}')"
end
end
context "Dataset#to_csv" do
setup do
@c = Class.new(Sequel::Dataset) do
attr_accessor :data
attr_accessor :columns
def fetch_rows(sql, &block)
@data.each(&block)
end
# naked should return self here because to_csv wants a naked result set.
def naked
self
end
end
@ds = @c.new(nil).from(:items)
@ds.columns = [:a, :b, :c]
@ds.data = [ {:a=>1, :b=>2, :c=>3}, {:a=>4, :b=>5, :c=>6}, {:a=>7, :b=>8, :c=>9} ]
end
specify "should format a CSV representation of the records" do
@ds.to_csv.should ==
"a, b, c\r\n1, 2, 3\r\n4, 5, 6\r\n7, 8, 9\r\n"
end
specify "should exclude column titles if so specified" do
@ds.to_csv(false).should ==
"1, 2, 3\r\n4, 5, 6\r\n7, 8, 9\r\n"
end
end
### DEPRECATED
context "Dataset magic methods" do
setup do
@c = Class.new(Sequel::Dataset) do
@@sqls = []
def self.sqls; @@sqls; end
def fetch_rows(sql)
@@sqls << sql
yield({:a => 1, :b => 2})
end
end
@ds = @c.new(nil).from(:items)
end
specify "should support order_by_xxx" do
@ds.should_not respond_to(:order_by_name)
proc {@ds.order_by_name}.should_not raise_error
@ds.should respond_to(:order_by_name)
@ds.order_by_name.should be_a_kind_of(@c)
@ds.order_by_name.sql.should == "SELECT * FROM items ORDER BY name"
end
specify "should support group_by_xxx" do
@ds.should_not respond_to(:group_by_name)
proc {@ds.group_by_name}.should_not raise_error
@ds.should respond_to(:group_by_name)
@ds.group_by_name.should be_a_kind_of(@c)
@ds.group_by_name.sql.should == "SELECT * FROM items GROUP BY name"
end
specify "should support count_by_xxx" do
@ds.should_not respond_to(:count_by_name)
proc {@ds.count_by_name}.should_not raise_error
@ds.should respond_to(:count_by_name)
@ds.count_by_name.should be_a_kind_of(@c)
@ds.count_by_name.sql.should == "SELECT name, count(*) AS count FROM items GROUP BY name ORDER BY count"
end
specify "should support filter_by_xxx" do
@ds.should_not respond_to(:filter_by_name)
proc {@ds.filter_by_name('sharon')}.should_not raise_error
@ds.should respond_to(:filter_by_name)
@ds.filter_by_name('sharon').should be_a_kind_of(@c)
@ds.filter_by_name('sharon').sql.should == "SELECT * FROM items WHERE (name = 'sharon')"
end
specify "should support all_by_xxx" do
@ds.should_not respond_to(:all_by_name)
proc {@ds.all_by_name('sharon')}.should_not raise_error
@ds.should respond_to(:all_by_name)
@ds.all_by_name('sharon').should == [{:a => 1, :b => 2}]
@c.sqls.should == ["SELECT * FROM items WHERE (name = 'sharon')"] * 2
end
specify "should support find_by_xxx" do
@ds.should_not respond_to(:find_by_name)
proc {@ds.find_by_name('sharon')}.should_not raise_error
@ds.should respond_to(:find_by_name)
@ds.find_by_name('sharon').should == {:a => 1, :b => 2}
@c.sqls.should == ["SELECT * FROM items WHERE (name = 'sharon') LIMIT 1"] * 2
end
specify "should support first_by_xxx" do
@ds.should_not respond_to(:first_by_name)
proc {@ds.first_by_name('sharon')}.should_not raise_error
@ds.should respond_to(:first_by_name)
@ds.first_by_name('sharon').should == {:a => 1, :b => 2}
@c.sqls.should == ["SELECT * FROM items ORDER BY name LIMIT 1"] * 2
end
specify "should support last_by_xxx" do
@ds.should_not respond_to(:last_by_name)
proc {@ds.last_by_name('sharon')}.should_not raise_error
@ds.should respond_to(:last_by_name)
@ds.last_by_name('sharon').should == {:a => 1, :b => 2}
@c.sqls.should == ["SELECT * FROM items ORDER BY name DESC LIMIT 1"] * 2
end
end
context "Dataset#create_view" do
setup do
@dbc = Class.new(Sequel::Database) do
attr_reader :sqls
def execute(sql)
@sqls ||= []
@sqls << sql
end
end
@db = @dbc.new
@ds = @db[:items].order(:abc).filter(:category => 'ruby')
end
specify "should create a view with the dataset's sql" do
@ds.create_view(:xyz)
@db.sqls.should == ["CREATE VIEW xyz AS #{@ds.sql}"]
end
end
context "Dataset#create_or_replace_view" do
setup do
@dbc = Class.new(Sequel::Database) do
attr_reader :sqls
def execute(sql)
@sqls ||= []
@sqls << sql
end
end
@db = @dbc.new
@ds = @db[:items].order(:abc).filter(:category => 'ruby')
end
specify "should create a view with the dataset's sql" do
@ds.create_or_replace_view(:xyz)
@db.sqls.should == ["CREATE OR REPLACE VIEW xyz AS #{@ds.sql}"]
end
end
context "Dataset#update_sql" do
setup do
@ds = Sequel::Dataset.new(nil).from(:items)
end
specify "should accept strings" do
@ds.update_sql("a = b").should == "UPDATE items SET a = b"
end
specify "should accept hash with string keys" do
@ds.update_sql('c' => 'd').should == "UPDATE items SET c = 'd'"
end
specify "should accept array subscript references" do
@ds.update_sql((:day|1) => 'd').should == "UPDATE items SET day[1] = 'd'"
end
end
context "Dataset#insert_sql" do
setup do
@ds = Sequel::Dataset.new(nil).from(:items)
end
specify "should accept hash with symbol keys" do
@ds.insert_sql(:c => 'd').should == "INSERT INTO items (c) VALUES ('d')"
end
specify "should accept hash with string keys" do
@ds.insert_sql('c' => 'd').should == "INSERT INTO items (c) VALUES ('d')"
end
specify "should accept array subscript references" do
@ds.insert_sql((:day|1) => 'd').should == "INSERT INTO items (day[1]) VALUES ('d')"
end
end
class DummyMummyDataset < Sequel::Dataset
def first
raise if @opts[:from] == [:a]
true
end
end
class DummyMummyDatabase < Sequel::Database
attr_reader :sqls
def execute(sql)
@sqls ||= []
@sqls << sql
end
def transaction; yield; end
def dataset
DummyMummyDataset.new(self)
end
end
context "Dataset#table_exists?" do
setup do
@db = DummyMummyDatabase.new
@db.stub!(:tables).and_return([:a, :b])
@db2 = DummyMummyDatabase.new
end
specify "should use Database#tables if available" do
@db[:a].table_exists?.should be_true
@db[:b].table_exists?.should be_true
@db[:c].table_exists?.should be_false
end
specify "should otherwise try to select the first record from the table's dataset" do
@db2[:a].table_exists?.should be_false
@db2[:b].table_exists?.should be_true
end
specify "should raise Sequel::Error if dataset references more than one table" do
proc {@db.from(:a, :b).table_exists?}.should raise_error(Sequel::Error)
end
specify "should raise Sequel::Error if dataset is from a subquery" do
proc {@db.from(@db[:a]).table_exists?}.should raise_error(Sequel::Error)
end
specify "should raise Sequel::Error if dataset has fixed sql" do
proc {@db['select * from blah'].table_exists?}.should raise_error(Sequel::Error)
end
end
context "Dataset#inspect" do
setup do
@ds = Sequel::Dataset.new(nil).from(:blah)
end
specify "should include the class name and the corresponding SQL statement" do
@ds.inspect.should == '#<%s: %s>' % [@ds.class.to_s, @ds.sql.inspect]
end
end
context "Dataset#all" do
setup do
@c = Class.new(Sequel::Dataset) do
def fetch_rows(sql, &block)
block.call({:x => 1, :y => 2})
block.call({:x => 3, :y => 4})
block.call(sql)
end
end
@dataset = @c.new(nil).from(:items)
end
specify "should return an array with all records" do
@dataset.all.should == [
{:x => 1, :y => 2},
{:x => 3, :y => 4},
"SELECT * FROM items"
]
end
specify "should accept options and pass them to #each" do
@dataset.all(:limit => 33).should == [
{:x => 1, :y => 2},
{:x => 3, :y => 4},
"SELECT * FROM items LIMIT 33"
]
end
specify "should iterate over the array if a block is given" do
a = []
@dataset.all do |r|
a << (r.is_a?(Hash) ? r[:x] : r)
end
a.should == [1, 3, "SELECT * FROM items"]
end
end
context "Dataset#grep" do
setup do
@ds = Sequel::Dataset.new(nil).from(:posts)
end
specify "should format a SQL filter correctly" do
@ds.grep(:title, 'ruby').sql.should ==
"SELECT * FROM posts WHERE (title LIKE 'ruby')"
end
specify "should support multiple columns" do
@ds.grep([:title, :body], 'ruby').sql.should ==
"SELECT * FROM posts WHERE ((title LIKE 'ruby') OR (body LIKE 'ruby'))"
end
specify "should support multiple search terms" do
@ds.grep(:title, ['abc', 'def']).sql.should ==
"SELECT * FROM posts WHERE ((title LIKE 'abc') OR (title LIKE 'def'))"
end
specify "should support multiple columns and search terms" do
@ds.grep([:title, :body], ['abc', 'def']).sql.should ==
"SELECT * FROM posts WHERE ((title LIKE 'abc') OR (title LIKE 'def') OR (body LIKE 'abc') OR (body LIKE 'def'))"
end
specify "should support regexps if the dataset allows it" do
@ds.meta_def(:match_expr) do |l, r|
case r
when String
"(#{literal(l)} LIKE #{literal(r)})"
when Regexp
"(#{literal(l)} =~ #{literal(r.source)})"
else
raise Sequel::Error, "Unsupported match pattern class (#{r.class})."
end
end
@ds.grep(:title, /ruby/).sql.should ==
"SELECT * FROM posts WHERE (title =~ 'ruby')"
@ds.grep(:title, [/^ruby/, 'ruby']).sql.should ==
"SELECT * FROM posts WHERE ((title =~ '^ruby') OR (title LIKE 'ruby'))"
end
end
|