1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225
|
- name: empty input
input: ''
expected: ''
- name: empty query
args:
- ''
input: '128'
expected: |
128
- name: comment only query
args:
- '# comment'
input: '128'
expected: |
128
- name: query with comment
args:
- |
# comment
1,
# comment \
comment \ 0 \
comment
2,
# comment \
comment \\
3, # \
comment \\\
comment \\
4 #
input: 'null'
expected: |
1
2
3
4
- name: query with comment with newline in dos format
args:
- "1, # \r\n2, # \\\r\ncomment\\\\\r\n3"
input: 'null'
expected: |
1
2
3
- name: query with comment with newline in mac format
args:
- "1, # \r2, # \\\rcomment\\\\\r3"
input: 'null'
expected: |
1
2
3
- name: number input
args:
- '.'
input: '128'
expected: |
128
- name: number query
args:
- '0, 128, 01000, 3.14, 1.2e3, 1E+3, 1E-9'
input: '0'
expected: |
0
128
1000
3.14
1200
1000
1e-9
- name: number literal error
args:
- '0..[empty]'
input: '0'
error: |
invalid query: 0..[empty]
0..[empty]
^ invalid token "0.."
exit_code: 3
- name: string input
args:
- '.'
input: '"Hello, world! \r\n\t\f\b\"\\\/\uff06"'
expected: |
"Hello, world! \r\n\t\f\b\"\\/&"
- name: string query
args:
- '" Hello, world! \r\n\t\f\b\"\\\/\uff10 "'
input: 'null'
expected: |
" Hello, world! \r\n\t\f\b\"\\/0 "
- name: string query including newlines
args:
- "\"a\n\\(\"\nb\nc\n\")\nd\n\""
input: 'null'
expected: |
"a\n\nb\nc\n\nd\n"
- name: string query including control characters
args:
- "\"\x01\x07\x0f\\n\", \"\x7f\\n\""
input: 'null'
expected: |
"\u0001\u0007\u000f\n"
"\u007f\n"
- name: string query including surrogate pairs
args:
- '"\ud83d\ude04" | length, utf8bytelength, explode[]'
input: 'null'
expected: |
1
4
128516
- name: string query error
args:
- '. + "foo'
input: 'null'
error: |
invalid query: . + "foo
. + "foo
^ unterminated string literal
exit_code: 3
- name: string query error
args:
- '"foo\,bar"'
input: 'null'
error: |
invalid query: "foo\,bar"
"foo\,bar"
^ invalid escape sequence "\," in string literal
exit_code: 3
- name: string query error
args:
- '"\u"'
input: 'null'
error: |
invalid query: "\u"
"\u"
^ invalid escape sequence "\u" in string literal
exit_code: 3
- name: string query error
args:
- "\"\n\\u\n\""
input: 'null'
error: |
invalid query: <arg>:2
2 | \u
^ invalid escape sequence "\u" in string literal
exit_code: 3
- name: string query error
args:
- '"\u'
input: 'null'
error: |
invalid query: "\u
"\u
^ invalid escape sequence "\u" in string literal
exit_code: 3
- name: string query error
args:
- '"\'
input: 'null'
error: |
invalid query: "\
"\
^ unterminated string literal
exit_code: 3
- name: string query error
args:
- '"\"'
input: 'null'
error: |
invalid query: "\"
"\"
^ unterminated string literal
exit_code: 3
- name: string query error
args:
- '"\u````"'
input: 'null'
error: |
invalid query: "\u````"
"\u````"
^ invalid escape sequence "\u" in string literal
exit_code: 3
- name: string query error
args:
- '"\uAA\uAA"'
input: 'null'
error: |
invalid query: "\uAA\uAA"
"\uAA\uAA"
^ invalid escape sequence "\uAA" in string literal
exit_code: 3
- name: string query error
args:
- '"\uAA@AA"'
input: 'null'
error: |
invalid query: "\uAA@AA"
"\uAA@AA"
^ invalid escape sequence "\uAA" in string literal
exit_code: 3
- name: string query error
args:
- '"\uAAGA"'
input: 'null'
error: |
invalid query: "\uAAGA"
"\uAAGA"
^ invalid escape sequence "\uAA" in string literal
exit_code: 3
- name: string query error
args:
- '"\ufffg"'
input: 'null'
error: |
invalid query: "\ufffg"
"\ufffg"
^ invalid escape sequence "\ufff" in string literal
exit_code: 3
- name: string query error
args:
- '"0\u00:00"'
input: 'null'
error: |
invalid query: "0\u00:00"
"0\u00:00"
^ invalid escape sequence "\u00" in string literal
exit_code: 3
- name: string query error
args:
- '"0\u0000\u000/0"'
input: 'null'
error: |
invalid query: "0\u0000\u000/0"
"0\u0000\u000/0"
^ invalid escape sequence "\u000" in string literal
exit_code: 3
- name: string query error
args:
- '"\(1) \x "'
input: 'null'
error: |
invalid query: "\(1) \x "
"\(1) \x "
^ invalid escape sequence "\x" in string literal
exit_code: 3
- name: string query error
args:
- '"\a"'
input: 'null'
error: |
invalid query: "\a"
"\a"
^ invalid escape sequence "\a" in string literal
exit_code: 3
- name: string query error
args:
- '"\u\('
input: 'null'
error: |
invalid query: "\u\(
"\u\(
^ invalid escape sequence "\u" in string literal
exit_code: 3
- name: object input
input: '{"foo": 128}'
expected: |
{
"foo": 128
}
- name: object input and string escape
input: '{"foo\\u0000\\t\\n\\r\\u001f !\"#$/09:;<>?@AZ[\\\\]^_`az{|}~\\u007f": "<\\t\\n\\r>"}'
expected: |
{
"foo\\u0000\\t\\n\\r\\u001f !\"#$/09:;<>?@AZ[\\\\]^_`az{|}~\\u007f": "<\\t\\n\\r>"
}
- name: object indexing
args:
- '.foo'
input: '{"foo": 128}'
expected: |
128
- name: object indexing with large number value
args:
- '.foo'
input: '{"foo": 4722366482869645213696}'
expected: |
4722366482869645213696
- name: object indexing by keywords
args:
- '.and,.or,.try'
input: '{"and":1,"or":2,"try":3}'
expected: |
1
2
3
- name: object indexing by brackets
args:
- '.["foo"]'
input: '{"foo": 128}'
expected: |
128
- name: object indexing by string
args:
- '."foo", ."2\(.foo[])3"'
input: '{"foo":[1,2],"213":3,"223":6}'
expected: |
[
1,
2
]
3
6
- name: object indexing by query
args:
- '.c[.a + .b]'
input: '{ "a": "b", "b": "c", "c": {"bc": 128} }'
expected: |
128
- name: object nested indexing by query
args:
- '.d[.a][.b][.c]'
input: '{ "a": "b", "b": "c", "c": "d", "d": { "b": { "c": { "d": 128 } } } }'
expected: |
128
- name: object indexing by iterator after iterator
args:
- '.c[][.a[] + .b[]]'
input: '{ "a": ["a", "b"], "b": ["c", "d"], "c": [{"ac": 1, "bc": 2, "ad": 3, "bd": 4}, {"ac": 5, "bc": 6, "ad": 7, "bd": 8}] }'
expected: |
1
5
2
6
3
7
4
8
- name: object indexing by string iterator after iterator
args:
- '.c[]."\(.a[])"'
input: '{ "a": [0,1], "b": [0,2], "c": [{"0":1,"1":2},{"0":3,"1":4}] }'
expected: |
1
3
2
4
- name: object indexing in object value
args:
- '{ message: .[].message }'
input: '[ {"message": "Hello, world" } ]'
expected: |
{
"message": "Hello, world"
}
- name: object indexing error
args:
- '.[.a + .b]'
input: '{"a": 10, "b": 20}'
error: |
expected an array but got: object ({"a":10,"b":20})
- name: object indexing value error
args:
- '.["foo"]'
input: '[]'
error: |
expected an object but got: array ([])
- name: object indexing key error
args:
- '.[null]'
input: '{}'
error: |
expected a string for object key but got: null
- name: object indexing syntax error
args:
- '. a'
input: '{}'
error: |
invalid query: . a
. a
^ unexpected token "a"
exit_code: 3
- name: expected object but got number error
args:
- '.foo.bar'
input: '{"foo": 128}'
error: |
expected an object but got: number (128)
- name: expected object but got string error
args:
- '"a"+"☆"*100 | .foo'
input: '0'
error: |
expected an object but got: string ("a☆☆☆☆☆☆☆ ...")
- name: expected object error with pipe operator
args:
- '.foo|.bar'
input: '{"foo": 128}'
error: |
expected an object but got: number (128)
- name: expected object error after iterator
args:
- '.[]|.foo|.bar'
input: '[128]'
error: |
expected an object but got: number (128)
- name: object indexing against null
args:
- '.foo.bar.baz'
input: 'null'
expected: |
null
- name: object optional indexing
args:
- '.foo?.bar?.baz?'
input: '{"foo": 128}'
- name: object optional indexing error
args:
- '.foo.bar.baz?'
input: '{"foo": 128}'
error: |
expected an object but got: number (128)
- name: object optional indexing after iterator error
args:
- '.[].foo?'
input: '128'
error: |
cannot iterate over: number (128)
- name: object optional indexing with optional operator
args:
- '.foo??, .'
input: '0'
expected: |
0
- name: error after optional operator
args:
- '1? | .foo'
input: 'null'
error: |
expected an object but got: number (1)
- name: error after optional operator with fork
args:
- '(1,2)? | .foo'
input: 'null'
error: |
expected an object but got: number (1)
- name: array indexing
args:
- '.[-4,-3,-2,-1,0,1,2,3,nan]'
input: '[0, 1, 2]'
expected: |
null
0
1
2
0
1
2
null
null
- name: array slicing
args:
- -c
- '[.[-4,-3,-2,-1,0,1,2,3:]], [.[:-4,-3,-2,-1,0,1,2,3]], [.[-1,0,1,2,3:-1,0,1,2,3]]'
input: '[0, 1, 2]'
expected: |
[[0,1,2],[0,1,2],[1,2],[2],[0,1,2],[1,2],[2],[]]
[[],[],[0],[0,1],[],[0],[0,1],[0,1,2]]
[[],[],[],[],[2],[0,1],[],[0],[0,1],[0,1,2],[1],[],[],[1],[1,2],[],[],[],[],[2],[],[],[],[],[]]
- name: array indexing and slicing by large number
args:
- -c
- '.[1e300,-1e300], .[-1e300,1e300:], .[:-1e300,1e300], .[-1e300:1e300], .[1e300:-1e300]'
input: '[0, 1, 2]'
expected: |
null
null
[0,1,2]
[]
[]
[0,1,2]
[0,1,2]
[]
- name: array indexing and slicing by large integer
args:
- -c
- '. as $x | 4722366482869645213696 as $y | $x[$y,-$y], $x[-$y,$y:], $x[:-$y,$y], $x[-$y:$y], $x[$y-$y], $x[$y/$y]'
input: '[0, 1, 2]'
expected: |
null
null
[0,1,2]
[]
[]
[0,1,2]
[0,1,2]
0
1
- name: array indexing and slicing by infinite
args:
- -c
- '.[infinite,-infinite], .[-infinite,infinite:], .[:-infinite,infinite], .[-infinite:infinite], .[infinite:-infinite]'
input: '[0, 1, 2]'
expected: |
null
null
[0,1,2]
[]
[]
[0,1,2]
[0,1,2]
[]
- name: array and string slicing by object
args:
- -c
- '[.[{"start": (null,range(-3;4)), "end": (null,range(-3;4))}]]'
input: '[0, 1, 2] "abcde"'
expected: |
[[0,1,2],[],[0],[0,1],[],[0],[0,1],[0,1,2],[0,1,2],[],[0],[0,1],[],[0],[0,1],[0,1,2],[1,2],[],[],[1],[],[],[1],[1,2],[2],[],[],[],[],[],[],[2],[0,1,2],[],[0],[0,1],[],[0],[0,1],[0,1,2],[1,2],[],[],[1],[],[],[1],[1,2],[2],[],[],[],[],[],[],[2],[],[],[],[],[],[],[],[]]
["abcde","ab","abc","abcd","","a","ab","abc","cde","","c","cd","","","","c","de","","","d","","","","","e","","","","","","","","abcde","ab","abc","abcd","","a","ab","abc","bcde","b","bc","bcd","","","b","bc","cde","","c","cd","","","","c","de","","","d","","","",""]
- name: array slicing by object against null
args:
- '.[{"start": 1, "end": 2}]'
input: 'null'
expected: |
null
- name: array slicing by object error
args:
- '.[{"start": 1}]'
input: '[]'
error: |
expected "start" and "end" for slicing but got: object ({"start":1})
- name: array nested indexing by iterator
args:
- -c
- '[.[.[]],.[.[]:],.[:.[]],.[.[]:.[]],.[-.[]],.[--.[]]]'
input: '[0, 1, 2]'
expected: |
[0,1,2,[0,1,2],[1,2],[2],[],[0],[0,1],[],[0],[0,1],[],[],[1],[],[],[],0,2,1,0,1,2]
- name: array indexing by iterator
args:
- '.c[][.a[] + .b[]]'
input: '{ "a": [0,1], "b": [0,2], "c": [[1,2,3,4],[5,6,7,8]] }'
expected: |
1
5
2
6
3
7
4
8
- name: array slicing by iterator
args:
- -c
- '.c[][.a[] : .b[]]'
input: '{ "a": [0,1], "b": [0,2], "c": [[1,2,3,4],[5,6,7,8]] }'
expected: |
[]
[]
[1,2]
[5,6]
[]
[]
[2]
[6]
- name: expected array but got object error
args:
- '.[0:1]'
input: '{"foo": 128}'
error: |
expected an array but got: object ({"foo":128})
- name: array indexing against null
args:
- '.[0]'
input: 'null'
expected: |
null
- name: array slicing against null
args:
- '.[0:1]'
input: 'null'
expected: |
null
- name: array indexing by array
args:
- -c
- '.[[1],[5,7,9],[],5,[3]]'
input: '[1,3,5,7,9,8,6,5,4,3,2,1]'
expected: |
[0,11]
[2]
[]
8
[1,9]
- name: array indexing not number error
args:
- '.[true]'
input: '[]'
error: |
expected a number for indexing an array but got: boolean (true)
- name: array slicing start error
args:
- '.[[]:0]'
input: '[]'
error: |
expected a number for indexing an array but got: array ([])
- name: array slicing end error
args:
- '.[0:{}]'
input: '[]'
error: |
expected a number for indexing an array but got: object ({})
- name: string indexing and slicing
args:
- -c
- '[.[-5],.[-1],.[0],.[3],.[4],.[6],.[2:4],.[-4:-2]]'
input: '"12345"'
expected: |
["1","5","1","4","5",null,"34","23"]
- name: string indexing not number error
args:
- '.[null]'
input: '""'
error: |
expected a number for indexing a string but got: null
- name: string slicing start error
args:
- '.[[]:]'
input: '""'
error: |
expected a number for indexing a string but got: array ([])
- name: string slicing end error
args:
- '.[:{}]'
input: '""'
error: |
expected a number for indexing a string but got: object ({})
- name: array construction
args:
- -c
- '.,[3,[[2]]],[1],[[.],3]|[.,.]'
input: 'null'
expected: |
[null,null]
[[3,[[2]]],[3,[[2]]]]
[[1],[1]]
[[[null],3],[[null],3]]
- name: array construction with error function
args:
- -c
- '[error], [0, error, 1]'
input: 'null'
expected: |
[]
[0,1]
- name: array construction with halt_error function
args:
- -c
- '[halt_error], [0, halt_error, 1]'
input: 'null'
exit_code: 5
- name: array iterator
args:
- '.foo | .[] | .'
input: '{"foo": [1,2,{"bar":[]},[3,4,5]]}'
expected: |
1
2
{
"bar": []
}
[
3,
4,
5
]
- name: iterator with optional operator
args:
- '.[]?'
input: '0'
- name: iterator with optional operator after indexing error
args:
- '.x[]?'
input: '0'
error: |
expected an object but got: number (0)
- name: nested iterator
args:
- '.[][]'
input: '[[10]]'
expected: |
10
- name: nested iterator error
args:
- '.[][]'
input: '[10]'
error: |
cannot iterate over: number (10)
- name: nested iterator with optional operator
args:
- '.[][]?'
input: '[10]'
- name: object iterator
args:
- '.[]'
input: '{"foo": 128}'
expected: |
128
- name: object optional indexing after iterator
args:
- '[.[].name?]'
input: '[ 1, { "name": 2 }, 3, { "name": 4 } ]'
expected: |
[
2,
4
]
- name: pipe
args:
- '.foo | .bar'
input: '{"foo": {"bar": {"baz": 128}}}'
expected: |
{
"baz": 128
}
- name: null value
args:
- '.[] | null'
input: '["a", 1, [], {}]'
expected: |
null
null
null
null
- name: boolean values
args:
- '.[] | true, false'
input: '["a", 1]'
expected: |
true
false
true
false
- name: empty function
args:
- '.[] | empty, empty, . + [empty,.][], [empty,.][] / 1, empty < ., . and empty, empty or .'
input: '[0, 1]'
expected: |
0
0
2
1
- name: empty function in array construction
args:
- '[empty], [0, empty, 1]'
input: 'null'
expected: |
[]
[
0,
1
]
- name: empty function in function declaration
args:
- 'def f: 1,empty,empty,2; f,f'
input: '[0, 1]'
expected: |
1
2
1
2
- name: unary operators
args:
- -c
- 'map(-.[]), map(+.[])'
input: '[[1,2,3,4722366482869645213696]]'
expected: |
[-1,-2,-3,-4722366482869645213696]
[1,2,3,4722366482869645213696]
- name: unary operator against string
args:
- '(-.)'
input: '"abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde"'
error: |
cannot negate: string ("abcdeabcdeabcdeabcdeabcd ...")
- name: unary operator with variable binding
args:
- '-1 as $x | 1, $x'
input: 'null'
expected: |
1
-1
- name: object construction
args:
- -c
- '{ foo: .foo.bar, "bar": .foo, "": false }'
input: '{"foo":{"bar":["a","b"]}}'
expected: |
{"":false,"bar":{"bar":["a","b"]},"foo":["a","b"]}
- name: object construction shortcuts
args:
- '{foo,"bar",qux,quxx:.foo}'
input: '{"foo": 1, "bar": 2, "baz": 3}'
expected: |
{
"bar": 2,
"foo": 1,
"qux": null,
"quxx": 1
}
- name: object construction with trailing comma
args:
- '{foo,bar,}'
input: '{"foo": 1, "bar": 2, "baz": 3}'
expected: |
{
"bar": 2,
"foo": 1
}
- name: object construction by keywords
args:
- '{as, and, null, module}'
input: '{"and": 1, "as": 2, "module": 3, "null": 4}'
expected: |
{
"and": 1,
"as": 2,
"module": 3,
"null": 4
}
- name: object construction with pipe in value
args:
- '{ "bar": { "baz": . } | . | select(true) }'
input: '{ "foo": 100 }'
expected: |
{
"bar": {
"baz": {
"foo": 100
}
}
}
- name: empty object
args:
- '{}'
input: '{"foo":{"bar":["a","b"]}}'
expected: |
{}
- name: unary operators in object values
args:
- '{ x: -128, y: +128 }'
input: '0'
expected: |
{
"x": -128,
"y": 128
}
- name: iterator in object values
args:
- -c
- '{ foo: .foo[], bar: .bar[] }'
input: '{"foo":[1,2],"bar":["a","b"]}'
expected: |
{"bar":"a","foo":1}
{"bar":"b","foo":1}
{"bar":"a","foo":2}
{"bar":"b","foo":2}
- name: iterator in object key
args:
- -c
- '{ (.[]): .. }'
input: '["a", "b"]'
expected: |
{"a":["a","b"]}
{"a":"a"}
{"a":"b"}
{"b":["a","b"]}
{"b":"a"}
{"b":"b"}
- name: binary operators in object key and value
args:
- -c
- '{ (.[] + .[]): (.[] + .[]) }'
input: '["foo", "bar"]'
expected: |
{"foofoo":"foofoo"}
{"foofoo":"barfoo"}
{"foofoo":"foobar"}
{"foofoo":"barbar"}
{"barfoo":"foofoo"}
{"barfoo":"barfoo"}
{"barfoo":"foobar"}
{"barfoo":"barbar"}
{"foobar":"foofoo"}
{"foobar":"barfoo"}
{"foobar":"foobar"}
{"foobar":"barbar"}
{"barbar":"foofoo"}
{"barbar":"barfoo"}
{"barbar":"foobar"}
{"barbar":"barbar"}
- name: error in object key
args:
- -c
- '{ (.[]): .. }'
input: '["a", 1]'
expected: |
{"a":["a",1]}
{"a":"a"}
{"a":1}
error: |
expected a string for object key but got: number (1)
- name: error in object value
args:
- -c
- '.[] | { (.k): .a.b }'
input: '[{"a":{"b":10},"k":"a"}, {"a":10,"k":"b"}]'
expected: |
{"a":10}
error: |
expected an object but got: number (10)
- name: variable in object keys
args:
- -c
- '. as [$x, $y, $z] | {$x: 1, $y: 2, $z: 3}'
input: |
["a","b","c"]
expected: |
{"a":1,"b":2,"c":3}
- name: pipe in object key
args:
- '{ (.foo|.bar): .foo.bar }'
input: '{"foo":{"bar":"baz"}}'
expected: |
{
"baz": "baz"
}
- name: number in object key
args:
- '{ (.foo): .foo }'
input: '{"foo":10}'
error: |
expected a string for object key but got: number (10)
- name: null in object key
args:
- '{ (.foo): .foo }'
input: '{}'
error: |
expected a string for object key but got: null
- name: keyword in object keys
args:
- -c
- '{if:0,and:1,or:2,then:3,else:4,elif:5,end:6,as:7,def:8,reduce:9,foreach:10,try:11,catch:12,label:13,import:14,include:15,module:16}'
input: 'null'
expected: |
{"and":1,"as":7,"catch":12,"def":8,"elif":5,"else":4,"end":6,"foreach":10,"if":0,"import":14,"include":15,"label":13,"module":16,"or":2,"reduce":9,"then":3,"try":11}
- name: array
args:
- '[.foo, ., false]'
input: '{"foo": {"bar": 128}}'
expected: |
[
{
"bar": 128
},
{
"foo": {
"bar": 128
}
},
false
]
- name: empty array
args:
- '[]'
input: '{"foo": {"bar": 128}}'
expected: |
[]
- name: pipe in array
args:
- '[.foo|.bar]'
input: '{"foo": {"bar": 128}}'
expected: |
[
128
]
- name: iterator in array
args:
- '[.foo|.bar[][]]'
input: '{"foo": {"bar": [[1],[2],[3]]}}'
expected: |
[
1,
2,
3
]
- name: error after iterator
args:
- '[ .[] | .foo ]'
input: '[ [1, 2, 3], 4, 5]'
error: |
expected an object but got: array ([1,2,3])
- name: function after iterator error
args:
- '.[] | .foo | null'
input: '[1, 2, 3]'
error: |
expected an object but got: number (1)
- name: multiple iterators in array
args:
- -c
- '[.[],..,.[]]'
input: '[1, 2, 3]'
expected: |
[1,2,3,[1,2,3],1,2,3,1,2,3]
- name: recurse
args:
- -c
- '..'
input: '{"foo":{"bar":["a","b"]}}'
expected: |
{"foo":{"bar":["a","b"]}}
{"bar":["a","b"]}
["a","b"]
"a"
"b"
- name: recurse after iterator
args:
- '.[] | ..'
input: '{"foo":[{"bar":128}]}'
expected: |
[
{
"bar": 128
}
]
{
"bar": 128
}
128
- name: recurse and pipe
args:
- '.. | .foo?'
input: '{"foo":{"bar":["a","b"]}}'
expected: |
{
"bar": [
"a",
"b"
]
}
null
- name: recurse in object value
args:
- -c
- '{ foo: .. }'
input: '{"foo":[1,2,3]}'
expected: |
{"foo":{"foo":[1,2,3]}}
{"foo":[1,2,3]}
{"foo":1}
{"foo":2}
{"foo":3}
- name: abs function
args:
- 'abs'
input: |
0
42
-42
0.0
3.14
-3.14
4722366482869645213696
-4722366482869645213696
expected: |
0
42
42
0
3.14
3.14
4722366482869645213696
4722366482869645213696
- name: length function
args:
- 'length'
input: |
42
-42
{"a":1,"b":2}
[3,4,5]
"Hello, world"
"12345"
null
-4722366482869645213696
expected: |
42
42
2
3
12
5
0
4722366482869645213696
- name: length function error
args:
- 'length'
input: 'false'
error: |
length cannot be applied to: boolean (false)
- name: keys function
args:
- 'keys'
input: |
{"a":1,"b":2}
[3,4,5]
expected: |
[
"a",
"b"
]
[
0,
1,
2
]
- name: utf8bytelength function
args:
- 'utf8bytelength'
input: '"" "☆12345☆"'
expected: |
0
21
- name: has function on objects
args:
- 'has(.c[])'
input: |
{"a":{"b":1},"c":["a","b"]}
{"c":["b","c"]}
expected: |
true
false
false
true
- name: has function on arrays
args:
- 'has(2, nan, infinite, -infinite)'
input: |
[1, 2, 3]
[1, 3]
expected: |
true
false
false
false
false
false
false
false
- name: has function against null
args:
- 'has(2, nan, infinite, -infinite)'
input: 'null'
expected: |
false
false
false
false
- name: has/0 is not defined
args:
- 'has'
input: '[0]'
error: |
function not defined: has/0
exit_code: 3
- name: has/2 is not defined
args:
- 'has(1; 2)'
input: '[0]'
error: |
function not defined: has/2
exit_code: 3
- name: has function type error
args:
- 'has(0)'
input: '{}'
error: |
has(0) cannot be applied to: object ({})
- name: in function for object
args:
- 'in({"foo": 42})'
input: '"foo" "bar"'
expected: |
true
false
- name: in function for array
args:
- 'in([3, 4])'
input: '-1 0 1 2'
expected: |
false
true
true
false
- name: in function for null
args:
- 'in(null)'
input: '0'
expected: |
false
- name: in function type error
args:
- 'in([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0])'
input: '"x"'
error: |
has("x") cannot be applied to: array ([0,0,0,0,0,0,0,0,0,0,0,0, ...])
- name: map function
args:
- -c
- 'map(..)'
input: '[{"a":{"b":1}}, [2,3,4]]'
expected: |
[{"a":{"b":1}},{"b":1},1,[2,3,4],2,3,4]
- name: to_entries function
args:
- -c
- 'to_entries'
input: |
[10, 20]
{"a": 10, "b": []}
expected: |
[{"key":0,"value":10},{"key":1,"value":20}]
[{"key":"a","value":10},{"key":"b","value":[]}]
- name: from_entries function
args:
- -c
- 'from_entries'
input: '[{"key":"a","Key":"b","value":1},{"Key":"b","Value":2},{"key":null,"name":"c","Name":"d","value":3},{"name":false,"Name":"d","value":null,"Value":4},{"key":"e"}]'
expected: |
{"a":1,"b":2,"c":3,"d":null,"e":null}
- name: from_entries function missing key
args:
- 'from_entries'
input: '[{"value":1}]'
error: |
from_entries cannot be applied to [{"value":1}]: expected a string for object key but got: null
- name: from_entries function key type error
args:
- 'from_entries'
input: '[{"key":{},"value":1}]'
error: |
from_entries cannot be applied to [{"key":{},"value":1}]: expected a string for object key but got: object ({})
- name: with_entries function
args:
- -c
- 'with_entries(.key |= "x" + . | .value += 1)'
input: '{"a": 1, "b": 2}'
expected: |
{"xa":2,"xb":3}
- name: add function
args:
- -c
- 'add'
input: |
[]
[1,2,3]
["a","b","c"]
[[3],[4,5],[6]]
[{"a":1}, {"b":2}, {"a":3}]
{}
{"a":1,"b":9}
{"a":"a","b":"b","c":"c"}
{"a":[1],"b":[2],"c":[3],"d":[4]}
expected: |
null
6
"abc"
[3,4,5,6]
{"a":3,"b":2}
null
10
"abc"
[1,2,3,4]
- name: add function with a variable
args:
- '. as $x | [$x, {y:1}] | add, $x'
input: '{"x":0}'
expected: |
{
"x": 0,
"y": 1
}
{
"x": 0
}
- name: add function error
args:
- 'add'
input: '[{}, [], {}]'
error: |
cannot add: object ({}) and array ([])
- name: add function error
args:
- 'add'
input: '["x", null, "y", {}, "z"]'
error: |
cannot add: string ("xy") and object ({})
- name: flatten/0 function
args:
- -c
- 'flatten'
input: |
[]
[0, [[[[[1]]]]]]
[0, [1, [2]], [1, [[3], 2]]]
{"x": [1], "y": [[2]], "z": [[[3]]]}
expected: |
[]
[0,1]
[0,1,2,1,3,2]
[1,2,3]
- name: flatten/0 function error
args:
- 'flatten, flatten("")'
input: '0 [[]]'
expected: |
[]
error: |
flatten cannot be applied to: number (0)
flatten cannot be applied to: string ("")
- name: flatten/1 function
args:
- -c
- 'flatten(0, 1.5, 2)'
input: |
[]
[0, [[[[[1]]]]]]
[0, [1, [2]], [1, [[3], 2]]]
{"x": [1], "y": [[2]], "z": [[[3]]]}
expected: |
[]
[]
[]
[0,[[[[[1]]]]]]
[0,1]
[0,[[[1]]]]
[0,[1,[2]],[1,[[3],2]]]
[0,1,2,1,3,2]
[0,1,2,1,[3],2]
[[1],[[2]],[[[3]]]]
[1,2,3]
[1,2,[3]]
- name: flatten/1 function depth error
args:
- 'flatten(-1)'
input: '[]'
error: |
flatten depth should not be negative: -1
- name: min, min_by, max, max_by functions
args:
- -c
- '[min, min_by(.[1]), min_by(.[2]), max, max_by(.[1]), max_by(.[2])]'
input: |
[]
[[4,2,"a"],[3,1,"a"],[2,4,"a"],[1,3,"a"]]
expected: |
[null,null,null,null,null,null]
[[1,3,"a"],[3,1,"a"],[4,2,"a"],[4,2,"a"],[2,4,"a"],[1,3,"a"]]
- name: sort, sort_by, group_by functions
args:
- -c
- 'sort, sort_by(.a), sort_by(.b), sort_by(.b, .c), group_by(.b), group_by(.c, .a), group_by(.a + .b - .c == 2)'
input: '[{"a": 1, "b": 4, "c": 5}, {"a": 4, "b": 1, "c": 2}, {"a": 1, "b": 4, "c": 3}, {"a": 3, "b": 2, "c": 1}]'
expected: |
[{"a":1,"b":4,"c":3},{"a":1,"b":4,"c":5},{"a":3,"b":2,"c":1},{"a":4,"b":1,"c":2}]
[{"a":1,"b":4,"c":5},{"a":1,"b":4,"c":3},{"a":3,"b":2,"c":1},{"a":4,"b":1,"c":2}]
[{"a":4,"b":1,"c":2},{"a":3,"b":2,"c":1},{"a":1,"b":4,"c":5},{"a":1,"b":4,"c":3}]
[{"a":4,"b":1,"c":2},{"a":3,"b":2,"c":1},{"a":1,"b":4,"c":3},{"a":1,"b":4,"c":5}]
[[{"a":4,"b":1,"c":2}],[{"a":3,"b":2,"c":1}],[{"a":1,"b":4,"c":5},{"a":1,"b":4,"c":3}]]
[[{"a":3,"b":2,"c":1}],[{"a":4,"b":1,"c":2}],[{"a":1,"b":4,"c":3}],[{"a":1,"b":4,"c":5}]]
[[{"a":1,"b":4,"c":5},{"a":4,"b":1,"c":2},{"a":3,"b":2,"c":1}],[{"a":1,"b":4,"c":3}]]
- name: unique, unique_by functions
args:
- -c
- 'unique, unique_by(length)'
input: |
[7,3,5,1,4,2,5,3,6,1,7,4,3]
["cat", "dog", "hello", "world", "banana", "apple"]
expected: |
[1,2,3,4,5,6,7]
[1,2,3,4,5,6,7]
["apple","banana","cat","dog","hello","world"]
["cat","hello","banana"]
- name: min, max, sort, unique functions error
args:
- 'try min catch ., try max catch ., try sort catch ., try unique catch .'
input: '0'
expected: |
"min cannot be applied to: number (0)"
"max cannot be applied to: number (0)"
"sort cannot be applied to: number (0)"
"unique cannot be applied to: number (0)"
- name: arrays, objects, iterables, booleans, numbers, strings, nulls, values, scalars functions
args:
- -c
- 'map(arrays), map(objects), map(iterables), map(booleans), map(numbers), map(strings), map(nulls), map(values), map(scalars)'
input: '[null, true, false, 0, 1, "", "foo", [], [2, []], {}, { "foo": [] }, 4722366482869645213696]'
expected: |
[[],[2,[]]]
[{},{"foo":[]}]
[[],[2,[]],{},{"foo":[]}]
[true,false]
[0,1,4722366482869645213696]
["","foo"]
[null]
[true,false,0,1,"","foo",[],[2,[]],{},{"foo":[]},4722366482869645213696]
[null,true,false,0,1,"","foo",4722366482869645213696]
- name: recurse/0 function
args:
- -c
- 'recurse'
input: '{"a":{"b":[1]}}'
expected: |
{"a":{"b":[1]}}
{"b":[1]}
[1]
1
- name: recurse/1 function
args:
- -c
- 'recurse(.a[])'
input: '{"a":[{"a": []}, {"a":[{"a":[]}]}]}'
expected: |
{"a":[{"a":[]},{"a":[{"a":[]}]}]}
{"a":[]}
{"a":[{"a":[]}]}
{"a":[]}
- name: recurse/2 function
args:
- -c
- '[recurse(. + .; . < 1000)]'
input: '1'
expected: |
[1,2,4,8,16,32,64,128,256,512]
- name: while function
args:
- -c
- '[while(.[0]<100; [.[1], .[0]+.[1]]) | .[0]]'
input: '[0, 1]'
expected: |
[0,1,1,2,3,5,8,13,21,34,55,89]
- name: until function
args:
- '[.,1] | until(.[0]==0; [.[0]-1, .[0]*.[1]]) | .[1]'
input: '20'
expected: |
2432902008176640000
- name: repeat function
args:
- -c
- '[limit(.; repeat(1,2,3))]'
input: '10'
expected: |
[1,2,3,1,2,3,1,2,3,1]
- name: range function
args:
- -c
- '[range(.)], [range(range(.))], [range(3.5)], [range(3; 5)], [range(1.5; 4)],
[range(-5; -1.5)], [range(3.5; 5.5)], [range(-5.5; -3.5)], [range(0; 10; 3)],
[range(0; 10; -1)], [range(5; -5; -3)], [range(0.25; 9.5; 2.25)], [range(-5; -9.5; -1)]'
input: '5'
expected: |
[0,1,2,3,4]
[0,0,1,0,1,2,0,1,2,3]
[0,1,2,3]
[3,4]
[1.5,2.5,3.5]
[-5,-4,-3,-2]
[3.5,4.5]
[-5.5,-4.5]
[0,3,6,9]
[]
[5,2,-1,-4]
[0.25,2.5,4.75,7,9.25]
[-5,-6,-7,-8,-9]
- name: range function overflow
args:
- 'range(9223372036854775700; 9223372036854775805; 10)'
input: 'null'
expected: |
9223372036854775700
9223372036854775710
9223372036854775720
9223372036854775730
9223372036854775740
9223372036854775750
9223372036854775760
9223372036854775770
9223372036854775780
9223372036854775790
9223372036854775800
- name: range function with large numbers
args:
- 'range(0; 20000000000000000000; 2000000000000000000)'
input: 'null'
expected: |
0
2000000000000000000
4000000000000000000
6000000000000000000
8000000000000000000
10000000000000000000
12000000000000000000
14000000000000000000
16000000000000000000
18000000000000000000
- name: range function with iterators in arguments
args:
- -c
- '[range(-.; .+1)] | [range(.[]; .[]; .[])] | recurse(.[26:];.[0])[:26] | map(.+3)'
input: '3'
expected: |
[0,0,0,0,1,0,0,0,1,2,0,2,0,0,1,2,3,0,2,0,3,0,1,2,3,4]
[0,2,4,0,3,0,1,2,3,4,5,0,2,4,0,3,1,1,1,1,1,1,1,2,1,1]
[1,2,3,1,3,1,1,2,3,4,1,3,1,4,1,2,3,4,5,1,3,5,1,4,2,2]
[2,1,2,2,2,2,2,2,2,3,2,2,2,3,4,2,4,2,2,3,4,5,2,4,2,5]
[3,3,1,3,2,1,3,3,3,2,3,3,3,3,3,3,3,4,3,3,3,4,5,3,5,3]
[4,1,4,2,4,3,2,1,4,4,2,4,3,2,4,4,4,3,4,4,4,4,4,4,4,5]
[4,4,5,2,5,3,1,5,4,3,2,1,5,2,5,3,5,4,3,2,5,5,3,5,4,3]
[5,5,5,4,5,5,5,5,5,5,6,3,6,4,2,6,5,4,3,2,1,6,3,6,4,2]
[6,5,4,3,2,6,3,6,4,6,5,4,3,6,6,4,6,5,4,6,6,6,5,6,6,6]
- name: range function error
args:
- '(null, "", [], {} | try range(.) catch .), try range(""; 0) catch ., try range(0; 1; []) catch .'
input: 'null'
expected: |
"range cannot be applied to: null"
"range cannot be applied to: string (\"\")"
"range cannot be applied to: array ([])"
"range cannot be applied to: object ({})"
"range cannot be applied to: string (\"\")"
"range cannot be applied to: array ([])"
- name: tonumber function
args:
- 'tonumber'
input: |
"0"
"12345"
"-43210"
"10000000000000000000"
"-10000000000000000000"
"+4.2"
"05"
"9."
"+.123"
"-.1"
"1e-2"
"2.e-2"
"1e300"
"-1e300"
"1e1000"
"-1e1000"
3.14
expected: |
0
12345
-43210
10000000000000000000
-10000000000000000000
4.2
5
9
0.123
-0.1
0.01
0.02
1e+300
-1e+300
1.7976931348623157e+308
-1.7976931348623157e+308
3.14
- name: tonumber function error
args:
- 'try tonumber catch .'
input: |
""
"."
" "
"1a"
".e1"
"-.e"
expected: |
"tonumber cannot be applied to \"\": invalid number"
"tonumber cannot be applied to \".\": invalid number"
"tonumber cannot be applied to \" \": invalid number"
"tonumber cannot be applied to \"1a\": invalid number"
"tonumber cannot be applied to \".e1\": invalid number"
"tonumber cannot be applied to \"-.e\": invalid number"
- name: tostring function
args:
- 'tostring'
input: |
null
false
true
3.14
"foo bar"
{"foo": "-43210"}
[1,2,3]
["<&><>"]
expected: |
"null"
"false"
"true"
"3.14"
"foo bar"
"{\"foo\":\"-43210\"}"
"[1,2,3]"
"[\"<&><>\"]"
- name: type function
args:
- 'type'
input: |
null
false
true
0
3.14
4722366482869645213696
"foo"
[]
{}
expected: |
"null"
"boolean"
"boolean"
"number"
"number"
"number"
"string"
"array"
"object"
- name: reverse function
args:
- 'reverse'
input: '[0, 1, 2, 3, 4]'
expected: |
[
4,
3,
2,
1,
0
]
- name: contains function
args:
- -c
- '.[] as $x | (null,false,true,[],[3,4],[3,1],"foo","ll",{},{"a":1},{"a":""},{"b":[5]},{"a":3,"b":[5]}) as $y | $x | [$x,$y,contains($y)]?'
input: '[null,false,true,[],[1,2,3],"","hello",{"a":3,"b":[4,5,6]}]'
expected: |
[null,null,true]
[false,false,true]
[true,true,true]
[[],[],true]
[[],[3,4],false]
[[],[3,1],false]
[[1,2,3],[],true]
[[1,2,3],[3,4],false]
[[1,2,3],[3,1],true]
["","foo",false]
["","ll",false]
["hello","foo",false]
["hello","ll",true]
[{"a":3,"b":[4,5,6]},{},true]
[{"a":3,"b":[4,5,6]},{"a":1},false]
[{"a":3,"b":[4,5,6]},{"a":""},false]
[{"a":3,"b":[4,5,6]},{"b":[5]},true]
[{"a":3,"b":[4,5,6]},{"a":3,"b":[5]},true]
- name: contains function against unicode strings
args:
- -c
- '. as $x | ("@", "\u0000@", "\u0000dc", "b\u0000c", "b\u0000cd", "b\u0000cd") as $y | $x | [$x,$y,contains($y)]'
input: '"ab\u0000cd"'
expected: |
["ab\u0000cd","@",false]
["ab\u0000cd","\u0000@",false]
["ab\u0000cd","\u0000dc",false]
["ab\u0000cd","b\u0000c",true]
["ab\u0000cd","b\u0000cd",true]
["ab\u0000cd","b\u0000cd",true]
- name: contains function error
args:
- 'nan | contains([nan])'
input: '0'
error: |
contains([null]) cannot be applied to: number (null)
- name: indices, index, rindex functions against null
args:
- 'indices(0), index(0), rindex(0)'
input: 'null'
expected: |
null
null
null
- name: indices, index, rindex functions against array
args:
- -c
- '[indices(0, 1, [1, 2, 1])], [index(0, 1, [1, 2])], [rindex(0, 1, [1, 2])]'
input: |
[]
[0]
[0, 1, 2, 1, 2, 1, 0, 1, 0]
expected: |
[[],[],[]]
[null,null,null]
[null,null,null]
[[0],[],[]]
[0,null,null]
[0,null,null]
[[0,6,8],[1,3,5,7],[1,3]]
[0,1,1]
[8,7,3]
- name: indices, index, rindex functions against string
args:
- -c
- '[indices("", ",", "x")], [index("", ",", "x")], [rindex("", ",", "x")]'
input: '"a,bc,def,ghij,klmno"'
expected: |
[[],[1,4,8,13],[]]
[null,1,null]
[null,13,null]
- name: indices, index, rindex functions against multibyte string
args:
- -c
- '[indices("0", "1", "34")], [index("0", "1", "34")], [rindex("0", "1", "34")]'
input: '"012340"'
expected: |
[[0,5],[1],[3]]
[0,1,3]
[5,1,3]
- name: indices, index, rindex functions type error
args:
- '(try indices([]) catch .), (try index([]) catch .), (try rindex([]) catch .)'
input: '{}'
expected: |
"indices([]) cannot be applied to: object ({})"
"index([]) cannot be applied to: object ({})"
"rindex([]) cannot be applied to: object ({})"
- name: inside function
args:
- -c
- '.[] as $x | (false,"abc",[],["foobaz","foobar"],{},{"a":10,"b":20,"c":30}) as $y | $x | [$x,$y,inside($y)]?'
input: '["a",["bar","baz"],{"a":10,"b":20}]'
expected: |
["a","abc",true]
[["bar","baz"],[],false]
[["bar","baz"],["foobaz","foobar"],true]
[{"a":10,"b":20},{},false]
[{"a":10,"b":20},{"a":10,"b":20,"c":30},true]
- name: startswith function
args:
- 'startswith("foo")'
input: |
""
"fo"
"foo"
"fooo"
"barfoo"
expected: |
false
false
true
true
false
- name: startswith function error
args:
- '("x" | try startswith({}) catch .), (10 | try startswith("x") catch .)'
input: '0'
expected: |
"startswith({}) cannot be applied to: string (\"x\")"
"startswith(\"x\") cannot be applied to: number (10)"
- name: endswith function
args:
- 'endswith("foo")'
input: |
""
"fo"
"foo"
"fooo"
"barfoo"
expected: |
false
false
true
false
true
- name: endswith function error
args:
- '("x" | try endswith({}) catch .), (10 | try endswith("x") catch .)'
input: '0'
expected: |
"endswith({}) cannot be applied to: string (\"x\")"
"endswith(\"x\") cannot be applied to: number (10)"
- name: combinations/0 function
args:
- -c
- '[combinations]'
input: '[] [[0]] [[1, 2, 3], [4, 5, 6]]'
expected: |
[[]]
[[0]]
[[1,4],[1,5],[1,6],[2,4],[2,5],[2,6],[3,4],[3,5],[3,6]]
- name: combinations/1 function
args:
- -c
- '[combinations(3)]'
input: '[] [0] [1, 2]'
expected: |
[]
[[0,0,0]]
[[1,1,1],[1,1,2],[1,2,1],[1,2,2],[2,1,1],[2,1,2],[2,2,1],[2,2,2]]
- name: ltrimstr function
args:
- 'map(ltrimstr("foo")), ("x"|ltrimstr(0, null, {}))'
input: '["", "fo", "foo", "fooo", "barfoo", 0, null, true, {}, []]'
expected: |
[
"",
"fo",
"",
"o",
"barfoo",
0,
null,
true,
{},
[]
]
"x"
"x"
"x"
- name: rtrimstr function
args:
- 'map(rtrimstr("foo")), ("x"|rtrimstr(0, null, {}))'
input: '["", "fo", "foo", "fooo", "barfoo", 0, null, true, {}, []]'
expected: |
[
"",
"fo",
"",
"fooo",
"bar",
0,
null,
true,
{},
[]
]
"x"
"x"
"x"
- name: explode function
args:
- -c
- 'explode'
input: |
""
"foo bar"
"12345"
"\n\t"
expected: |
[]
[102,111,111,32,98,97,114]
[65297,65298,65299,65300,65301]
[10,9]
- name: implode function
args:
- 'implode'
input: |
[]
[102,111,111,32,98,97,114]
[65297,65298,65299,65300,65301]
[10,9]
expected: |
""
"foo bar"
"12345"
"\n\t"
- name: implode function replacement character
args:
- 'implode'
input: '[-1,0,1114111,1114112]'
expected: "\"\ufffd\\u0000\U0010ffff\ufffd\"\n"
- name: implode function error
args:
- 'try implode catch .'
input: '[[]] [{}]'
expected: |
"implode cannot be applied to: array ([[]])"
"implode cannot be applied to: array ([{}])"
- name: split/1 function
args:
- 'split(", ","") | join("/")'
input: |
"a,b, c, d, e,f"
", a,b, c, d, e,f, "
expected: |
"a,b/c/d/e,f"
"a/,/b/,/ /c/,/ /d/,/ /e/,/f"
"/a,b/c/d/e,f/"
",/ /a/,/b/,/ /c/,/ /d/,/ /e/,/f/,/ "
- name: join function
args:
- 'join(",")'
input: '[null, false, true, 0, 1, "", "a", "b", "abc"]'
expected: |
",false,true,0,1,,a,b,abc"
- name: join function with iterator argument
args:
- '. / "" | join(.[])'
input: '"abcde"'
expected: |
"aabacadae"
"abbbcbdbe"
"acbcccdce"
"adbdcddde"
"aebecedee"
- name: join object
args:
- 'join(",")'
input: '{"a": null, "b": false, "c": true, "d": 0, "e": 1, "f": "", "g": "a", "h": "b", "i": "abc"}'
expected: |
",false,true,0,1,,a,b,abc"
- name: join object order
args:
- 'join(",")'
input: '{"d":4, "c":3, "b":2, "a":1}'
expected: |
"1,2,3,4"
- name: join function error item
args:
- 'try join(",") catch .'
input: '["1","2",[3,4,5]]'
expected: |
"join cannot be applied to an array including: array ([3,4,5])"
- name: join function error input
args:
- '.[] | try join(",") catch .'
input: '[null, false, true, 1, "a"]'
expected: |
"join(\",\") cannot be applied to: null"
"join(\",\") cannot be applied to: boolean (false)"
"join(\",\") cannot be applied to: boolean (true)"
"join(\",\") cannot be applied to: number (1)"
"join(\",\") cannot be applied to: string (\"a\")"
- name: join function non-string separator
args:
- '.[] | try join(1) catch .'
input: '[[],[1],[1,2]]'
expected: |
""
"1"
"join(1) cannot be applied to: array ([1,2])"
- name: ascii_downcase function
args:
- 'ascii_downcase'
input: '"@ABC XYZ[] `abc xyz{} Αα"'
expected: |
"@abc xyz[] `abc xyz{} Αα"
- name: ascii_upcase function
args:
- 'ascii_upcase'
input: '"@ABC XYZ[] `abc xyz{} Αα"'
expected: |
"@ABC XYZ[] `ABC XYZ{} Αα"
- name: walk function
args:
- -c
- 'walk(if type == "boolean" then not else . + . end) | .[]'
input: '[1, ["a", {"b": []}], {"c": [null, false, true]}]'
expected: |
2
["aa",{"b":[]},"aa",{"b":[]}]
{"c":[null,true,false,null,true,false]}
2
["aa",{"b":[]},"aa",{"b":[]}]
{"c":[null,true,false,null,true,false]}
- name: walk function with multiple values
args:
- -c
- 'walk(.,0)'
input: '[1,2,3] {"x":1,"y":2,"z":3}'
expected: |
[1,0,2,0,3,0]
0
{"x":1,"y":2,"z":3}
0
- name: transpose function
args:
- -c
- 'transpose'
input: |
[]
[[1,2,3,[]],[4,"foo",{}],[5,6]]
expected: |
[]
[[1,4,5],[2,"foo",6],[3,{},null],[[],null,null]]
- name: function not defined
args:
- 'abc'
input: '{}'
error: |
function not defined: abc/0
exit_code: 3
- name: variable not defined
args:
- '$abc'
input: '{}'
error: |
variable not defined: $abc
exit_code: 3
- name: argument count error
args:
- 'map(.;.)'
input: '{}'
error: |
function not defined: map/2
exit_code: 3
- name: function declaration with an argument
args:
- 'def f(g): g | g; f(..)'
input: '[0, 1]'
expected: |
[
0,
1
]
0
1
0
1
- name: function nested declaration
args:
- -c
- 'def f: def g: .; g; f'
input: '[0, 1]'
expected: |
[0,1]
- name: function declaration with call of another declared function
args:
- -c
- 'def f: .,.; def g: [f,f]; f,g'
input: '[0, 1]'
expected: |
[0,1]
[0,1]
[[0,1],[0,1],[0,1],[0,1]]
- name: function declaration with update operator
args:
- -c
- 'def f: def f($x): .; f(.x) | .x; f += f'
input: '{"x": 1}'
expected: |
{"x":2}
- name: function declaration and recursive call
args:
- 'def f(g): if type == "array" then map(f(g * 2)) else g end; f(.)'
input: '[[[1,2]]]'
expected: |
[
[
[
8,
16
]
]
]
- name: function declaration and recursive call
args:
- 'def f(g): if . < 1000 then .,(g|f(g|g)) else g end; f(.*2)'
input: '1'
expected: |
1
2
8
128
2147483648
- name: function declaration and recursive call
args:
- 'def f: . as $x | $x, ($x + 1 | f); last(limit(100000; f))'
input: '0'
expected: |
99999
- name: function declaration and recursive call
args:
- 'def f: . as $x | $x, (if $x < 3 then $x + 1 | f else empty end), $x; f'
input: '0'
expected: |
0
1
2
3
3
2
1
0
- name: function declaration and recursive call
args:
- 'def f: ., if . < 2 then . + (1,2) | f else empty end; f'
input: '0'
expected: |
0
1
2
3
2
- name: function declaration and recursive call
args:
- '100000 as $x | def f: if . == $x then . else . + 1 | f end; f'
input: '0'
expected: |
100000
- name: function declaration and recursive call
args:
- 'def f: if .a then .a | f end; {}, {a:{}} | f | .,0'
input: '0'
expected: |
{}
0
{}
0
- name: function declaration with duplicate function names
args:
- 'def f(g): def f: def g: 3; g * 2; g * f; def f: . * 5; f(f)'
input: '1'
expected: |
30
- name: function declaration with duplicate function names
args:
- '(def f(g): def g: 1; g; f(2)), (def g: 3; def f(g): g; f(4))'
input: '0'
expected: |
1
4
- name: function declaration with duplicate argument names
args:
- 'def f(g;g): g; f(1;2)'
input: 'null'
expected: |
2
- name: function declaration with duplicate variable names
args:
- 'def f($g;$g): $g; f(1;2,3)'
input: 'null'
expected: |
2
3
- name: function declaration with builtin function name conflict
args:
- 'def empty: . % 2; range(5) | select(empty > 0)'
input: 'null'
expected: |
1
3
- name: function declaration with builtin function name conflict
args:
- 'def select(f): f; null, 0 | numbers, select(.)'
input: 'null'
expected: |
null
0
0
- name: function declaration with argument name conflict
args:
- 'def update: .[1:]; [range(3)] | while(length>0; update)'
input: 'null'
expected: |
[
0,
1,
2
]
[
1,
2
]
[
2
]
- name: function declaration with argument name conflict
args:
- 'def f($keys): with_entries(.key *= $keys); {x: 1} | f(3)'
input: 'null'
expected: |
{
"xxx": 1
}
- name: function declaration with mixed argument types
args:
- -c
- 'def f0( a; b; c): a*100 + b*10 + c;
def f1( a;$b; c): a*100 + $b*10 + c;
def f2($a; b;$c): $a*100 + b*10 + $c;
def f3($a;$b;$c): $a*100 + $b*10 + $c;
[f0(.[];.[];.[])], [f1(.[];.[];.[])], [f2(.[];.[];.[])], [f3(.[];.[];.[])]'
input: '[1,2]'
expected: |
[111,211,121,221,112,212,122,222]
[111,211,112,212,121,221,122,222]
[111,121,112,122,211,221,212,222]
[111,112,121,122,211,212,221,222]
- name: function declaration with function reference to value argument
args:
- -c
- 'def f($x; $y): [$x, x, $y, y]; f(1,2; 3,4)'
input: 'null'
expected: |
[1,1,2,3,3,4]
[1,1,2,4,3,4]
[2,1,2,3,3,4]
[2,1,2,4,3,4]
- name: function declaration inside query
args:
- -c
- '[0, def f: 1, def g: 2; g, 3 as $x | def h: $x + 1; h * g; f, f + 1, 5]'
input: 'null'
expected: |
[0,1,2,8,2,3,9,5]
- name: argument count error for custom function
args:
- 'def f(g): g | g; f'
input: '{}'
error: |
function not defined: f/0
exit_code: 3
- name: function declaration name error
args:
- 'def $f: .; $f'
input: 'null'
error: |
invalid query: def $f: .; $f
def $f: .; $f
^ unexpected token "$f"
exit_code: 3
- name: add, subtract, multiply, divide, modulo numbers
args:
- -c
- '[.[] + .[]], [.[] - .[]], [.[] * .[]], [.[] / .[]], [.[] % .[]]'
input: '[-1, 5, 16]'
expected: |
[-2,4,15,4,10,21,15,21,32]
[0,6,17,-6,0,11,-17,-11,0]
[1,-5,-16,-5,25,80,-16,80,256]
[1,-5,-16,-0.2,1,3.2,-0.0625,0.3125,1]
[0,0,0,-1,0,1,-1,5,0]
- name: add, subtract, multiply, divide, modulo large numbers
args:
- -c
- '[.[] + .[]], [.[] - .[]], [.[] * .[]], [.[] / .[]], [.[] % .[]]'
input: '[-1, 47, 9223372036854775807, 557702036893939360447070208]'
expected: |
[-2,46,9223372036854775806,557702036893939360447070207,46,94,9223372036854775854,557702036893939360447070255,9223372036854775806,9223372036854775854,18446744073709551614,557702046117311397301846015,557702036893939360447070207,557702036893939360447070255,557702046117311397301846015,1115404073787878720894140416]
[0,48,9223372036854775808,557702036893939360447070209,-48,0,9223372036854775760,557702036893939360447070161,-9223372036854775808,-9223372036854775760,0,557702027670567323592294401,-557702036893939360447070209,-557702036893939360447070161,-557702027670567323592294401,0]
[1,-47,-9223372036854775807,-557702036893939360447070208,-47,2209,433498485732174462929,26211995734015149941012299776,-9223372036854775807,433498485732174462929,85070591730234615847396907784232501249,5143893371984510803678792604831111805828857856,-557702036893939360447070208,26211995734015149941012299776,5143893371984510803678792604831111805828857856,311031561955648899562865430629603887429045530881163264]
[1,-47,-9223372036854775807,-557702036893939360447070208,-0.02127659574468085,1,196241958230952670,1.1866000784977433e+25,-1.0842021724855044e-19,5.095750210681871e-18,1,60466176,-1.7930721672981344e-27,8.427439186301232e-26,1.65381716879202e-8,1]
[0,0,0,0,-1,0,35,37,-1,47,0,60466176,-1,47,9223372036854775807,0]
- name: add, subtract, multiply, divide, modulo operators precedence
args:
- -c
- '[.[] + .[] % .[] * .[] - .[] / .[] % .[] + .[]] | while(length>0; .[32:])[:32]'
input: '[3, 7]'
expected: |
[5,9,8,12,14,18,5,9,5,9,12,16,26,30,5,9,4,8,7,11,13,17,4,8,4,8,11,15,25,29,4,8]
[6,10,9,13,15,19,6,10,6,10,13,17,27,31,6,10,5,9,8,12,14,18,5,9,5,9,12,16,26,30,5,9]
[5,9,8,12,14,18,5,9,5,9,12,16,26,30,5,9,4,8,7,11,13,17,4,8,4,8,11,15,25,29,4,8]
[6,10,9,13,15,19,6,10,6,10,13,17,27,31,6,10,5,9,8,12,14,18,5,9,5,9,12,16,26,30,5,9]
[9,13,12,16,18,22,9,13,9,13,16,20,30,34,9,13,8,12,11,15,17,21,8,12,8,12,15,19,29,33,8,12]
[10,14,13,17,19,23,10,14,10,14,17,21,31,35,10,14,9,13,12,16,18,22,9,13,9,13,16,20,30,34,9,13]
[9,13,12,16,18,22,9,13,9,13,16,20,30,34,9,13,8,12,11,15,17,21,8,12,8,12,15,19,29,33,8,12]
[10,14,13,17,19,23,10,14,10,14,17,21,31,35,10,14,9,13,12,16,18,22,9,13,9,13,16,20,30,34,9,13]
- name: integer division precision
args:
- '72 / (1, -2, 3, -4, 6, -8) * 100000000000000000000'
input: '0'
expected: |
7200000000000000000000
-3600000000000000000000
2400000000000000000000
-1800000000000000000000
1200000000000000000000
-900000000000000000000
- name: optional and division operator
args:
- '1?/1'
input: '0'
expected: |
1
- name: optional and division operator parse error
args:
- '.?/'
input: '0'
error: |
invalid query: .?/
.?/
^ unexpected EOF
exit_code: 3
- name: factorial calculation
args:
- -n
- -r
- 'def fact($n): if $n < 1 then 1 else $n * fact($n - 1) end; (range(30;51) | "\(.)! = \(fact(.))"), fact(50) / fact(30), fact(50) % (fact(30) + 1), fact(100), fact(1000)*1.0, 1/fact(1000), -1/fact(1000), 1.0/fact(1000)'
expected: |
30! = 265252859812191058636308480000000
31! = 8222838654177922817725562880000000
32! = 263130836933693530167218012160000000
33! = 8683317618811886495518194401280000000
34! = 295232799039604140847618609643520000000
35! = 10333147966386144929666651337523200000000
36! = 371993326789901217467999448150835200000000
37! = 13763753091226345046315979581580902400000000
38! = 523022617466601111760007224100074291200000000
39! = 20397882081197443358640281739902897356800000000
40! = 815915283247897734345611269596115894272000000000
41! = 33452526613163807108170062053440751665152000000000
42! = 1405006117752879898543142606244511569936384000000000
43! = 60415263063373835637355132068513997507264512000000000
44! = 2658271574788448768043625811014615890319638528000000000
45! = 119622220865480194561963161495657715064383733760000000000
46! = 5502622159812088949850305428800254892961651752960000000000
47! = 258623241511168180642964355153611979969197632389120000000000
48! = 12413915592536072670862289047373375038521486354677760000000000
49! = 608281864034267560872252163321295376887552831379210240000000000
50! = 30414093201713378043612608166064768844377641568960512000000000000
114660755112113373922453094400000
150592104700077684713855385600001
93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000
1.7976931348623157e+308
0
-0
0
- name: negative large numbers
args:
- -n
- 'def f($n): if $n < 1 then 1 else (-$n) * (-f($n - 1)) end; -f(range(30;40))'
expected: |
-265252859812191058636308480000000
-8222838654177922817725562880000000
-263130836933693530167218012160000000
-8683317618811886495518194401280000000
-295232799039604140847618609643520000000
-10333147966386144929666651337523200000000
-371993326789901217467999448150835200000000
-13763753091226345046315979581580902400000000
-523022617466601111760007224100074291200000000
-20397882081197443358640281739902897356800000000
- name: large number literal
args:
- -n
- |
100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0,
-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0,
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
-10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0,
-10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0
expected: |
100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1e+308
-1e+308
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1.7976931348623157e+308
-1.7976931348623157e+308
- name: zero division
args:
- -c
- '.[] as $x | .[] as $y | [$x, $y, try ($x / $y) catch .]'
input: '[1, 0]'
expected: |
[1,1,1]
[1,0,"cannot divide number (1) by: number (0)"]
[0,1,0]
[0,0,"cannot divide number (0) by: number (0)"]
- name: zero modulo
args:
- -c
- '.[] as $x | .[] as $y | [$x, $y, try ($x % $y) catch .]'
input: '[1, 0]'
expected: |
[1,1,0]
[1,0,"cannot modulo number (1) by: number (0)"]
[0,1,0]
[0,0,"cannot modulo number (0) by: number (0)"]
- name: modulo with near 0.0
args:
- '1 % 0.9'
input: 'null'
error: |
cannot modulo number (1) by: number (0.9)
- name: modulo with nan
args:
- '(1, nan) % (1, nan) | isnan'
input: 'null'
expected: |
false
true
true
true
- name: zero division and modulo for large number
args:
- -c
- '[try (.[] / .[]) catch .], [try (.[] % .[]) catch .]'
input: '[1267650600228229401496703205376, 0]'
expected: |
[1,0,"cannot divide number (12676506002282294014967032 ...) by: number (0)"]
[0,0,"cannot modulo number (12676506002282294014967032 ...) by: number (0)"]
- name: add strings
args:
- '.[] + .[] + "c"'
input: '["a", "b"]'
expected: |
"aac"
"bac"
"abc"
"bbc"
- name: multiply constant
args:
- '3 * .[], 2.5 * .[], .054e2 * .[]'
input: '[1, 2.5, "abc"]'
expected: |
3
7.5
"abcabcabc"
2.5
6.25
"abcabc"
5.4
13.5
"abcabcabcabcabc"
- name: multiply strings
args:
- '[-1.0, -0.5, 0.0, 0.5, 1.0, 1.5, 3.7, 10, 9444732965739290427392 / 4722366482869645213696, 100000000, infinite, -infinite, nan, -1e300, 1e300][] * "abc"'
input: 'null'
expected: |
null
null
""
""
"abc"
"abc"
"abcabcabc"
"abcabcabcabcabcabcabcabcabcabc"
"abcabc"
null
null
null
null
null
null
- name: multiply empty string
args:
- '(-9223372036854775808, -1, 0, 0.001, 0.999, 1, 7, 9223372036854775807) * ""'
input: 'null'
expected: |
null
null
""
""
""
""
""
""
- name: multiply objects
args:
- -c
- '.[] * .[]'
input: '[{"foo": 10, "bar": {"qux": 20}}, {"foo": 20, "bar": {"baz": "quux"}}]'
expected: |
{"bar":{"qux":20},"foo":10}
{"bar":{"baz":"quux","qux":20},"foo":10}
{"bar":{"baz":"quux","qux":20},"foo":20}
{"bar":{"baz":"quux"},"foo":20}
- name: divide strings
args:
- -c
- '.[] / .[]'
input: '["abc", "a", "b"]'
expected: |
["",""]
["a"]
["b"]
["","bc"]
["",""]
["b"]
["a","c"]
["a"]
["",""]
- name: add and subtract arrays
args:
- -c
- '.[] + .[] - .[]'
input: '[[1, 2], [3, 4]]'
expected: |
[]
[3,4]
[3,4]
[3,4,3,4]
[1,2,1,2]
[1,2]
[1,2]
[]
- name: ensure arrays are immutable during addition
args:
- -c
- '. as $first | .[:0] + [6, 7, 8] | ., $first'
input: |
[1,2,3,4,5]
expected: |
[6,7,8]
[1,2,3,4,5]
- name: subtract arrays
args:
- -c
- '[1,2,3,4,1,4722366482869645213696] - [.,3,4722366482869645213696]'
input: '1'
expected: |
[2,4]
- name: subtract arrays with large numbers
args:
- -c
- '. as $x | [$x-$x] - [0]'
input: '10000000000000'
expected: |
[]
- name: subtract arrays with nan
args:
- -c
- '[nan,{x:nan}] - [nan,{x:nan}]'
input: '1'
expected: |
[null,{"x":null}]
- name: add object
args:
- -c
- '.[] + .[]'
input: '[{"a":1},{"b":2}]'
expected: |
{"a":1}
{"a":1,"b":2}
{"a":1,"b":2}
{"b":2}
- name: add null
args:
- '.[] + .[]'
input: '[1, 2, null]'
expected: |
2
3
1
3
4
2
1
2
null
- name: subtract null
args:
- '.[] - .[]'
input: '[1, 2, null]'
expected: |
0
1
error: |
cannot subtract: null and number (1)
- name: subtract object
args:
- '.[] - .[]'
input: '[{"a":1},{"b":2}]'
error: |
cannot subtract: object ({"a":1}) and object ({"a":1})
- name: comparison operators
args:
- '[.[] > .[], .[] < .[], .[] >= .[], .[] <= .[], .[] == .[], .[] != .[]] | while(length>0; .[120:]) | .[:120] | map(if . then 1 else 0 end) | join("")'
input: '[null, false, true, 0, 1, "", "a", "b", "abc", [], [1], [2], [3, 4], ["a", "b"], [[]], [[], []], [{}], {}, {"a": ""}, {"a":[1]}, {"b":[1]}, {"b": []}, {"b": [[]]}, {"a": 0, "b": 1}]'
expected: |
"011111111111111111111111001111111111111111111111000111111111111111111111000011111111111111111111000001111111111111111111"
"000000111111111111111111000000011111111111111111000000000111111111111111000000010111111111111111000000000011111111111111"
"000000000001111111111111000000000000111111111111000000000000011111111111000000000000001111111111000000000000000111111111"
"000000000000000011111111000000000000000001111111000000000000000000111111000000000000000000011111000000000000000000001111"
"000000000000000000000010000000000000000000001010000000000000000000000000000000000000000000001110000000000000000000000000"
"100000000000000000000000110000000000000000000000111000000000000000000000111100000000000000000000111110000000000000000000"
"111111000000000000000000111111101000000000000000111111100000000000000000111111111000000000000000111111111100000000000000"
"111111111110000000000000111111111111000000000000111111111111100000000000111111111111110000000000111111111111111000000000"
"111111111111111100000000111111111111111110000000111111111111111111000000111111111111111111100000111111111111111111110101"
"111111111111111111110001111111111111111111111101111111111111111111110000111111111111111111111111011111111111111111111111"
"001111111111111111111111000111111111111111111111000011111111111111111111000001111111111111111111000000111111111111111111"
"000000010111111111111111000000011111111111111111000000000111111111111111000000000011111111111111000000000001111111111111"
"000000000000111111111111000000000000011111111111000000000000001111111111000000000000000111111111000000000000000011111111"
"000000000000000001111111000000000000000000111111000000000000000000011111000000000000000000001010000000000000000000001110"
"000000000000000000000010000000000000000000001111100000000000000000000000110000000000000000000000111000000000000000000000"
"111100000000000000000000111110000000000000000000111111000000000000000000111111100000000000000000111111111000000000000000"
"111111101000000000000000111111111100000000000000111111111110000000000000111111111111000000000000111111111111100000000000"
"111111111111110000000000111111111111111000000000111111111111111100000000111111111111111110000000111111111111111111000000"
"111111111111111111100000111111111111111111110000111111111111111111111101111111111111111111110101111111111111111111111111"
"111111111111111111110001100000000000000000000000010000000000000000000000001000000000000000000000000100000000000000000000"
"000010000000000000000000000001000000000000000000000000100000000000000000000000010000000000000000000000001000000000000000"
"000000000100000000000000000000000010000000000000000000000001000000000000000000000000100000000000000000000000010000000000"
"000000000000001000000000000000000000000100000000000000000000000010000000000000000000000001000000000000000000000000100000"
"000000000000000000010000000000000000000000001000000000000000000000000100000000000000000000000010000000000000000000000001"
"011111111111111111111111101111111111111111111111110111111111111111111111111011111111111111111111111101111111111111111111"
"111110111111111111111111111111011111111111111111111111101111111111111111111111110111111111111111111111111011111111111111"
"111111111101111111111111111111111110111111111111111111111111011111111111111111111111101111111111111111111111110111111111"
"111111111111111011111111111111111111111101111111111111111111111110111111111111111111111111011111111111111111111111101111"
"111111111111111111110111111111111111111111111011111111111111111111111101111111111111111111111110"
- name: comparison and arithmetic operators
args:
- '[.[] + .[] > .[] - .[], .[] * .[] < .[] / .[] + .[] / .[], .[] == .[] * .[]] | while(length>0; .[120:]) | .[:120] | map(if . then 1 else 0 end) | join("")'
input: '[1, 2, 3]'
expected: |
"111111111111111111011111111111111111111111111111111111111111111111111111111111111100000000110100000111100100100000000100"
"000000110100000100000000100000000100000000110100000111100100111110100110100000110100000111100100110100000110100000110100"
"000111100100111110100111110100111100100111100100111110100111100100111100100111100100100000000110100000111100100000000000"
"100000000100000000000000000100000000100000000100000000110100000111100100100000000100000000110100000100000000100000000100"
"000000110100000111100100111110100100000000110100000110100000100000000110100000110100000100000000110100000111100100000000"
"000100000000100000000000000000000000000100000000100000000110100000111100100100000000100000000110100000000000000100000000"
"100000000100000000110100000111100100100000000100000000110100000100000000100000000100000000100010001010000000001000000"
- name: comparison operators with large numbers
args:
- '[.[] > .[], .[] < .[], .[] >= .[], .[] <= .[], .[] == .[], .[] != .[]] | while(length>0; .[120:]) | .[:120] | map(if . then 1 else 0 end) | join("")'
input: '[-9999999999999999999999999999999999, -4722366482869645213697, -2, 0, 47, 4722366482869645213696, 4722366482869645213697, 99999999999999999999999999999999999]'
expected: |
"011111110011111100011111000011110000011100000011000000010000000000000000100000001100000011100000111100001111100011111100"
"111111101111111101111111001111110001111100001111000001110000001100000001100000001100000011100000111100001111100011111100"
"111111101111111110000000010000000010000000010000000010000000010000000010000000010111111110111111110111111110111111110111"
"111110111111110111111110"
- name: comparison operators associativity error
args:
- '. == . == .'
input: '1'
error: |
invalid query: . == . == .
. == . == .
^ unexpected token "=="
exit_code: 3
- name: logical operators
args:
- '[.[] > .[] and .[] or .[] < .[]] | while(length>0; .[120:]) | .[:120] | map(if . then 1 else 0 end) | join("")'
input: '[null, false, true, 0, "", [], {}]'
expected: |
"000000010000001100000111000011110001111100111111000000001000000110000011100001111000111110011111100000000100000011000001"
"110000111100011111001111110111110000000100000011000001110000111100011111001111110000000010000001100000111000011110001111"
"100111111011111000000010000001100000111000011110001111100111111000000001000000110000011100001111000111110011111101111100"
"000001000000110000011100001111000111110011111100000000100000011000001110000111100011111001111110111110000000100000011000"
"001110000111100011111001111110000000010000001100000111000011110001111100111111011111000000010000001100000111000011110001"
"111100111111000000001000000110000011100001111000111110011111101111100000001000000110000011100001111000111110011111100000"
"000100000011000001110000111100011111001111110000000010000001100000111000011110001111100111111000000001000000110000011100"
"001111000111110011111101111100000001000000110000011100001111000111110011111100000000100000011000001110000111100011111001"
"111110111110000000100000011000001110000111100011111001111110000000010000001100000111000011110001111100111111011111000000"
"010000001100000111000011110001111100111111000000001000000110000011100001111000111110011111101111100000001000000110000011"
"100001111000111110011111100000000100000011000001110000111100011111001111110111110000000100000011000001110000111100011111"
"001111110000000010000001100000111000011110001111100111111000000001000000110000011100001111000111110011111100000000100000"
"011000001110000111100011111001111110000000010000001100000111000011110001111100111111011111000000010000001100000111000011"
"110001111100111111000000001000000110000011100001111000111110011111101111100000001000000110000011100001111000111110011111"
"100000000100000011000001110000111100011111001111110111110000000100000011000001110000111100011111001111110000000010000001"
"100000111000011110001111100111111011111000000010000001100000111000011110001111100111111000000001000000110000011100001111"
"000111110011111100000000100000011000001110000111100011111001111110000000010000001100000111000011110001111100111111000000"
"001000000110000011100001111000111110011111100000000100000011000001110000111100011111001111110111110000000100000011000001"
"110000111100011111001111110000000010000001100000111000011110001111100111111011111000000010000001100000111000011110001111"
"100111111000000001000000110000011100001111000111110011111101111100000001000000110000011100001111000111110011111100000000"
"100000011000001110000111100011111001111110000000010000001100000111000011110001111100111111000000001000000110000011100001"
"111000111110011111100000000100000011000001110000111100011111001111110000000010000001100000111000011110001111100111111000"
"000001000000110000011100001111000111110011111101111100000001000000110000011100001111000111110011111100000000100000011000"
"001110000111100011111001111110111110000000100000011000001110000111100011111001111110000000010000001100000111000011110001"
"111100111111000000001000000110000011100001111000111110011111100000000100000011000001110000111100011111001111110000000010"
"000001100000111000011110001111100111111000000001000000110000011100001111000111110011111100000000100000011000001110000111"
"100011111001111110000000010000001100000111000011110001111100111111011111000000010000001100000111000011110001111100111111"
"000000001000000110000011100001111000111110011111100000000100000011000001110000111100011111001111110000000010000001100000"
"111000011110001111100111111000000001000000110000011100001111000111110011111100000000100000011000001110000111100011111001"
"1111100000000100000011000001110000111100011111001111110"
- name: alternative operator
args:
- -c
- '[.a // .b, .b // null // .a, .c[] // .d[], .d[] // .c, .c // .a, .e.a // .c[]]'
input: '{ "a": 5, "b": false, "c": [null,false], "d": [false,3], "e": null }'
expected: |
[5,5,false,3,3,[null,false],null,false]
- name: condition
args:
- 'if . then . else [.] end'
input: 'null false true 0'
expected: |
[
null
]
[
false
]
true
0
- name: condition with elif clause
args:
- 'if . == null then . elif not then [.] elif . == true then [[.]] else [[[.]]] end'
input: 'null false true 0'
expected: |
null
[
false
]
[
[
true
]
]
[
[
[
0
]
]
]
- name: condition without else clause
args:
- 'map(if . > 2 then . / 2 end)'
input: '[1, 2, 3, 4, 5]'
expected: |
[
1,
2,
1.5,
2,
2.5
]
- name: condition precedence
args:
- '. + if 1 then 2 else 3 end + 4'
input: '1'
expected: |
7
- name: condition with optional operator
args:
- 'if . then tonumber end ?'
input: '1'
expected: |
1
- name: condition with identity in then clause
args:
- 'if 0 then . else 0|0 end'
input: 'null'
expected: |
null
- name: condition with identity in else clause
args:
- 'if 0 then 0|0 else . end'
input: 'null'
expected: |
0
- name: condition with suffix
args:
- 'if . then 1 end []'
input: '1'
error: |
invalid query: if . then 1 end []
if . then 1 end []
^ unexpected token "["
exit_code: 3
- name: not function
args:
- 'not'
input: |
true
false
expected: |
false
true
- name: iterator in condition
args:
- 'if .. then [] else {} end'
input: '{ "foo": false }'
expected: |
[]
{}
- name: try
args:
- 'map(try utf8bytelength)'
input: '[[], {}, [1,2], "hello", 55, true, false]'
expected: |
[
5
]
- name: try catch
args:
- 'map(try utf8bytelength catch .)'
input: '[[], {}, [1,2], "hello", 55, true, false]'
expected: |
[
"utf8bytelength cannot be applied to: array ([])",
"utf8bytelength cannot be applied to: object ({})",
"utf8bytelength cannot be applied to: array ([1,2])",
5,
"utf8bytelength cannot be applied to: number (55)",
"utf8bytelength cannot be applied to: boolean (true)",
"utf8bytelength cannot be applied to: boolean (false)"
]
- name: try catch with function declaration
args:
- 'def f: fromjson; try ({} | f) catch ., 1'
input: 'null'
expected: |
"fromjson cannot be applied to: object ({})"
1
- name: try and comma operator precedence
args:
- '1, try error(2), 3'
input: 'null'
expected: |
1
3
- name: try and alternative operator precedence
args:
- 'try error(0) // 1'
input: 'null'
expected: |
1
- name: try and update operator precedence
args:
- 'try error(0) = 1'
input: 'null'
expected: |
null
- name: try and arithmetic operator precedence
args:
- 'try 0 * error(0)'
input: 'null'
error: |
error: 0
exit_code: 5
- name: try and indexing precedence
args:
- 'try 0 .[error(0)]'
input: 'null'
- name: try catch precedence
args:
- '1 + try 2 catch 3 + 4'
input: 'null'
expected: |
7
- name: reduce iterator
args:
- '[range(.)] | reduce .[] as $i (0; . + $i)'
input: '10'
expected: |
45
- name: reduce arrays
args:
- 'reduce .[] as [$i,$j] (0; . + $i * $j)'
input: '[[1,2,10], [3,4,10]]'
expected: |
14
- name: reduce objects
args:
- 'reduce .[] as {$i, j:$j} (0; . + $i - $j)'
input: '[{"i":2, "j":1}, {"i":5, "j":3}, {"i":6, "j":4}]'
expected: |
5
- name: reduce null
args:
- 'reduce . as $n (.; .)'
input: 'null'
expected: |
null
- name: reduce precedence
args:
- '. + reduce . as $n (. + [2]; [.]) + .'
input: '[1]'
expected: |
[
1,
[
1,
2
],
1
]
- name: reduce variable scope
args:
- -c
- '. as $x | reduce .[] as $x (.; . + .) | [., $x]'
input: '[1]'
expected: |
[[1,1],[1]]
- name: foreach iterator
args:
- 'foreach range(5) as $item (0; $item)'
input: 'null'
expected: |
0
1
2
3
4
- name: foreach arrays
args:
- 'foreach .[] as [$i, $j] (0; . + $i - $j)'
input: '[[2,1], [5,3], [6,4]]'
expected: |
1
3
5
- name: foreach objects
args:
- 'foreach .[] as {a:$a} (0; . + $a; -.)'
input: '[{"a":1}, {"b":2}, {"a":3, "b":4}]'
expected: |
-1
-1
-4
- name: foreach with iterator in update
args:
- 'foreach .[] as $i (1; ., . + $i, range(.))'
input: '[1, 2, 3]'
expected: |
1
2
0
0
2
2
5
0
1
- name: foreach variable scope
args:
- -c
- '. as $x | foreach .[] as $x (.; . + .) | [., $x]'
input: '[1]'
expected: |
[[1,1],[1]]
- name: label and break syntax
args:
- '[(label $x | .[] | if . > 2 then break $x else . end), 0]'
input: '[1,2,3,2,1]'
expected: |
[
1,
2,
0
]
- name: label and break in foreach syntax
args:
- '[range(.)] | label $x | foreach .[] as $i (0; if . > 5 then break $x else . + $i end)'
input: '10'
expected: |
0
1
3
6
- name: label and break in try catch syntax
args:
- 'label $x | (label $y | try break $y catch .), .'
input: '10'
expected: |
10
- name: label and break in function argument
args:
- 'range(.) | label $out | limit(3; 1, if . > 1 then break $out end, 2)'
input: '3'
expected: |
1
0
2
1
1
2
1
- name: label and break in function argument with foreach
args:
- 'label $out | last(foreach range(0; 10) as $i ({x: 1}; if .x > 10 then break $out else .x += 1 end))'
input: '0'
expected: |
{
"x": 11
}
- name: label in recursive call
args:
- 'def f: label $x | if . < 5 then ., (. + 1 | f, break $x, .) else . end; f'
input: '0'
expected: |
0
1
2
3
4
5
- name: duplicate label names
args:
- 'label $x | (label $x | break $x), .'
input: '1'
expected: |
1
- name: invalid label name
args:
- 'label foo | .'
input: '1'
error: |
invalid query: label foo | .
label foo | .
^ unexpected token "foo"
exit_code: 3
- name: label not defined error for break without label
args:
- 'break $test'
input: '1'
error: |
label not defined: $test
exit_code: 3
- name: label not defined error for break with label in parenthesis
args:
- '(label $x | 1) | break $x'
input: '1'
error: |
label not defined: $x
exit_code: 3
- name: invalid break name
args:
- 'label $x | break x'
input: '1'
error: |
invalid query: label $x | break x
label $x | break x
^ unexpected token "x"
exit_code: 3
- name: invalid break syntax
args:
- 'label $x | break'
input: '0'
error: |
invalid query: label $x | break
label $x | break
^ unexpected EOF
exit_code: 3
- name: variable and label name conflict
args:
- '. as $x | (label $x | break $x), $x'
input: '0'
expected: |
0
- name: string interpolation
args:
- -c
- '["\(.foo[])_\(.bar[])_\(.baz[])"]'
input: '{ "foo": [0, 1], "bar": ["x", "y"], "baz": [{"a": 1}, [1], null] }'
expected: |
["0_x_{\"a\":1}","1_x_{\"a\":1}","0_y_{\"a\":1}","1_y_{\"a\":1}","0_x_[1]","1_x_[1]","0_y_[1]","1_y_[1]","0_x_null","1_x_null","0_y_null","1_y_null"]
- name: string interpolation in object
args:
- -c
- '[{a:"\(.foo[])"}, {"\(.foo[])": 1}, {"\(.bar[])"}]'
input: '{ "foo": [0, 1], "bar": ["x", "y"], "x": 10, "y": 20 }'
expected: |
[{"a":"0"},{"a":"1"},{"0":1},{"1":1},{"x":10},{"y":20}]
- name: string interpolation nested
args:
- -c
- '" \("(") \("x" + "\(1 + 2)") \("\\") \("\("\\")") \(")") "'
input: '0'
expected: |
" ( x3 \\ \\ ) "
- name: string interpolation nested deeply
args:
- -c
- '"\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\("\(1+2)")")")")")")")")")")")")")")")")")")")")")")")"'
input: '0'
expected: |
"3"
- name: string interpolation multiple lines
args:
- -c
- |
"\( # "
"\(
"\(2 * (4 # "
+#
6))"
)" # "
# "
+ (def f: "\("\("(" + "\\\((1 + 2) * 3)\"" + ")")")"; f)
# "
# "
# "
)"
input: '0'
expected: |
"20(\\9\")"
- name: string interpolation parse error
args:
- '"\(1 +)"'
input: '0'
error: |
invalid query: "\(1 +)"
"\(1 +)"
^ unexpected token ")"
exit_code: 3
- name: tojson function
args:
- 'tojson'
input: |
null
false
true
4722366482869645213696
"foo"
["foo"]
{"a": [1,2,3]}
expected: |
"null"
"false"
"true"
"4722366482869645213696"
"\"foo\""
"[\"foo\"]"
"{\"a\":[1,2,3]}"
- name: fromjson function
args:
- -c
- 'fromjson'
input: |
"null"
"false"
"true"
"4722366482869645213696"
"\"foo\""
"[\"foo\"]"
"{\"a\":[1,2,3]}"
expected: |
null
false
true
4722366482869645213696
"foo"
["foo"]
{"a":[1,2,3]}
- name: fromjson function error
args:
- 'fromjson'
input: '"[0"'
error: |
fromjson cannot be applied to "[0": unexpected EOF
- name: variable definition
args:
- -c
- '.foo.bar as $foo | .foo.bar as $bar | {$foo} + {bar: ($bar / 2)} * { baz: 20 }'
input: |
{"foo":{"bar":10}}
expected: |
{"bar":5,"baz":20,"foo":10}
- name: variable definition
args:
- -c
- '.ys as $ys | .xs[] | {a, b: $ys[.b]}'
input: |
{"xs":[{"a":"a0","b":"b0"},{"a":"a1","b":"b1"}],"ys":{"b0":"bb0","b1":"bb1"}}
expected: |
{"a":"a0","b":"bb0"}
{"a":"a1","b":"bb1"}
- name: variable name error
args:
- '.foo as foo | {$bar}'
input: 'null'
error: |
invalid query: .foo as foo | {$bar}
.foo as foo | {$bar}
^ unexpected token "foo"
exit_code: 3
- name: variable name not found error
args:
- '.foo as $foo | {$bar}'
input: |
{"foo":10}
error: |
variable not defined: $bar
exit_code: 3
- name: binding an array
args:
- -c
- '. as [$i, $j] | [$j, $i]'
input: |
[]
[10]
[20,30]
expected: |
[null,null]
[null,10]
[30,20]
- name: binding an array deeply
args:
- -c
- '. as [$i, [$j], [[$k]]] | [$i, $j, $k]'
input: |
[]
[10]
[20,[30],[[40]]]
expected: |
[null,null,null]
[10,null,null]
[20,30,40]
- name: binding an array error
args:
- '. as [$i, $j] | [$j, $i]'
input: |
{"foo":10}
error: |
expected an array but got: object ({"foo":10})
- name: binding an object
args:
- -c
- '. as {$foo, bar: $bar} | {$bar, $foo}'
input: |
{}
{"foo":10}
{"foo":20,"bar":30}
expected: |
{"bar":null,"foo":null}
{"bar":null,"foo":10}
{"bar":30,"foo":20}
- name: binding an object deeply
args:
- -c
- '. as {$foo, bar: {"baz": {$qux}, "": $quy}} | {$foo, $qux, $quy}'
input: |
{}
{"foo":10}
{"foo":20,"bar":{"baz":{"qux":30},"":-1}}
expected: |
{"foo":null,"qux":null,"quy":null}
{"foo":10,"qux":null,"quy":null}
{"foo":20,"qux":30,"quy":-1}
- name: binding an object with expression
args:
- -c
- '. as {as: $foo, ("e"+"x"+"p"): $bar, (.foo): $baz, "\(.qux)": $qux} | [$foo, $bar, $baz, $qux]'
input: |
{"as":1,"exp":2,"foo":"bar","bar":3,"qux":"quux","quux":4}
expected: |
[1,2,3,4]
- name: binding an object error
args:
- '. as {$i} | [$i]'
input: |
[10]
error: |
expected an object but got: array ([10])
- name: binding object and array deeply
args:
- -c
- '. as {$a, $b: [$c, $d]} | [$a, $b, $c, $d]'
input: |
{"a":1,"b":[2,{"d":3}]}
expected: |
[1,[2,{"d":3}],2,{"d":3}]
- name: binding variable scope in parenthesis
args:
- -c
- '. as $x | (.foo as $x | [$x]) | .+[$x]'
input: |
{"foo": 42}
expected: |
[42,{"foo":42}]
- name: binding variable scope in array
args:
- -c
- '. as $x | [.foo as $x | $x] | $x'
input: |
{"foo":42}
expected: |
{"foo":42}
- name: binding variable scope in object
args:
- -c
- '. as $x | {bar: (.foo as $x | $x)} | $x'
input: |
{"foo":"bar"}
expected: |
{"foo":"bar"}
- name: binding variable scope in object key
args:
- -c
- '. as $x | {(.foo as $x | $x): $x}'
input: |
{"foo":"bar"}
expected: |
{"bar":{"foo":"bar"}}
- name: binding variable scope in condition
args:
- -c
- '. as $x | if (.foo,.bar) as $x | $x then 1 as $x | $x else 2 as $x | $x end | [., $x]'
input: |
{"foo":"bar"}
expected: |
[1,{"foo":"bar"}]
[2,{"foo":"bar"}]
- name: binding variable scope in try catch
args:
- -c
- '. as $x | try .foo as $x | $x | error catch $x'
input: |
{"foo":42}
expected: |
{"foo":42}
- name: binding variable scope in reduce
args:
- '[range(.)] | 3 as $x | reduce .[] as $i (.[5] as $x | $x; . + $x + $i)'
input: '10'
expected: |
80
- name: binding variable scope in foreach
args:
- -c
- '[2 as $x | foreach range(.) as $item (. as $x | $x; . + $item * $x; . + $x)]'
input: '5'
expected: |
[7,9,13,19,27]
- name: binding variable scope error in parenthesis
args:
- '(. as $i | $i) | $i'
input: '0'
error: |
variable not defined: $i
exit_code: 3
- name: binding variable scope error in array
args:
- '[. as $i | $i] | $i'
input: '0'
error: |
variable not defined: $i
exit_code: 3
- name: binding variable scope error in object
args:
- '{x: (. as $i | $i)} | $i'
input: '0'
error: |
variable not defined: $i
exit_code: 3
- name: binding variable scope error in object key
args:
- '{(. as $i | $i): $i}'
input: '"x"'
error: |
variable not defined: $i
exit_code: 3
- name: function scope in parenthesis
args:
- 'def f: 1; . | (def f: 2; f) | f, .'
input: '0'
expected: |
1
2
- name: function scope in array
args:
- -c
- 'def f: 1; . | [def f: 2; f] | f, .'
input: '0'
expected: |
1
[2]
- name: function scope in object
args:
- -c
- 'def f: 1; . | {bar: (def f: .foo; f)} | f, .'
input: |
{"foo":"bar"}
expected: |
1
{"bar":"bar"}
- name: function scope in object key
args:
- -c
- 'def f: 1; . | {(def f: "foo"; f): f}'
input: '0'
expected: |
{"foo":1}
- name: function scope error in parenthesis
args:
- '(def f: 1; f) | f'
input: '0'
error: |
function not defined: f
exit_code: 3
- name: function scope error in array
args:
- '[def f: 1; f] | f'
input: '0'
error: |
function not defined: f
exit_code: 3
- name: function scope error in object
args:
- '{x: (def f: 1; f)} | f'
input: '0'
error: |
function not defined: f
exit_code: 3
- name: function scope error in object key
args:
- '{(def f: 1; f): f}'
input: '"x"'
error: |
function not defined: f
exit_code: 3
- name: first/0, last/0 functions
args:
- -c
- '[first, last]'
input: '[1,2,3,4,5]'
expected: |
[1,5]
- name: first/1, last/1, nth functions
args:
- -c
- '[first(.[]), last(.[]), nth(0,3,5), nth(0,3,5;.[]), nth(9; range(infinite))]'
input: '[1,2,3,4,5]'
expected: |
[1,5,1,4,null,1,4,9]
- name: first/1 function with optional operator
args:
- 'first(.), first(.?), first(.,.), first(.?,.), first(.,.?), first(.?,.?)'
input: 'null'
expected: |
null
null
null
null
null
null
- name: first/1 function nested
args:
- 'first((null, null) | first(null))'
input: 'null'
expected: |
null
- name: all/2 function in first/1 argument
args:
- 'first(range(1; 200) | . as $x | select(all(range(1; 7); $x % . == 0)))'
input: 'null'
expected: |
60
- name: limit/2 function
args:
- -c
- '[limit(0,3,13; range(infinite))]'
input: 'null'
expected: |
[0,1,2,0,1,2,3,4,5,6,7,8,9,10,11,12]
- name: all/0, any/0 functions
args:
- -c
- '[all, any]'
input: |
[]
[false, false]
[false, true]
[true, true]
expected: |
[true,false]
[false,false]
[false,true]
[true,true]
- name: all/1, any/1 functions
args:
- -c
- '[all(not), any(not)]'
input: |
[]
[false, false]
[false, true]
[true, true]
expected: |
[true,false]
[true,true]
[false,true]
[false,false]
- name: all/2, any/2 functions
args:
- -c
- '[all(range(.); not), any(range(.); not)]'
input: '0 1'
expected: |
[true,false]
[false,false]
- name: isempty function
args:
- -c
- '[isempty(empty), isempty(range(infinite)), isempty(1,error("foo"))]'
input: 'null'
expected: |
[true,false,false]
- name: isempty function nested
args:
- 'isempty(isempty(empty))'
input: 'null'
expected: |
false
- name: first/1 in isempty function
args:
- 'isempty(first(null))'
input: 'null'
expected: |
false
- name: trigonometric functions
args:
- -c
- 'map(sin),map(cos),map(tan) | map(. * 1000000000 | floor / 1000000000)'
input: '[0, 1, 2]'
expected: |
[0,0.841470984,0.909297426]
[1,0.540302305,-0.416146837]
[0,1.557407724,-2.185039864]
- name: inverse trigonometric functions
args:
- -c
- 'map(asin),map(acos),map(atan) | map(. * 1000000000 | floor / 1000000000)'
input: '[0, 1, 2]'
expected: |
[0,1.570796326,null]
[1.570796326,0,null]
[0,0.785398163,1.107148717]
- name: hyperbolic functions
args:
- -c
- 'map(sinh),map(cosh),map(tanh) | map(. * 1000000000 | floor / 1000000000)'
input: '[0, 1, 2]'
expected: |
[0,1.175201193,3.626860407]
[1,1.543080634,3.762195691]
[0,0.761594155,0.96402758]
- name: inverse hyperbolic functions
args:
- -c
- 'map(asinh),map(acosh),map(atanh) | map(. * 1000000000 | floor / 1000000000)'
input: '[0, 1, 2]'
expected: |
[0,0.881373587,1.443635475]
[null,0,1.316957896]
[0,1.7976931348623157e+308,null]
- name: floor, round, nearbyint, rint, ceil, trunc, fabs, sqrt and cbrt functions
args:
- -c
- 'range(.) | sin | (fabs,sqrt,cbrt,sin) * 100000 | [(floor,round,nearbyint,rint,ceil,trunc) / 100000]'
input: '5'
expected: |
[0,0,0,0,0,0]
[0,0,0,0,0,0]
[0,0,0,0,0,0]
[0,0,0,0,0,0]
[0.84147,0.84147,0.84147,0.84147,0.84148,0.84147]
[0.91731,0.91732,0.91732,0.91732,0.91732,0.91731]
[0.94408,0.94409,0.94409,0.94409,0.94409,0.94408]
[0.74562,0.74562,0.74562,0.74562,0.74563,0.74562]
[0.90929,0.9093,0.9093,0.9093,0.9093,0.90929]
[0.95357,0.95357,0.95357,0.95357,0.95358,0.95357]
[0.9688,0.9688,0.9688,0.9688,0.96881,0.9688]
[0.78907,0.78907,0.78907,0.78907,0.78908,0.78907]
[0.14112,0.14112,0.14112,0.14112,0.14113,0.14112]
[0.37565,0.37566,0.37566,0.37566,0.37566,0.37565]
[0.52063,0.52063,0.52063,0.52063,0.52064,0.52063]
[0.14065,0.14065,0.14065,0.14065,0.14066,0.14065]
[0.7568,0.7568,0.7568,0.7568,0.75681,0.7568]
[null,null,null,null,null,null]
[-0.9113,-0.9113,-0.9113,-0.9113,-0.91129,-0.91129]
[-0.68661,-0.6866,-0.6866,-0.6866,-0.6866,-0.6866]
- name: significand function
args:
- -c
- '(range(10)|tan),nan | significand | . * 100000 | floor / 100000'
input: '0'
expected: |
0
1.5574
-1.09252
-1.14038
1.15782
-1.69026
-1.16403
1.74289
-1.69993
-1.80927
null
- name: exp, exp10, exp2, expm1, pow10 functions
args:
- -c
- '[range(.)] | map(exp),map(exp10),map(exp2),map(expm1),map(pow10) | map(. * 100000 | floor / 100000)'
input: '10'
expected: |
[1,2.71828,7.38905,20.08553,54.59815,148.41315,403.42879,1096.63315,2980.95798,8103.08392]
[1,10,100,1000,10000,100000,1000000,10000000,100000000,1000000000]
[1,2,4,8,16,32,64,128,256,512]
[0,1.71828,6.38905,19.08553,53.59815,147.41315,402.42879,1095.63315,2979.95798,8102.08392]
[1,10,100,1000,10000,100000,1000000,10000000,100000000,1000000000]
- name: frexp, modf function
args:
- -c
- '[range(.) | tan] | map(frexp),map(modf) | map(map(. * 100000 | floor / 100000))'
input: '10'
expected: |
[[0,0],[0.7787,1],[-0.54626,2],[-0.57019,-2],[0.57891,1],[-0.84513,2],[-0.58202,-1],[0.87144,0],[-0.84997,3],[-0.90464,-1]]
[[0,0],[0.5574,1],[-0.18504,-2],[-0.14255,-0],[0.15782,1],[-0.38052,-3],[-0.29101,-0],[0.87144,0],[-0.79972,-6],[-0.45232,-0]]
- name: log, log10, log1p, log2, logb functions
args:
- -c
- '[range(.) | tan] | map(log),map(log10),map(log1p),map(log2),map(logb) | map(. * 100000 | floor / 100000)'
input: '10'
expected: |
[-1.7976931348623157e+308,0.44302,null,null,0.14654,null,null,-0.1376,null,null]
[-1.7976931348623157e+308,0.1924,null,null,0.06364,null,null,-0.05976,null,null]
[0,0.93899,null,-0.15379,0.76909,null,-0.34391,0.62671,null,-0.60206]
[-1.7976931348623157e+308,0.63914,null,null,0.21141,null,null,-0.19852,null,null]
[-1.7976931348623157e+308,0,1,-3,0,1,-2,-1,2,-2]
- name: gamma, tgamma, lgamma functions
args:
- -c
- '[range(.) | tan] | map(gamma),map(tgamma),map(lgamma) | map(. * 100000 | floor / 100000)'
input: '10'
expected: |
[1.7976931348623157e+308,0.88943,-2.39565,-7.75522,0.93049,0.34209,-4.41241,1.09278,-0.00159,-3.58744]
[1.7976931348623157e+308,0.88943,-2.39565,-7.75522,0.93049,0.34209,-4.41241,1.09278,-0.00159,-3.58744]
[1.7976931348623157e+308,-0.11718,0.87365,2.04836,-0.07204,-1.07268,1.48441,0.08872,-6.44927,1.27743]
- name: erf, erfc, j0, j1, y0, y1 functions
args:
- -c
- '[range(.) | tan] | map(erf),map(erfc),map(j0),map(j1),map(y0),map(y1) | map(. * 100000 | floor / 100000)'
input: '10'
expected: |
[0,0.97237,-0.998,-0.15977,0.89845,-1,-0.31933,0.7822,-1,-0.47762]
[1,0.02762,1.99799,1.15976,0.10154,1.99999,1.31932,0.21779,2,1.47761]
[1,0.47958,0.11869,0.99492,0.69191,-0.36073,0.97894,0.81896,0.29307,0.9495]
[0,0.56529,-0.55806,-0.0711,0.48717,-0.18735,-0.14397,0.39565,0.0653,-0.22043]
[-1.7976931348623157e+308,0.40504,null,null,0.20121,null,null,-0.01971,null,null]
[-1.7976931348623157e+308,-0.37491,null,null,-0.653,null,null,-0.90154,null,null]
- name: atan2/2, copysign/2, drem/2, fdim/2, fmax/2, fmin/2, fmod/2, hypot/2, jn/2, ldexp/2, nextafter/2, nexttoward/2, remainder/2, scalb/2, scalbln/2, pow/2, yn/2 functions
args:
- -c
- '[range(-.;.)] |
[atan2(.[]; .[])],
[copysign(.[]; .[])],
[drem(.[]; .[])],
[fdim(.[]; .[])],
[fmax(.[]; .[])],
[fmin(.[]; .[])],
[fmod(.[]; .[])],
[hypot(.[]; .[])],
[jn(.[]; .[])],
[ldexp(.[]; .[])],
[nextafter(.[]; .[])],
[nexttoward(.[]; .[])],
[remainder(.[]; .[])],
[scalb(.[]; .[])],
[scalbln(.[]; .[])],
[pow(.[]; .[])],
[yn(.[]; .[])]
| map(. * 10000 | round | . / 10000)'
input: '3'
expected: |
[-2.3562,-2.5536,-2.8198,3.1416,2.8198,2.5536,-2.1588,-2.3562,-2.6779,3.1416,2.6779,2.3562,-1.8925,-2.0344,-2.3562,3.1416,2.3562,2.0344,-1.5708,-1.5708,-1.5708,0,1.5708,1.5708,-1.249,-1.1071,-0.7854,0,0.7854,1.1071,-0.9828,-0.7854,-0.4636,0,0.4636,0.7854]
[-3,-2,-1,-0,-1,-2,-3,-2,-1,-0,-1,-2,-3,-2,-1,-0,-1,-2,3,2,1,0,1,2,3,2,1,0,1,2,3,2,1,0,1,2]
[-0,1,-1,0,1,-1,1,-0,-1,0,1,0,-0,-0,-0,0,0,0,null,null,null,null,null,null,-0,-0,-0,0,0,0,1,-0,-1,0,1,0]
[0,1,2,3,4,5,0,0,1,2,3,4,0,0,0,1,2,3,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0]
[-3,-2,-1,0,1,2,-2,-2,-1,0,1,2,-1,-1,-1,0,1,2,0,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2]
[-3,-3,-3,-3,-3,-3,-3,-2,-2,-2,-2,-2,-3,-2,-1,-1,-1,-1,-3,-2,-1,0,0,0,-3,-2,-1,0,1,1,-3,-2,-1,0,1,2]
[-0,-2,-1,0,1,2,-1,-0,-1,0,1,0,-0,-0,-0,0,0,0,null,null,null,null,null,null,-0,-0,-0,0,0,0,-1,-0,-1,0,1,0]
[4.2426,3.6056,3.1623,3,3.1623,3.6056,3.6056,2.8284,2.2361,2,2.2361,2.8284,3.1623,2.2361,1.4142,1,1.4142,2.2361,3,2,1,0,1,2,3.1623,2.2361,1.4142,1,1.4142,2.2361,3.6056,2.8284,2.2361,2,2.2361,2.8284]
[0.3091,0.4861,0.3391,-0.2601,-0.3391,0.4861,0.1289,0.3528,0.5767,0.2239,-0.5767,0.3528,0.0196,0.1149,0.4401,0.7652,-0.4401,0.1149,0,0,0,1,0,0,-0.0196,0.1149,-0.4401,0.7652,0.4401,0.1149,-0.1289,0.3528,-0.5767,0.2239,0.5767,0.3528]
[-0.375,-0.25,-0.125,0,0.125,0.25,-0.75,-0.5,-0.25,0,0.25,0.5,-1.5,-1,-0.5,0,0.5,1,-3,-2,-1,0,1,2,-6,-4,-2,0,2,4,-12,-8,-4,0,4,8]
[-3,-2,-1,-0,1,2,-3,-2,-1,-0,1,2,-3,-2,-1,-0,1,2,-3,-2,-1,0,1,2,-3,-2,-1,0,1,2,-3,-2,-1,0,1,2]
[-3,-2,-1,-0,1,2,-3,-2,-1,-0,1,2,-3,-2,-1,-0,1,2,-3,-2,-1,0,1,2,-3,-2,-1,0,1,2,-3,-2,-1,0,1,2]
[-0,1,-1,0,1,-1,1,-0,-1,0,1,0,-0,-0,-0,0,0,0,null,null,null,null,null,null,-0,-0,-0,0,0,0,1,-0,-1,0,1,0]
[-0.375,-0.25,-0.125,0,0.125,0.25,-0.75,-0.5,-0.25,0,0.25,0.5,-1.5,-1,-0.5,0,0.5,1,-3,-2,-1,0,1,2,-6,-4,-2,0,2,4,-12,-8,-4,0,4,8]
[-0.375,-0.25,-0.125,0,0.125,0.25,-0.75,-0.5,-0.25,0,0.25,0.5,-1.5,-1,-0.5,0,0.5,1,-3,-2,-1,0,1,2,-6,-4,-2,0,2,4,-12,-8,-4,0,4,8]
[-0.037,-0.125,-1,1.7976931348623157e+308,1,0.125,0.1111,0.25,1,1.7976931348623157e+308,1,0.25,-0.3333,-0.5,-1,1.7976931348623157e+308,1,0.5,1,1,1,1,1,1,-3,-2,-1,0,1,2,9,4,1,0,1,4]
[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1.7976931348623157e+308,-1.7976931348623157e+308,1.7976931348623157e+308,-1.7976931348623157e+308,-1.7976931348623157e+308,-1.7976931348623157e+308,5.8215,-1.6507,0.7812,0.0883,-0.7812,-1.6507,1.1278,-0.6174,0.107,0.5104,-0.107,-0.6174]
- name: fma/3 function
args:
- -c
- '[range(.) | . * 2 | sin] | [fma(.[]; .[]; .[])] | map(. * 100000 | floor / 100000)'
input: '3'
expected: |
[0,0,0,0,0.82682,-0.68816,0,-0.68816,0.57275,0.90929,0.90929,0.90929,0.90929,1.73611,0.22113,0.90929,0.22113,1.48204,-0.75681,-0.75681,-0.75681,-0.75681,0.07001,-1.44497,-0.75681,-1.44497,-0.18406]
- name: infinite function
args:
- -c
- '[infinite, -infinite] | (.[], .[]+.[], .[]-.[], .[]*.[], .[]/.[], .[]%.[]%256, 1/.[], -1/.[], .[]-1e300, .[]+1e300) | [., . == infinite, . == -infinite, contains(infinite)]'
input: 'null'
expected: |
[1.7976931348623157e+308,true,false,true]
[-1.7976931348623157e+308,false,true,false]
[1.7976931348623157e+308,true,false,true]
[null,false,false,false]
[null,false,false,false]
[-1.7976931348623157e+308,false,true,false]
[null,false,false,false]
[-1.7976931348623157e+308,false,true,false]
[1.7976931348623157e+308,true,false,true]
[null,false,false,false]
[1.7976931348623157e+308,true,false,true]
[-1.7976931348623157e+308,false,true,false]
[-1.7976931348623157e+308,false,true,false]
[1.7976931348623157e+308,true,false,true]
[null,false,false,false]
[null,false,false,false]
[null,false,false,false]
[null,false,false,false]
[0,false,false,false]
[-1,false,false,false]
[255,false,false,false]
[0,false,false,false]
[0,false,false,false]
[-0,false,false,false]
[-0,false,false,false]
[0,false,false,false]
[1.7976931348623157e+308,true,false,true]
[-1.7976931348623157e+308,false,true,false]
[1.7976931348623157e+308,true,false,true]
[-1.7976931348623157e+308,false,true,false]
- name: isfinite and isinfinite functions
args:
- -c
- 'infinite | ., -., 1/., 1/(-.), nan, null, "", {}, [] | [., isfinite, isinfinite]'
input: 'null'
expected: |
[1.7976931348623157e+308,false,true]
[-1.7976931348623157e+308,false,true]
[0,true,false]
[-0,true,false]
[null,true,false]
[null,false,false]
["",false,false]
[{},false,false]
[[],false,false]
- name: finites function
args:
- 'nan, infinite, -infinite | ., -., 1/. | finites'
input: 'null'
expected: |
null
null
null
0
-0
- name: nan and isnan functions
args:
- -c
- 'nan, infinite-infinite, infinite/infinite, 0, null | [., .+1, isnan]'
input: 'null'
expected: |
[null,null,true]
[null,null,true]
[null,null,true]
[0,1,false]
[null,1,false]
- name: nan and comparison
args:
- -c
- 'nan | [.<., .>., .<0, .>0, .==., .!=.], ([., 1, ., 2, .] | [min, max], sort, group_by(.))'
input: 'null'
expected: |
[true,false,true,false,false,true]
[null,2]
[null,null,null,1,2]
[[null],[null],[null],[1],[2]]
- name: isnormal function
args:
- '0, 2.2250738585072011e-308, 2.2250738585072014e-308, 1, 1.7976931348623157e+308, nan, infinite, "", [], {} | isnormal'
input: 'null'
expected: |
false
false
true
true
true
false
false
false
false
false
- name: normals function
args:
- '0, 2.2250738585072011e-308, 2.2250738585072014e-308, 1, 1.7976931348623157e+308, nan, infinite | ., -. | normals'
input: 'null'
expected: |
2.2250738585072014e-308
-2.2250738585072014e-308
1
-1
1.7976931348623157e+308
-1.7976931348623157e+308
- name: normals with nextafter function
args:
- '0, 2.2250738585072014e-308, 1.7976931348623157e+308, nan, infinite | nextafter(.; 0, infinite) | normals'
input: 'null'
expected: |
2.225073858507202e-308
1.7976931348623155e+308
1.7976931348623157e+308
- name: stringify nan and infinite
args:
- -c
- 'nan, infinite, -infinite | [., tostring]'
input: 'null'
expected: |
[null,"null"]
[1.7976931348623157e+308,"1.7976931348623157e+308"]
[-1.7976931348623157e+308,"-1.7976931348623157e+308"]
- name: truncate_stream function
args:
- -c
- '[truncate_stream([[0],1],[[1,0],2],[[1,0]],[[1]])]'
input: '0 1 2'
expected: |
[[[0],1],[[1,0],2],[[1,0]],[[1]]]
[[[0],2],[[0]]]
[]
- name: fromstream function
args:
- -c
- 'fromstream(0,1,2|truncate_stream([[0],1],[[1,0],2],[[1,0]],[[1]]))'
input: 'null'
expected: |
[1,[2]]
[2]
- name: stream function
args:
- -c
- 'tostream'
input: '[0,[1,{"a":1},{"b":2}]]'
expected: |
[[0],0]
[[1,0],1]
[[1,1,"a"],1]
[[1,1,"a"]]
[[1,2,"b"],2]
[[1,2,"b"]]
[[1,2]]
[[1]]
- name: setpath function
args:
- -c
- 'setpath([["a","b",0,1,2],[1,2,"a","b"]][]; 1,2)'
input: 'null'
expected: |
{"a":{"b":[[null,[null,null,1]]]}}
[null,[null,null,{"a":{"b":1}}]]
{"a":{"b":[[null,[null,null,2]]]}}
[null,[null,null,{"a":{"b":2}}]]
- name: setpath function deeply
args:
- -c
- 'setpath(["a","b",0,1]; 1,2)'
input: '{"a":{"b":[]}}'
expected: |
{"a":{"b":[[null,1]]}}
{"a":{"b":[[null,2]]}}
- name: setpath function negative index
args:
- -c
- 'setpath(-2,0,2 | [.]; 4,5)'
input: '[1,2,3]'
expected: |
[1,4,3]
[4,2,3]
[1,2,4]
[1,5,3]
[5,2,3]
[1,2,5]
- name: setpath function empty path
args:
- -c
- 'setpath([]; 10)'
input: 'null'
expected: |
10
- name: setpath function error
args:
- 'setpath([-1]; 10)'
input: '[]'
error: |
setpath([-1]; 10) cannot be applied to []: array index should not be negative: -1
- name: setpath function error
args:
- 'setpath(["a","b","c"]; 10)'
input: '{"a":{"b":[]}}'
error: |
setpath(["a","b","c"]; 10) cannot be applied to {"a":{"b":[]}}: expected an object but got: array ([])
- name: setpath function error
args:
- 'setpath(["a",1]; 10)'
input: '{"a":{"b":[]}}'
error: |
setpath(["a",1]; 10) cannot be applied to {"a":{"b":[]}}: expected an array but got: object ({"b":[]})
- name: setpath function error
args:
- 'setpath([{}]; 10)'
input: 'null'
error: |
setpath([{}]; 10) cannot be applied to null: expected "start" and "end" for slicing but got: object ({})
- name: setpath function error
args:
- 'setpath([{start:0}]; 10)'
input: 'null'
error: |
setpath([{"start":0}]; 10) cannot be applied to null: expected "start" and "end" for slicing but got: object ({"start":0})
- name: setpath function error
args:
- 'setpath([[]]; 10)'
input: '[]'
error: |
setpath([[]]; 10) cannot be applied to []: expected a number for indexing an array but got: array ([])
- name: setpath function error
args:
- 'setpath([{start:0,end:1}]; 10)'
input: '[]'
error: |
setpath([{"end":1,"start":0}]; 10) cannot be applied to []: expected an array but got: number (10)
- name: delpaths function
args:
- -c
- 'delpaths([["a",1,"b",1]])'
input: '{"a":[{},{"b":[1,2,3]}]}'
expected: |
{"a":[{},{"b":[1,3]}]}
- name: delpaths function against array
args:
- -c
- 'delpaths([[2],[6],[4]])'
input: '[1,2,3,4,5]'
expected: |
[1,2,4]
- name: delpaths function not found key
args:
- -c
- 'delpaths([["a","b","c"]])'
input: '{}'
expected: |
{}
- name: delpaths function out of index
args:
- -c
- 'delpaths([[2],[-10],[10],[-3]])'
input: '[1,2,3,4,5]'
expected: |
[1,2,4,5]
- name: delpaths function with overlapping paths
args:
- -c
- 'delpaths([["x"],["x",0,"y"]], [["x",0],["x",0,"y"]], [["x"],["x",{"start":0}]])'
input: '{"x":[{"y":0}]}'
expected: |
{}
{"x":[]}
{}
- name: delpaths function error
args:
- 'delpaths([{}])'
input: '[]'
error: |
delpaths([{}]) cannot be applied to []: expected an array but got: object ({})
- name: delpaths function error
args:
- 'delpaths([["x"]])'
input: '[]'
error: |
delpaths([["x"]]) cannot be applied to []: expected an object but got: array ([])
- name: getpath function
args:
- -c
- 'getpath(["a",1,"b",2])'
input: '{"a":[{},{"b":[1,2,3]}]}'
expected: |
3
- name: getpath function empty path
args:
- -c
- 'getpath([])'
input: '{"a":[{},{"b":[1,2,3]}]}'
expected: |
{"a":[{},{"b":[1,2,3]}]}
- name: getpath function error
args:
- 'getpath(["a",1,"b","c"])'
input: '{"a":[{},{"b":[1,2,3,4,5,6,7]}]}'
error: |
getpath(["a",1,"b","c"]) cannot be applied to {"a":[{},{"b":[1,2,3,4,5, ...}: expected an object but got: array ([1,2,3,4,5,6,7])
- name: setpath, delpaths, getpath functions
args:
- -c
- '["foo",1] as $p | getpath($p), setpath($p; 2), delpaths([$p]), .'
input: |
{"foo":[0,1]}
{"bar":false}
expected: |
1
{"foo":[0,2]}
{"foo":[0]}
{"foo":[0,1]}
null
{"bar":false,"foo":[null,2]}
{"bar":false}
{"bar":false}
- name: setpath to getpath
args:
- -c
- '.[] | try (getpath(["a",0,"b"]) |= 5) catch .'
input: '[null,{"b":0},{"a":0},{"a":null},{"a":[0,1]},{"a":{"b":1}},{"a":[{}]},{"a":[{"c":3}]}]'
expected: |
{"a":[{"b":5}]}
{"a":[{"b":5}],"b":0}
"getpath([\"a\",0,\"b\"]) cannot be applied to: object ({\"a\":0})"
{"a":[{"b":5}]}
"getpath([\"a\",0,\"b\"]) cannot be applied to: object ({\"a\":[0,1]})"
"getpath([\"a\",0,\"b\"]) cannot be applied to {\"a\":{\"b\":1}}: expected an array but got: object ({\"b\":1})"
{"a":[{"b":5}]}
{"a":[{"b":5,"c":3}]}
- name: pick function
args:
- -c
- 'pick(.x, .y[2], .y[0], .z)'
input: '{"x":1, "y": [1,2,3]}'
expected: |
{"x":1,"y":[1,null,3],"z":null}
- name: map_values function
args:
- -c
- 'map_values(.*2)'
input: '[1,2,3]'
expected: |
[2,4,6]
- name: map_values function with optional operator
args:
- -c
- 'map_values(tonumber? // .)'
input: '{"x": "1", "y": "1.5", "z": "z"}'
expected: |
{"x":1,"y":1.5,"z":"z"}
- name: del function
args:
- -c
- 'del(.), del(empty), del((.foo,.bar,.baz) | .[2,3,0]), del(.foo[0], .bar[0], .foo, .baz.bar[0].x), del(.foo[1:][:3][1:], .bar[:2][1:])'
input: '{"foo": [0,1,2,3,4], "bar": [0,1]}'
expected: |
null
{"bar":[0,1],"foo":[0,1,2,3,4]}
{"bar":[1],"foo":[1,4]}
{"bar":[1]}
{"bar":[0],"foo":[0,1,4]}
- name: del function with array slicing
args:
- -c
- 'del(.[1], .[-6], .[2], .[-3:9])'
input: '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]'
expected: |
[0,3,5,6,9]
- name: del function against large array with select
args:
- '[range(.)] | (5,7) as $x | del(.[] | select(. % $x == 0)) | add'
input: '50000'
expected: |
1000000000
1071421429
- name: del function against large array with slicing
args:
- '[range(.)] | del(.[range(length) | {start:.,end:(.+1)}])'
input: '50000'
expected: |
[]
- name: assignment operator against object
args:
- -c
- '.foo.bar = 1'
input: 'null'
expected: |
{"foo":{"bar":1}}
- name: assignment operator against array
args:
- -c
- '.[-1,0] = 3'
input: '[0,1,2]'
expected: |
[3,1,3]
- name: assignment operator against number
args:
- '. = 1'
input: '0'
expected: |
1
- name: assignment operator against number error
args:
- '.foo = 1'
input: '0'
error: |
expected an object but got: number (0)
- name: assignment operator against object with multiple paths
args:
- -c
- '(.foo,.bar,.baz) = 1'
input: 'null'
expected: |
{"bar":1,"baz":1,"foo":1}
- name: assignment operator against array with slicing
args:
- -c
- '.[2:4] = ([], [0], [4,3,2]), .[1:-1] = [3,2], .[2:0] = [.[]], .[10:] = [1],
.[-20:-10] = [1], .[0:5] = [9], .[1:][1:] = [9], .[1:][:3] = [6,7,8],
.[:4][1:][:3] = [9], .[1:][1:-2] = [9], .[:4][-3:][:5] = [9], (null | .[:1][2:] = [9])'
input: '[1,2,3,4,5]'
expected: |
[1,2,5]
[1,2,0,5]
[1,2,4,3,2,5]
[1,3,2,5]
[1,2,1,2,3,4,5,3,4,5]
[1,2,3,4,5,1]
[1,1,2,3,4,5]
[9]
[1,2,9]
[1,6,7,8,5]
[1,9,5]
[1,2,9,4,5]
[1,9,5]
[9]
- name: assignment operator with object and array indexing
args:
- -c
- '.foo.[0].bar.[1] = 1'
input: 'null'
expected: |
{"foo":[{"bar":[null,1]}]}
- name: assignment operator against array with suffix array indexing
args:
- -c
- '.[2][2] = 1'
input: '[1]'
expected: |
[1,null,[null,null,1]]
- name: assignment operator against array with suffix object indexing
args:
- -c
- '.[2].foo = 1'
input: '[1]'
expected: |
[1,null,{"foo":1}]
- name: assignment operator against object with multiple suffix indexing
args:
- -c
- '.foo[2].bar = 2'
input: '{"foo":[1], "bar":3}'
expected: |
{"bar":3,"foo":[1,null,{"bar":2}]}
- name: assignment operator with query and suffix object indexing
args:
- -c
- '(.foo).bar = 1'
input: 'null'
expected: |
{"foo":{"bar":1}}
- name: assignment operator with object indexing and iterator suffix
args:
- -c
- '.foo[].bar = 1'
input: '{"foo":[null,null]}'
expected: |
{"foo":[{"bar":1},{"bar":1}]}
- name: assignment operator with overlapping paths
args:
- -c
- '[(.x,.x.y,.x.y.z) = {}, (.x.y.z,.x.y,.x) = {}]'
input: 'null'
expected: |
[{"x":{"y":{"z":{}}}},{"x":{}}]
- name: assignment operator with query value
args:
- -c
- '.foo = .bar'
input: '{"bar":42}'
expected: |
{"bar":42,"foo":42}
- name: assignment operator with multiple paths and query values
args:
- -c
- '(.foo,.bar,.baz) = .bar[]'
input: '{"bar":[0,1,2]}'
expected: |
{"bar":0,"baz":0,"foo":0}
{"bar":1,"baz":1,"foo":1}
{"bar":2,"baz":2,"foo":2}
- name: assignment operator with overlapping paths and multiple values
args:
- -c
- '.. = ..'
input: '{"x":{"y":{}}} [[[]]]'
expected: |
{"x":{"x":{"y":{}},"y":{"x":{"y":{}}}}}
{"x":{"y":{"y":{}}},"y":{}}
{"x":{"y":{}}}
[[[[[]]]]]
[[[[]]]]
[[[]]]
- name: assignment operator with overlapping and slicing paths
args:
- -c
- '..[:0] = ..'
input: '[[[]]]'
expected: |
[[[[[]],[]],[]],[[]]]
[[[[]]],[[]]]
[[[]]]
- name: assignment operator array index negative error
args:
- '.[-1,0] = 1'
input: '[]'
error: |
setpath([-1]; 1) cannot be applied to []: array index should not be negative: -1
- name: assignment operator array index limit error
args:
- '.[200000000] = 1'
input: '[]'
error: |
array index too large: 200000000
- name: assignment operator with error function
args:
- -c
- 'error = 1'
input: 'null'
expected: |
null
- name: assignment operator with error function and valid paths
args:
- -c
- '(.x,error,.y) = 1'
input: 'null'
expected: |
{"x":1,"y":1}
- name: assignment operator with select
args:
- -c
- '(.[] | select(.k == "b") | .v) = 0'
input: '[{"k": "a", "v": 1}, {"k": "b", "v": 2}, {"k": "c", "v": 3}]'
expected: |
[{"k":"a","v":1},{"k":"b","v":0},{"k":"c","v":3}]
- name: assignment operator with fork
args:
- -c
- '[range(3)] | .[] = 0 | [.[] = 1, .[] = 2]'
input: 'null'
expected: |
[[1,1,1],[2,2,2]]
- name: assignment operator against large array
args:
- '[range(.)] | .[] = 1 | add'
input: '50000'
expected: |
50000
- name: assignment operator against large array with select
args:
- '[range(.)] | (.[] | select(. % 2 > 0)) = 1 | add'
input: '50000'
expected: |
625000000
- name: assignment operator against large array with range
args:
- '[range(.)] | .[range(length)] = 1 | add'
input: '50000'
expected: |
50000
- name: assignment operator against large array with slicing
args:
- '[range(.)] | .[range(length) | {start:.,end:(.+1)}] = [1] | add'
input: '50000'
expected: |
50000
- name: assignment operator against large object
args:
- '[{key:range(.)|tostring}] | from_entries | .[] = 1 | add'
input: '50000'
expected: |
50000
- name: assignment operator constructing large array
args:
- '.[range(50000)] = 1 | add'
input: 'null'
expected: |
50000
- name: update-assignment operator
args:
- -c
- '.foo |= .+1'
input: '{"foo": 1}'
expected: |
{"foo":2}
- name: update-assignment operator deeply
args:
- -c
- '.[0].a |= {"old":., "new":(.+1)}'
input: '[{"a":1,"b":2}]'
expected: |
[{"a":{"new":2,"old":1},"b":2}]
- name: update-assignment operator in function
args:
- -c
- 'def inc(x): x |= .+1; inc(.[].a)'
input: '[{"a":1,"b":2},{"a":2,"b":4},{"a":7,"b":8}]'
expected: |
[{"a":2,"b":2},{"a":3,"b":4},{"a":8,"b":8}]
- name: update-assignment operator with empty
args:
- -c
- '.foo |= empty'
input: '{"foo": 42, "bar": 48}'
expected: |
{"bar":48}
- name: update-assignment operator with repeat
args:
- -c
- '.foo |= repeat(.)'
input: '{"foo": 42, "bar": 48}'
expected: |
{"bar":48,"foo":42}
- name: update-assignment operator with same paths
args:
- -c
- '(.foo,.foo,.foo) |= .+1'
input: '{"foo": 0}'
expected: |
{"foo":3}
- name: update-assignment operator against array with empty function
args:
- -c
- '(.[] | select(. % 2 > 0)) |= empty'
input: '[1,2,3,4,5]'
expected: |
[2,4]
- name: update-assignment operator against array with conditional empty function
args:
- -c
- '[range(.)] | .[] |= if . % 2 == 0 then empty else [., -.] end'
input: '10'
expected: |
[[1,-1],[3,-3],[5,-5],[7,-7],[9,-9]]
- name: update-assignment operator with fork
args:
- -c
- '[range(3)] | .[] |= 0 | [.[] |= 1, .[] |= 2]'
input: 'null'
expected: |
[[1,1,1],[2,2,2]]
- name: update-assignment operator against large array
args:
- '[range(.)] | .[] |= . * 2 | add'
input: '50000'
expected: |
2499950000
- name: update-assignment operator against large array with select
args:
- '[range(.)] | (.[] | select(. % 2 > 0)) |= (. * 2) | add'
input: '50000'
expected: |
1874975000
- name: update-assignment operator against large object
args:
- '[range(.) | {key:tostring,value:.}] | from_entries | .[] |= . * 2 | add'
input: '50000'
expected: |
2499950000
- name: update-assignment operator against array with overlapping paths
args:
- -c
- '(.[1:3][],.[2:4][],.[2]) |= .+1'
input: '[1,2,3,4,5]'
expected: |
[1,3,6,5,5]
- name: update-assignment operator with optional operator
args:
- -c
- '.foo |= .?'
input: '{"foo": 42}'
expected: |
{"foo":42}
- name: update-assignment operator with infinite range
args:
- -c
- '[range(.)] | .[] |= range(infinite)'
input: '5'
expected: |
[0,0,0,0,0]
- name: update-assignment operator with try catch
args:
- -c
- '. |= try . catch .'
input: '1'
expected: |
1
- name: update-assignment operator with alternative operator
args:
- -c
- '.foo |= (fromjson? // "x")'
input: |
{"foo": 42}
{"foo": "42"}
{"foo": "a"}
{"foo": "0 a"}
{"foo": "true"}
{"foo": "[{}]"}
{"foo": "[][]"}
expected: |
{"foo":"x"}
{"foo":42}
{"foo":"x"}
{"foo":"x"}
{"foo":true}
{"foo":[{}]}
{"foo":"x"}
- name: update operators
args:
- -c
- '.[] += 2, .[] -= 2, .[] *= 2, .[] /= 2, .[] %= 2'
input: '[1,2,3]'
expected: |
[3,4,5]
[-1,0,1]
[2,4,6]
[0.5,1,1.5]
[1,0,1]
- name: update operator with query in right hand side
args:
- -c
- '.foo += .foo, .bar //= .foo, .[] /= .foo, .[] = .foo'
input: '{"foo":2}'
expected: |
{"foo":4}
{"bar":2,"foo":2}
{"foo":1}
{"foo":2}
- name: update operators associativity error
args:
- '. += 1 -= 2'
input: '1'
error: |
invalid query: . += 1 -= 2
. += 1 -= 2
^ unexpected token "-="
exit_code: 3
- name: error/0 function
args:
- '.foo[] | error'
input: '{ "foo": ["error message", "bar"] }'
error: |
error: error message
exit_code: 5
- name: error/0 function with null
args:
- 'error'
input: 'null'
- name: error/0 function on string and try catch
args:
- 'try error catch .'
input: '"foo"'
expected: |
"foo"
- name: error/0 function on values and try catch
args:
- 'null,1,[],{x:42} | try error catch .'
input: '0'
expected: |
1
[]
{
"x": 42
}
- name: error/1 function
args:
- '.foo | error("error message")'
input: '{ "foo": 1 }'
error: |
error: error message
exit_code: 5
- name: error/1 function and try catch
args:
- 'try error({ x: 42 }) catch .'
input: '0'
expected: |
{
"x": 42
}
- name: error/1 function with null
args:
- 'error(null)'
input: '1'
- name: path function identity
args:
- 'path(.)'
input: '{}'
expected: |
[]
- name: path function deep
args:
- -c
- 'path(.a|.[1,2:3,4].b[5,6])'
input: '{}'
expected: |
["a",{"end":3,"start":1},"b",5]
["a",{"end":4,"start":1},"b",5]
["a",{"end":3,"start":2},"b",5]
["a",{"end":4,"start":2},"b",5]
["a",{"end":3,"start":1},"b",6]
["a",{"end":4,"start":1},"b",6]
["a",{"end":3,"start":2},"b",6]
["a",{"end":4,"start":2},"b",6]
- name: path function select
args:
- -c
- '[path(.[] | select(. > 3))]'
input: '[1,3,5,7,3,8,9,1]'
expected: |
[[2],[3],[5],[6]]
- name: path function recurse
args:
- -c
- '[path(..)]'
input: '{"a":{"b":[0,1,2]},"c":[3,4]}'
expected: |
[[],["a"],["a","b"],["a","b",0],["a","b",1],["a","b",2],["c"],["c",0],["c",1]]
- name: path function and pattern
args:
- -c
- '(.a as $x | (.b,.c)) = "b"'
input: '{"a":null,"b":null}'
expected: |
{"a":null,"b":"b","c":"b"}
- name: path function result
args:
- -c
- '.a[path(.b)[0]]'
input: '{"a":{"b":0}}'
expected: |
0
- name: path function with select
args:
- -c
- 'path(.[] | select(.id | startswith("x")) | .id)'
input: '[{"id": "xy"}, {"id": "yx"}]'
expected: |
[0,"id"]
- name: path function with getpath
args:
- -c
- '[path(getpath([[0]] | .[0],.[]))]'
input: 'null'
expected: |
[[0],[0]]
- name: path function against nan
args:
- -c
- '[nan,{x:nan}] | path(.[1].x)'
input: 'null'
expected: |
[1,"x"]
- name: path function nested
args:
- -c
- 'path(.a[path(.b[.a:.b])[0]])'
input: '{"a":{"b":0}}'
expected: |
["a","b"]
- name: path function error with arithmetic operator
args:
- 'path(. + 1)'
input: 'null'
error: |
invalid path against: number (1)
- name: path function error with object indexing
args:
- 'path({}.x)'
input: '{}'
error: |
invalid path against: object ({})
- name: path function error with array indexing
args:
- 'path([0][0 + 0])'
input: '[0]'
error: |
invalid path against: array ([0])
- name: path function error with array slicing
args:
- 'path([0][0:1])'
input: '[0]'
error: |
invalid path against: array ([0])
- name: path function error with getpath function
args:
- 'path({} | getpath([]))'
input: '{}'
error: |
invalid path against: object ({})
- name: path function with binding array slicing
args:
- '.[:1] as $x | path($x.[0])'
input: '[0]'
expected: |
[
0
]
- name: path function error with binding array slicing
args:
- '.[:0] as $x | path($x.[0])'
input: '[0]'
error: |
invalid path against: array ([])
- name: path function with function declaration
args:
- 'def f($x): .y; path(f(.x))'
input: 'null'
expected: |
[
"y"
]
- name: path function with assignment operator
args:
- 'path(. = .x)'
input: 'null'
expected: |
[]
- name: path function with error function
args:
- '[path(error)]'
input: 'null'
expected: |
[]
- name: path function with error function and valid paths
args:
- -c
- '[path(.x,error,.y)]'
input: 'null'
expected: |
[["x"],["y"]]
- name: path function with error message
args:
- '[path("x"|error)]'
input: 'null'
error: |
error: x
- name: path function iterate error of array
args:
- '[.[]][].a = 1'
input: '[{"a":0}]'
error: |
invalid path on iterating against: array ([{"a":0}])
- name: path function iterate error of object
args:
- '{}[] = 10'
input: '{}'
error: |
invalid path on iterating against: object ({})
- name: paths/0 function
args:
- -c
- 'paths'
input: '[1,[[1,{"a":2},3],{"a":[2]}]]'
expected: |
[0]
[1]
[1,0]
[1,0,0]
[1,0,1]
[1,0,1,"a"]
[1,0,2]
[1,1]
[1,1,"a"]
[1,1,"a",0]
- name: paths/1 function
args:
- -c
- 'paths(. > 2)'
input: '[1,[[1,{"a":2},3],{"a":[2]}]]'
expected: |
[1]
[1,0]
[1,0,1]
[1,0,2]
[1,1]
[1,1,"a"]
- name: bsearch function
args:
- 'bsearch(0,1,2,3,4,5,6)'
input: '[1,3,5]'
expected: |
-1
0
-2
1
-3
2
-4
- name: gmtime, localtime functions
args:
- -c
- 'gmtime, localtime'
input: '1500000000 1567890123.456 1600000000.111'
expected: | # tested with UTC-7
[2017,6,14,2,40,0,5,194]
[2017,6,13,19,40,0,4,193]
[2019,8,7,21,2,3.4560000889999998,6,249]
[2019,8,7,14,2,3.4560000889999998,6,249]
[2020,8,13,12,26,40.111000061,0,256]
[2020,8,13,5,26,40.111000061,0,256]
- name: mktime, strftime, strflocaltime, todate functions
args:
- -c
- 'mktime, ((.,mktime) | strftime("%Y-%m-%dT%H:%M:%SZ")), ((.,mktime) | strflocaltime("%Y-%m-%dT%H:%M:%S%z")), todate'
input: |
[2017,6,14,2,40,0,5,194]
[2019,8,7,21,2,3.4560000889999998,6,249]
[2020,8,13,12,26,40.111000061,0,256]
expected: |
1500000000
"2017-07-14T02:40:00Z"
"2017-07-14T02:40:00Z"
"2017-07-14T02:40:00-0700"
"2017-07-13T19:40:00-0700"
"2017-07-14T02:40:00Z"
1567890123.456
"2019-09-07T21:02:03Z"
"2019-09-07T21:02:03Z"
"2019-09-07T21:02:03-0700"
"2019-09-07T14:02:03-0700"
"2019-09-07T21:02:03Z"
1600000000.111
"2020-09-13T12:26:40Z"
"2020-09-13T12:26:40Z"
"2020-09-13T12:26:40-0700"
"2020-09-13T05:26:40-0700"
"2020-09-13T12:26:40Z"
- name: strptime, fromdate functions
args:
- -c
- 'strptime("%Y-%m-%dT%H:%M:%S%z"), fromdate'
input: |
"2017-07-14T02:40:00Z"
"2019-09-08T06:02:03+0900"
"2020-09-13T07:26:40-05:00"
expected: |
[2017,6,14,2,40,0,5,194]
1500000000
[2019,8,7,21,2,3,6,249]
1567890123
[2020,8,13,12,26,40,0,256]
1600000000
- name: strftime, strptime functions
args:
- 'strptime("%c") | strftime("%c")'
input: |
"Thu Jul 23 20:41:06 2020"
expected: |
"Thu Jul 23 20:41:06 2020"
- name: now function
args:
- -c
- 'now | type'
input: 'null'
expected: |
"number"
- name: debug/0 function
args:
- -c
- 'recurse(debug|.[]?)'
input: |
[{}]
[1,{"a":[2,"b"]}]
expected: |
[{}]
{}
[1,{"a":[2,"b"]}]
1
{"a":[2,"b"]}
[2,"b"]
2
"b"
error: |
["DEBUG:",[{}]]
["DEBUG:",{}]
["DEBUG:",[1,{"a":[2,"b"]}]]
["DEBUG:",1]
["DEBUG:",{"a":[2,"b"]}]
["DEBUG:",[2,"b"]]
["DEBUG:",2]
["DEBUG:","b"]
- name: debug/1 function
args:
- 'debug("value: \(.)", [.,.])'
input: 'null false "test" [] {}'
expected: |
null
false
"test"
[]
{}
error: |
["DEBUG:","value: null"]
["DEBUG:",[null,null]]
["DEBUG:","value: false"]
["DEBUG:",[false,false]]
["DEBUG:","value: test"]
["DEBUG:",["test","test"]]
["DEBUG:","value: []"]
["DEBUG:",[[],[]]]
["DEBUG:","value: {}"]
["DEBUG:",[{},{}]]
- name: stderr function
args:
- -c
- 'recurse(stderr|.[]?)'
input: |
[{}]
[1,{"a":[2,"b"]}]
"DEBUG:"
expected: |
[{}]
{}
[1,{"a":[2,"b"]}]
1
{"a":[2,"b"]}
[2,"b"]
2
"b"
"DEBUG:"
error: '[{}]{}[1,{"a":[2,"b"]}]1{"a":[2,"b"]}[2,"b"]2bDEBUG:'
- name: debug and stderr in builtins
args:
- 'builtins | sort[] | select(test("debug|stderr"))'
input: 'null'
expected: |
"debug/0"
"debug/1"
"stderr/0"
- name: input_filename function with stdin input
args:
- 'input_filename'
input: '0 1 2'
expected: |
"<stdin>"
"<stdin>"
"<stdin>"
- name: input_filename function with null input option
args:
- -n
- 'input_filename'
input: '0'
expected: |
null
- name: input_filename function with raw string input option
args:
- --raw-input
- 'input_filename'
input: |
1
2
3
expected: |
"<stdin>"
"<stdin>"
"<stdin>"
- name: input_filename function with slurp option
args:
- --slurp
- 'input_filename'
input: |
1
2
3
expected: |
"<stdin>"
- name: input_filename function with input and slurp option
args:
- --raw-input
- --slurp
- 'input_filename'
input: |
1
2
3
expected: |
"<stdin>"
- name: input_filename function with json file arguments
args:
- 'input_filename'
- 'testdata/1.json'
- 'testdata/2.json'
input: '0'
expected: |
"testdata/1.json"
"testdata/2.json"
- name: input_filename function with null input option and json file arguments
args:
- -n
- '., inputs, (try input catch .) | input_filename'
- 'testdata/1.json'
- 'testdata/2.json'
input: '0'
expected: |
null
"testdata/1.json"
"testdata/2.json"
null
- name: input_filename function with hyphen for stdin
args:
- 'input_filename'
- '-'
- 'testdata/1.json'
- '-'
- 'testdata/2.json'
- '-'
input: '0'
expected: |
"<stdin>"
"testdata/1.json"
"testdata/2.json"
- name: input_filename function with yaml input option
args:
- --yaml-input
- 'input_filename'
input: '0'
expected: |
"<stdin>"
- name: input_filename function with yaml file arguments
args:
- --yaml-input
- 'input_filename'
- 'testdata/1.yaml'
input: '0'
expected: |
"testdata/1.yaml"
"testdata/1.yaml"
"testdata/1.yaml"
- name: input_filename in builtins
args:
- 'builtins[] | select(test("input_filename"))'
input: 'null'
expected: |
"input_filename/0"
- name: halt function
args:
- 'def f($n): if $n > 0 then $n, f($n - 1) else halt end; f(.), .'
input: '3'
expected: |
3
2
1
- name: halt function and raw string input option
args:
- -R
- 'halt'
input: |
1
2
3
- name: halt function and json file arguments
args:
- 'halt'
- 'testdata/1.json'
- 'testdata/2.json'
- name: halt_error/0 function
args:
- 'halt_error'
input: '1'
error: |
1
exit_code: 5
- name: halt_error/0 function on nan
args:
- 'nan | halt_error'
input: 'null'
error: |
null
exit_code: 5
- name: halt_error/0 function and try catch
args:
- 'range(5) | try halt_error catch .'
input: 'null'
error: |
0
exit_code: 5
- name: halt_error/0 function with null input and try catch
args:
- 'try halt_error catch .'
input: 'null'
exit_code: 5
- name: halt_error/0 function with multiple input values
args:
- 'halt_error'
input: |
1
2
3
error: |
1
2
3
exit_code: 5
- name: halt_error/0 function and raw string input option
args:
- -R
- 'halt_error'
input: |
1
2
3
error: |
123
exit_code: 5
- name: halt_error/1 function
args:
- 'halt_error(42)'
input: 'null'
exit_code: 42
- name: builtins function
args:
- 'builtins | length > 100'
input: 'null'
expected: |
true
- name: env function
args:
- 'env|length > 0'
input: 'null'
expected: |
true
- name: env in function
args:
- 'def f: env; f|length > 0'
input: 'null'
expected: |
true
- name: env in builtins
args:
- 'builtins[] | select(test("env"))'
input: 'null'
expected: |
"env/0"
- name: $ENV variable
args:
- '[$ENV|length > 0, 1 as $ENV | $ENV]'
input: 'null'
expected: |
[
true,
1
]
- name: env arguments count error
args:
- 'env(0)'
input: 'null'
error: |
function not defined: env/1
exit_code: 3
- name: input function
args:
- -n
- 'input, input'
input: '1'
expected: |
1
error: |
break
- name: input function with binomial operator
args:
- -n
- 'input + input[0]'
input: |
[1]
2
expected: |
3
- name: input function in function
args:
- -n
- 'def f: [def f: input; range(3) | f]; f'
input: '1 2 3'
expected: |
[
1,
2,
3
]
- name: input function with files
args:
- -n
- -c
- 'range(5) | input'
- 'testdata/1.json'
- 'testdata/7.json'
- 'testdata/1.json'
expected: |
{"foo":10}
1
2
{"foo":42}
{"foo":10}
- name: input function without null input option
args:
- '. + input'
input: '1 2'
expected: |
3
- name: input function with stream option
args:
- -n
- -c
- --stream
- 'range(5) | input'
input: '{"a":[1,2,3]}'
expected: |
[["a",0],1]
[["a",1],2]
[["a",2],3]
[["a",2]]
[["a"]]
- name: inputs function
args:
- -n
- 'reduce inputs as $x (0; . + $x)'
input: '1 2 3 4 5'
expected: |
15
- name: inputs function with stream option
args:
- -n
- -c
- --stream
- 'range(5) | input'
input: '{"a":[1,2,3]}'
expected: |
[["a",0],1]
[["a",1],2]
[["a",2],3]
[["a",2]]
[["a"]]
- name: inputs function with stream option and truncate_stream function
args:
- -n
- --stream
- 'fromstream(1 | truncate_stream(inputs) | select(length > 1) | .[0] |= .[1:])'
input: '{"a":[1,true,null,"x"]}'
expected: |
1
true
null
"x"
- name: inputs function with stream option
args:
- -n
- -c
- --stream
- '[inputs][]'
input: '{"a":1} {"b":2} {"c":3}'
expected: |
[["a"],1]
[["a"]]
[["b"],2]
[["b"]]
[["c"],3]
[["c"]]
- name: inputs function with stream and slurp option
args:
- -n
- -c
- --stream
- --slurp
- 'inputs[]'
input: '{"a":1} {"b":2} {"c":3}'
expected: |
[["a"],1]
[["a"]]
[["b"],2]
[["b"]]
[["c"],3]
[["c"]]
- name: inputs function with raw input option
args:
- -n
- -R
- 'inputs'
input: |
a b
c
d
1
expected: |
"a b"
"c"
"d"
"1"
- name: inputs function with raw input and slurp option
args:
- -n
- -R
- -s
- 'inputs'
input: |
a b
c
expected: |
"a b\nc\n"
- name: inputs function with yaml input option
args:
- -n
- --yaml-input
- 'inputs'
input: |
foo: 1
---
bar: 2
---
baz: 3
expected: |
{
"foo": 1
}
{
"bar": 2
}
{
"baz": 3
}
- name: inputs function with yaml input, slurp option
args:
- -n
- --slurp
- --yaml-input
- 'inputs'
input: |
foo: 1
---
bar: 2
---
baz: 3
expected: |
[
{
"foo": 1
},
{
"bar": 2
},
{
"baz": 3
}
]
- name: match function
args:
- -c
- '[match("bcd")], [match("☆★"; "g")], (("","g","i","ig") as $flag | [match("bcd"; $flag)]), [match("ABC.?D.?E"; "mg")], [match("A(?<bar>B(C)(.?D))(?<foo>.?E)")], [match("b(?<foo>c)(d)"; "igm")], [match("bc(c(.*))?d")]'
input: '"abcde☆★abcde☆★ABCDE☆ABC\nD\nE"'
expected: |
[{"captures":[],"length":3,"offset":1,"string":"bcd"}]
[{"captures":[],"length":2,"offset":5,"string":"☆★"},{"captures":[],"length":2,"offset":12,"string":"☆★"}]
[{"captures":[],"length":3,"offset":1,"string":"bcd"}]
[{"captures":[],"length":3,"offset":1,"string":"bcd"},{"captures":[],"length":3,"offset":8,"string":"bcd"}]
[{"captures":[],"length":3,"offset":1,"string":"bcd"}]
[{"captures":[],"length":3,"offset":1,"string":"bcd"},{"captures":[],"length":3,"offset":8,"string":"bcd"},{"captures":[],"length":3,"offset":15,"string":"BCD"}]
[{"captures":[],"length":5,"offset":14,"string":"ABCDE"},{"captures":[],"length":7,"offset":20,"string":"ABC\nD\nE"}]
[{"captures":[{"length":3,"name":"bar","offset":15,"string":"BCD"},{"length":1,"name":null,"offset":16,"string":"C"},{"length":1,"name":null,"offset":17,"string":"D"},{"length":1,"name":"foo","offset":18,"string":"E"}],"length":5,"offset":14,"string":"ABCDE"}]
[{"captures":[{"length":1,"name":"foo","offset":2,"string":"c"},{"length":1,"name":null,"offset":3,"string":"d"}],"length":3,"offset":1,"string":"bcd"},{"captures":[{"length":1,"name":"foo","offset":9,"string":"c"},{"length":1,"name":null,"offset":10,"string":"d"}],"length":3,"offset":8,"string":"bcd"},{"captures":[{"length":1,"name":"foo","offset":16,"string":"C"},{"length":1,"name":null,"offset":17,"string":"D"}],"length":3,"offset":15,"string":"BCD"}]
[{"captures":[{"length":0,"name":null,"offset":-1,"string":null},{"length":0,"name":null,"offset":-1,"string":null}],"length":3,"offset":1,"string":"bcd"}]
- name: match function type error
args:
- 'match("x"; "g")'
input: '{}'
error: |
match("x"; "g") cannot be applied to: object ({})
- name: match function flag error
args:
- 'match("x"; "a")'
input: '""'
error: |
unsupported regular expression flag: "a"
- name: match function regular expression error
args:
- 'match("["; "g")'
input: '""'
error: |
invalid regular expression "[": error parsing regexp: missing closing ]: `[`
- name: test function
args:
- -c
- '[test("xyz"), test("bcd"), test("efg"), test("efg"; "i"), test("☆★")]'
input: '"abcde☆★abcde☆★ABCDEFG"'
expected: |
[false,true,false,true,true]
- name: capture function
args:
- -c
- 'capture("bcd"), capture("b(?<foo>c.?(?<bar>d..))"), [capture("(?<a>b(?<foo>c).?(?<bar>d..))"; "gmi")]'
input: '"abcdeABCDEabcde"'
expected: |
{}
{"bar":"deA","foo":"cdeA"}
[{"a":"bcdeA","bar":"deA","foo":"c"},{"a":"BCDEa","bar":"DEa","foo":"C"}]
- name: scan function
args:
- -c
- 'scan("abc"), scan("abc"; "i"), scan("(b(c*)(d*))"), scan("(b(c*)(d*))"; "i")'
input: '"abcdeABCCDDEabcce"'
expected: |
"abc"
"abc"
"abc"
"ABC"
"abc"
["bcd","c","d"]
["bcc","cc",""]
["bcd","c","d"]
["BCCDD","CC","DD"]
["bcc","cc",""]
- name: split/2 function
args:
- -c
- 'split("a"), split("a+"), split("a+"; ""), split("a+"; "i")'
input: '"abaacaAad"'
expected: |
["","b","","c","A","d"]
["abaacaAad"]
["","b","c","A","d"]
["","b","c","d"]
- name: splits function
args:
- -c
- '[splits("a")], [splits("a+")], [splits("a+"; "")], [splits("a+"; "i")]'
input: '"abaacaAad"'
expected: |
["","b","","c","A","d"]
["","b","c","A","d"]
["","b","c","A","d"]
["","b","c","d"]
- name: sub function
args:
- 'sub("a"; "b"), sub("aaa"; "b"), sub("a"; "b","c"), sub("a(?<a>.)"; "\(.a)b\(.a)"; "ig"), sub("(?<foo>★)"; "\(.foo)☆\(.foo)"), sub("^"; "b")'
input: '"abc☆★☆ABC"'
expected: |
"bbc☆★☆ABC"
"abc☆★☆ABC"
"bbc☆★☆ABC"
"cbc☆★☆ABC"
"bbbc☆★☆BbBC"
"abc☆★☆★☆ABC"
"babc☆★☆ABC"
- name: gsub function
args:
- 'gsub("a"; "b"), gsub("a.c"; "b"), gsub("a"; "b","c"), gsub("a(?<a>..)"; "\(.a+.a)"; "i"), gsub("(?<foo>★)"; "\(.foo)☆\(.foo)"), gsub("^"; "a")'
input: '"abcABC☆★☆ABCabc"'
expected: |
"bbcABC☆★☆ABCbbc"
"bABC☆★☆ABCb"
"bbcABC☆★☆ABCbbc"
"cbcABC☆★☆ABCbbc"
"bbcABC☆★☆ABCcbc"
"cbcABC☆★☆ABCcbc"
"bcbcBCBC☆★☆BCBCbcbc"
"abcABC☆★☆★☆ABCabc"
"aabcABC☆★☆ABCabc"
- name: INDEX function
args:
- -c
- 'INDEX(range(5); .*2)'
input: 'null'
expected: |
{"0":0,"2":1,"4":2,"6":3,"8":4}
- name: JOIN function
args:
- -c
- '[range(5)] | JOIN(map(.*3); .*2)'
input: 'null'
expected: |
[[0,0],[1,6],[2,12],[3,null],[4,null]]
- name: IN function
args:
- -c
- '[range(5; 13)|IN(range(0; 10; 3))]'
input: 'null'
expected: |
[false,true,false,false,true,false,false,false]
- name: format function
args:
- 'format("html","uri","csv","tsv","sh","base64")'
input: '[1,2,3]'
expected: |
"[1,2,3]"
"%5B1%2C2%2C3%5D"
"1,2,3"
"1\t2\t3"
"1 2 3"
"WzEsMiwzXQ=="
- name: format function error
args:
- -n
- 'format("t")'
error: |
format not defined: @t
- name: format strings @text
args:
- -n
- '@text'
expected: |
"null"
- name: format strings @json
args:
- '@json'
input: '{"a":42}'
expected: |
"{\"a\":42}"
- name: format strings @json with string interpolation
args:
- '@json "0\(.)1\(. + .)2\([2])3"'
input: '[1]'
expected: |
"0[1]1[1,1]2[2]3"
- name: format strings @html
args:
- '@html'
input: |
{"foo": "<div>&'\"</div>"}
expected: |
"{"foo":"<div>&'\\"</div>"}"
- name: format strings @html with string interpolation
args:
- '@html "x\(.)x\(.+.)x\("<>")x"'
input: |
["<>"]
expected: |
"x["<>"]x["<>","<>"]x<>x"
- name: format strings @uri
args:
- '@uri'
input: |
[1, {"foo": "<div>&'\"()</div>"}]
expected: |
"%5B1%2C%7B%22foo%22%3A%22%3Cdiv%3E%26%27%5C%22%28%29%3C%2Fdiv%3E%22%7D%5D"
- name: format strings @uri with string interpolation
args:
- '@uri "q=\(.)&q=\(. + .)"'
input: |
["<>", "{&}"]
expected: |
"q=%5B%22%3C%3E%22%2C%22%7B%26%7D%22%5D&q=%5B%22%3C%3E%22%2C%22%7B%26%7D%22%2C%22%3C%3E%22%2C%22%7B%26%7D%22%5D"
- name: format strings @urid
args:
- '@urid'
input: |
"%5B1%2C%7B%22foo%22%3A%22%3Cdiv%3E%26%27%5C%22%28%29%3C%2Fdiv%3E%22%7D%5D"
expected: |
"[1,{\"foo\":\"<div>&'\\\"()</div>\"}]"
- name: format strings @urid error
args:
- '@urid'
input: |
"%5B1%2C%"
error: |
@urid cannot be applied to "%5B1%2C%": invalid URL escape "%"
- name: format strings @csv
args:
- '@csv'
input: |
[1, "foo", null, "foo,\n\"bar\"\tbaz\u0000\\0"]
expected: |
"1,\"foo\",,\"foo,\n\"\"bar\"\"\tbaz\\0\\0\""
- name: format strings @csv with string interpolation
args:
- '@csv "\(.),\(. + .),\([nan])"'
input: |
[1, "foo", null, 2]
expected: |
"1,\"foo\",,2,1,\"foo\",,2,1,\"foo\",,2,"
- name: format strings @csv error
args:
- '@csv'
input: 'null'
error: |
@csv cannot be applied to: null
- name: format strings @csv row error
args:
- '@csv'
input: |
[1, "foo", null, {"foo":1}]
error: |
@csv cannot format an array including: object ({"foo":1})
- name: format strings @tsv
args:
- '@tsv'
input: |
[1, "foo", null, "foo,\n\"bar\"\tbaz\u0000\\0"]
expected: |
"1\tfoo\t\tfoo,\\n\"bar\"\\tbaz\\0\\\\0"
- name: format strings @tsv with string interpolation
args:
- '@tsv "\(.),\(. + .),\([nan])"'
input: |
[1, "foo", null, 2]
expected: |
"1\tfoo\t\t2,1\tfoo\t\t2\t1\tfoo\t\t2,"
- name: format strings @tsv error
args:
- '@tsv'
input: '0'
error: |
@tsv cannot be applied to: number (0)
- name: format strings @tsv row error
args:
- '@tsv'
input: |
[1, "foo", null, ["foo"]]
error: |
@tsv cannot format an array including: array (["foo"])
- name: format strings @sh
args:
- '@sh'
input: |
null
true
[1, "f'o'o\u0000\\0", null, false]
expected: |
"null"
"true"
"1 'f'\\''o'\\''o\\0\\0' null false"
- name: format strings @sh error
args:
- '@sh'
input: |
[{"foo": "<>"}]
error: |
@sh cannot format an array including: object ({"foo":"<>"})
- name: format strings @base64
args:
- '@base64'
input: '{"foo":"bar"}'
expected: |
"eyJmb28iOiJiYXIifQ=="
- name: format strings @base64 with string interpolation
args:
- '@base64 "\(.),\(. + .),\(. + . + .)"'
input: '[1,2]'
expected: |
"WzEsMl0=,WzEsMiwxLDJd,WzEsMiwxLDIsMSwyXQ=="
- name: format strings @base64d
args:
- -R
- '@base64d'
input: 'eyJmb28iOiJiYXIifQ=='
expected: |
"{\"foo\":\"bar\"}"
- name: format strings @base64d without padding
args:
- -R
- '@base64d'
input: 'eyJmb28iOiJiYXIifQ'
expected: |
"{\"foo\":\"bar\"}"
- name: format strings @base64d with trailing characters after padding
args:
- -R
- '@base64d'
input: 'eyJmb28iOiJiYXIifQ=x=y'
expected: |
"{\"foo\":\"bar\"}"
- name: format strings @base64d error
args:
- '@base64d'
input: |
":"
error: |
@base64d cannot be applied to ":": illegal base64 data at input byte 0
- name: format strings not defined error
args:
- -n
- '@foo'
error: |
format not defined: @foo
exit_code: 5
- name: format strings not defined error with numeric characters
args:
- -n
- '@0'
error: |
format not defined: @0
exit_code: 5
- name: format strings not defined error with optional operator
args:
- -n
- '@foo?, @bar"\(0|debug)"?, 1'
expected: |
1
error: |
["DEBUG:",0]
- name: destructuring alternative operator
args:
- '. as {$a} ?// [$a] ?// $a | $a'
input: '[1] [2] {"a":3} 4'
expected: |
1
2
3
4
- name: destructuring alternative operator with error backtrack
args:
- -c
- '. as {$a} ?// [$a] ?// $a | if 1 < $a and $a < 4 then $a|error else $a end'
input: '[1] [2] {"a":3} 4'
expected: |
1
[2]
{"a":3}
4
- name: destructuring alternative operator with multiple variables
args:
- -c
- '. as {$a, b: [$c, {$d}]} ?// [$a, {$b}, $e] ?// $f | [$a, $b, $c, $d, $e, $f]'
input: '{"a":1,"b":[2,{"d":3}]} [4,{"b":5,"c":6},7,8,9] "foo"'
expected: |
[1,null,2,3,null,null]
[4,5,null,null,7,null]
[null,null,null,null,null,"foo"]
- name: destructuring alternative operator with array pattern against string
args:
- '. as [$a] ?// $a | $a'
input: 'null "" "abc" [] ["abc"]'
expected: |
null
""
"abc"
null
"abc"
- name: compact output option
args:
- -c
- '.'
input: '{ "foo": ["hello", "world"] }'
expected: |
{"foo":["hello","world"]}
- name: compact output long option
args:
- --compact-output
- '.'
input: '{ "foo": ["hello", "world"] }'
expected: |
{"foo":["hello","world"]}
- name: compact output long option with value
args:
- --compact-output=1
- '.'
input: '0'
error: |
boolean flag `--compact-output' cannot have an argument
exit_code: 2
- name: raw string output short option
args:
- -r
- '.foo[]'
input: '{ "foo": ["hello", "world", "multiple\nline"] }'
expected: |
hello
world
multiple
line
- name: raw string output long option
args:
- --raw-output
- '.foo[]'
input: '{ "foo": ["hello", "world", "multiple\nline"] }'
expected: |
hello
world
multiple
line
- name: raw string output option against non-string
args:
- -r
- '.'
input: '{ "foo": "multiple\nline" }'
expected: |
{
"foo": "multiple\nline"
}
- name: raw string output with nul delimiter option
args:
- --raw-output0
- '.[]'
input: '["foo",[{},{}],1,[2,3]]'
expected: "foo\x00[\n {},\n {}\n]\x001\x00[\n 2,\n 3\n]\x00"
- name: raw string output with nul delimiter option error with string containing nul character
args:
- --raw-output0
- '"foo","bar","b\u0000a\u0000z","qux"'
input: 'null'
expected: "foo\x00bar\x00"
error: |
cannot output a string containing NUL character: "b\x00a\x00z"
- name: raw string output without and with nul delimiter options
args:
- --raw-output
- --raw-output0
- '.[]'
input: '["foo",1,2,3]'
expected: "foo\x001\x002\x003\x00"
- name: raw string output with nul delimiter option with compact output option
args:
- --raw-output0
- --compact-output
- '.[]'
input: '["foo",[{},{}],1,[2,3]]'
expected: "foo\x00[{},{}]\x001\x00[2,3]\x00"
- name: join output option
args:
- -j
- '.[]'
input: '["foo",1,2,3]'
expected: "foo123"
- name: join output long option
args:
- --join-output
- '.[]'
input: '["foo",[{},{}],1,[2,3]]'
expected: "foo[\n {},\n {}\n]1[\n 2,\n 3\n]"
- name: join output option with raw string output with nul delimiter option
args:
- --raw-output0
- --join-output
- '.[]'
input: '["foo",1,2,3]'
expected: "foo\x001\x002\x003\x00"
- name: color output option
args:
- -C
- '., null, nan, infinite'
input: '{"x":"foo","y":128,"z":[null,false,true,3.14,"foo",{}]}'
expected:
"{\n\
\ \e[34;1m\"x\"\e[0m: \e[32m\"foo\"\e[0m,\n\
\ \e[34;1m\"y\"\e[0m: \e[36m128\e[0m,\n\
\ \e[34;1m\"z\"\e[0m: [\n\
\ \e[90mnull\e[0m,\n\
\ \e[33mfalse\e[0m,\n\
\ \e[33mtrue\e[0m,\n\
\ \e[36m3.14\e[0m,\n\
\ \e[32m\"foo\"\e[0m,\n\
\ {}\n\
\ ]\n\
}\n\
\e[90mnull\e[0m\n\
\e[90mnull\e[0m\n\
\e[36m1.7976931348623157e+308\e[0m\n"
- name: color output option configured by environment variable
args:
- -C
- '., null, nan, infinite'
input: |
{ "x": "foo", "y": 128, "z": [null, false, true, 3.14, "foo", {}] }
env:
- GOJQ_COLORS=31:32:33:34:35:36:41:42
expected:
"\e[42m{\e[0m\n\
\ \e[36m\"x\"\e[0m\e[42m:\e[0m \e[35m\"foo\"\e[0m\e[42m,\e[0m\n\
\ \e[36m\"y\"\e[0m\e[42m:\e[0m \e[34m128\e[0m\e[42m,\e[0m\n\
\ \e[36m\"z\"\e[0m\e[42m:\e[0m \e[41m[\e[0m\n\
\ \e[31mnull\e[0m\e[41m,\e[0m\n\
\ \e[32mfalse\e[0m\e[41m,\e[0m\n\
\ \e[33mtrue\e[0m\e[41m,\e[0m\n\
\ \e[34m3.14\e[0m\e[41m,\e[0m\n\
\ \e[35m\"foo\"\e[0m\e[41m,\e[0m\n\
\ \e[42m{\e[0m\e[42m}\e[0m\n\
\ \e[41m]\e[0m\n\
\e[42m}\e[0m\n\
\e[31mnull\e[0m\n\
\e[31mnull\e[0m\n\
\e[34m1.7976931348623157e+308\e[0m\n"
- name: color output option configured by environment variable with fewer colors
args:
- -C
- '.'
input: |
{ "foo": [null, false, true, 3.14, "bar"] }
env:
- GOJQ_COLORS=31;1:::32;2
expected:
"{\n\
\ \"foo\": [\n\
\ \e[31;1mnull\e[0m,\n\
\ false,\n\
\ true,\n\
\ \e[32;2m3.14\e[0m,\n\
\ \"bar\"\n\
\ ]\n\
}\n"
- name: invalid colors environment variable
args:
- -C
- '.'
input: |
0
env:
- GOJQ_COLORS=30:31;;:32
error: |
invalid color: "31;;"
- name: color output long option
args:
- --color-output
- '.'
input: '{"foo":42}'
expected:
"{\n\
\ \e[34;1m\"foo\"\e[0m: \e[36m42\e[0m\n\
}\n"
- name: color output with compact output option
args:
- -C
- -c
- '.'
input: '{"x":42,"y":3.14,"z":[10000000000000000000]}'
expected:
"{\
\e[34;1m\"x\"\e[0m:\e[36m42\e[0m,\
\e[34;1m\"y\"\e[0m:\e[36m3.14\e[0m,\
\e[34;1m\"z\"\e[0m:[\e[36m10000000000000000000\e[0m]\
}\n"
- name: monochrome output option
args:
- -C
- -M
- '.'
input: '{"foo":42}'
expected: |
{
"foo": 42
}
- name: monochrome output long option
args:
- -C
- --monochrome-output
- '.'
input: '{"foo":42}'
expected: |
{
"foo": 42
}
- name: NO_COLOR environment variable with color output option
args:
- --color-output
- '.'
input: '{"foo":42}'
env:
- NO_COLOR=1
expected:
"{\n\
\ \e[34;1m\"foo\"\e[0m: \e[36m42\e[0m\n\
}\n"
- name: indent option
args:
- --indent
- '1'
- '.'
input: '{ "foo": ["hello", "world"] }'
expected: |
{
"foo": [
"hello",
"world"
]
}
- name: indent option with value 0
args:
- --indent
- '0'
- '.'
input: '{ "foo": ["hello", "world"] }'
expected: |
{"foo":["hello","world"]}
- name: indent option with deeply nested array
args:
- --indent
- '7'
- '.'
input: '{ "foo": ["hello", ["world", [[[[[[[[[]]]]]]]]]]] }'
expected: |
{
"foo": [
"hello",
[
"world",
[
[
[
[
[
[
[
[
[]
]
]
]
]
]
]
]
]
]
]
}
- name: indent option too many indentation count error
args:
- --indent=10
- '.'
input: '{ "foo": { "baz": ["hello", "world"] } }'
error: |
too many indentation count: 10
- name: indent option negative indentation count error
args:
- --indent
- -1
- '.'
input: '{ "foo": { "baz": ["hello", "world"] } }'
error: |
negative indentation count: -1
- name: indent option without argument
args:
- --indent
input: '0'
error: |
expected argument for flag `--indent'
exit_code: 2
- name: indent option parse error
args:
- --indent=foo
input: '0'
error: |
invalid argument for flag `--indent': strconv.Atoi: parsing "foo": invalid syntax
exit_code: 2
- name: tab option
args:
- --tab
- '.'
input: '{ "foo": { "baz": ["hello", ["world", [[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]] } }'
expected: |
{
"foo": {
"baz": [
"hello",
[
"world",
[
[
[
[
[
[
[
[
[
[
[
[
[
[
[
[]
]
]
]
]
]
]
]
]
]
]
]
]
]
]
]
]
]
}
}
- name: raw string input option
args:
- -R
- '.'
input: "null\nfalse\r\nfoo\nbar"
expected: |
"null"
"false\r"
"foo"
"bar"
- name: raw string input long option
args:
- --raw-input
- '.'
input: "null\nfalse\r\nfoo\nbar\n"
expected: |
"null"
"false\r"
"foo"
"bar"
- name: raw string input option error
args:
- -R
- '. / 2'
input: |
{
"foo": "bar"
}
error: |
cannot divide: string ("{") and number (2)
cannot divide: string (" \"foo\": \"bar\"") and number (2)
cannot divide: string ("}") and number (2)
- name: null input value option
args:
- -n
- '[.]'
expected: |
[
null
]
- name: null input value long option
args:
- --null-input
- '[.]'
expected: |
[
null
]
- name: null input value option with compact output option
args:
- -n
- -c
- '[.,.]'
expected: |
[null,null]
- name: null input value option with raw string input option
args:
- -n
- -R
- '.'
input: 'foo'
expected: |
null
- name: slurp option
args:
- -s
- '.'
input: |
null
false
[]
{ "foo": "bar" }
expected: |
[
null,
false,
[],
{
"foo": "bar"
}
]
- name: slurp long option
args:
- --slurp
- --compact-output
- '.'
input: |
null
false
expected: |
[null,false]
- name: slurp option with raw string input option
args:
- -s
- -R
- '.'
input: "null\nfalse\r\nfoo\nbar"
expected: |
"null\nfalse\r\nfoo\nbar"
- name: slurp option with null input option
args:
- -s
- -n
- '.'
expected: |
null
- name: slurp option with multiple json files
args:
- -s
- '.'
- 'testdata/1.json'
- 'testdata/2.json'
expected: |
[
{
"foo": 10
},
[
{
"bar": []
}
]
]
- name: slurp and raw input option with multiple json files
args:
- -R
- -s
- '.'
- 'testdata/1.json'
- 'testdata/2.json'
expected: |
"{\"foo\":10}\n[{\n\"bar\"\n:\n[]\n}]\n"
- name: stream option
args:
- -c
- --stream
- '.'
input: |
1
2
[]
{}
[3]
{"x":1,"y":2}
[1,2,{"x":{"y":[3,[{}],{"z":{}}]}}]
{"a":"b","c":[1,[2,{}]],"d":null,"e":1.234,"x":{"y":{"z":[1,2],"q":2},"w":3},"z":[{}]}
expected: |
[[],1]
[[],2]
[[],[]]
[[],{}]
[[0],3]
[[0]]
[["x"],1]
[["y"],2]
[["y"]]
[[0],1]
[[1],2]
[[2,"x","y",0],3]
[[2,"x","y",1,0],{}]
[[2,"x","y",1,0]]
[[2,"x","y",2,"z"],{}]
[[2,"x","y",2,"z"]]
[[2,"x","y",2]]
[[2,"x","y"]]
[[2,"x"]]
[[2]]
[["a"],"b"]
[["c",0],1]
[["c",1,0],2]
[["c",1,1],{}]
[["c",1,1]]
[["c",1]]
[["d"],null]
[["e"],1.234]
[["x","y","z",0],1]
[["x","y","z",1],2]
[["x","y","z",1]]
[["x","y","q"],2]
[["x","y","q"]]
[["x","w"],3]
[["x","w"]]
[["z",0],{}]
[["z",0]]
[["z"]]
- name: stream option with empty input
args:
- --stream
- '.'
input: ''
expected: ''
- name: stream option with null input option
args:
- -n
- --stream
- '.'
input: '1'
expected: |
null
- name: stream option with raw input option
args:
- -R
- --stream
- '.'
input: |
1
2
3
expected: |
"1"
"2"
"3"
- name: stream option with slurp option
args:
- -c
- --stream
- --slurp
- '.[]'
input: '{"a":1} {"b":2} {"c":3}'
expected: |
[["a"],1]
[["a"]]
[["b"],2]
[["b"]]
[["c"],3]
[["c"]]
- name: stream option with unterminated input
args:
- -c
- --stream
- '.'
input: '{"a":1,'
expected: |
[["a"],1]
error: |
invalid json: <stdin>
{"a":1,
^ unexpected EOF
- name: yaml input option
args:
- --yaml-input
- '.'
input: |
foo:
bar: 42
baz: |
a
b
qux: 100
---
foo: 1
---
bar
expected: |
{
"foo": {
"bar": 42,
"baz": "a\nb\n"
},
"qux": 100
}
{
"foo": 1
}
"bar"
- name: yaml file input
args:
- --yaml-input
- '.'
- 'testdata/1.yaml'
expected: |
{
"foo": {
"bar": 42,
"baz": "a\nb\n"
},
"qux": 100
}
{
"foo": 1
}
"bar"
- name: yaml input option with non-string keys
args:
- --yaml-input
- '.'
input: |
foo:
- 42: bar
expected: |
{
"foo": [
{
"42": "bar"
}
]
}
- name: yaml input option with timestamps
args:
- --yaml-input
- '.'
input: |
foo: 2021-01-02
bar: 2021-01-02t10:11:12Z
baz: "2021-01-02"
expected: | # it is impossible to keep the original timestamp strings
{
"bar": "2021-01-02T10:11:12Z",
"baz": "2021-01-02",
"foo": "2021-01-02T00:00:00Z"
}
- name: yaml input option with slurp option
args:
- --yaml-input
- --slurp
- '.'
input: |
foo:
bar: 42
baz: |
a
b
qux: 100
---
foo: 1
---
bar
expected: |
[
{
"foo": {
"bar": 42,
"baz": "a\nb\n"
},
"qux": 100
},
{
"foo": 1
},
"bar"
]
- name: yaml input option with hyphen for stdin
args:
- --yaml-input
- '.'
- '-'
input: |
foo: 1
expected: |
{
"foo": 1
}
- name: yaml input option error
args:
- --yaml-input
- '.'
input: |
foo: 10
10
bar:
error: |
invalid yaml: <stdin>:2
2 | 10
^ could not find expected ':'
- name: yaml input option multiple errors
args:
- --yaml-input
- '.'
input: |
foo: 1
bar: 2
foo: 3
error: |
invalid yaml: <stdin>:3
3 | foo: 3
^ mapping key "foo" already defined at line 1
- name: yaml file input error
args:
- --yaml-input
- '.'
- 'testdata/2.yaml'
error: |
invalid yaml: testdata/2.yaml:5
5 | a: b: c
^ mapping values are not allowed in this context
- name: yaml file input error in dos format
args:
- --yaml-input
- '.'
- 'testdata/3.yaml'
error: |
invalid yaml: testdata/3.yaml:5
5 | a: b: c
^ mapping values are not allowed in this context
- name: yaml file input error in mac format
args:
- --yaml-input
- '.'
- 'testdata/4.yaml'
error: |
invalid yaml: testdata/4.yaml:5
5 | a: b: c
^ mapping values are not allowed in this context
- name: yaml output option
args:
- --yaml-output
- '.'
input: '{"foo": 128, "bar": {"baz": [1,"qux", []]}}'
expected: |
bar:
baz:
- 1
- qux
- []
foo: 128
- name: yaml output option with multiple values
args:
- --yaml-output
- '..'
input: '{"foo": 128, "bar": [1,2,"foo"]}'
expected: |
bar:
- 1
- 2
- foo
foo: 128
---
- 1
- 2
- foo
---
1
---
2
---
foo
---
128
- name: yaml input and output option
args:
- --yaml-input
- --yaml-output
- '.'
input: |
foo: 42
---
foo:
bar: 42
baz: |
a
b
qux: 100
---
foo: 1
---
bar
expected: |
foo: 42
---
foo:
bar: 42
baz: |
a
b
qux: 100
---
foo: 1
---
bar
- name: yaml output with indent option
args:
- --yaml-output
- --indent
- '8'
- '.'
input: '{ "foo": { "baz": ["hello", "world"] } }'
expected: |
foo:
baz:
- hello
- world
- name: yaml output with indent option error
args:
- --yaml-output
- --indent
- '10'
- '.'
input: '{ "foo": { "baz": ["hello", "world"] } }'
error: |
too many indentation count: 10
- name: yaml output with tab option error
args:
- --yaml-output
- --tab
- '.'
input: '{"foo": 128, "bar": {"baz": [1,"qux", []]}}'
error: |
cannot use tabs for YAML output
- name: source query from file
args:
- -n
- -f
- 'testdata/1.jq'
expected: |
null
- name: source query from file short option in clumped options
args:
- -nf
- 'testdata/1.jq'
expected: |
null
- name: source query from file short option with equal sign
args:
- -n
- -f=testdata/1.jq
expected: |
null
- name: source query from file long option
args:
- --null-input
- --from-file
- 'testdata/1.jq'
expected: |
null
- name: source query from file long option with equal sign
args:
- --null-input
- --from-file=testdata/1.jq
expected: |
null
- name: invalid query
args:
- '>abc'
input: '{}'
error: |
invalid query: >abc
>abc
^ unexpected token ">"
exit_code: 3
- name: invalid query
args:
- '.abc['
input: '{}'
error: |
invalid query: .abc[
.abc[
^ unexpected EOF
exit_code: 3
- name: invalid query
args:
- '[ .[] | { .id } ]'
input: '{}'
error: |
invalid query: [ .[] | { .id } ]
[ .[] | { .id } ]
^ unexpected token ".id"
exit_code: 3
- name: invalid query
args:
- 'if 0then. else. end'
input: '{}'
error: |
invalid query: if 0then. else. end
if 0then. else. end
^ invalid token "0t"
exit_code: 3
- name: invalid query
args:
- '.foo & .bar'
input: '{}'
error: |
invalid query: .foo & .bar
.foo & .bar
^ unexpected token "&"
exit_code: 3
- name: invalid query
args:
- 'foo☆'
input: '{}'
error: |
invalid query: foo☆
foo☆
^ unexpected token "☆"
exit_code: 3
- name: invalid query
args:
- "\\/"
input: '{}'
error: |
invalid query: \/
\/
^ unexpected token "\\"
exit_code: 3
- name: invalid query
args:
- "{\n[]}"
input: '{}'
error: |
invalid query: <arg>:2
2 | []}
^ unexpected token "["
exit_code: 3
- name: invalid multiple line query
args:
- |
[
.[]
| { id } }
]
input: '{}'
error: |
invalid query: <arg>:3
3 | | { id } }
^ unexpected token "}"
exit_code: 3
- name: invalid multiple line query in file
args:
- -f
- 'testdata/10.jq'
error: |
invalid query: testdata/10.jq:5
5 | bar ]
^ unexpected token "]"
exit_code: 3
- name: invalid multiple line query in dos format
args:
- -f
- 'testdata/11.jq'
error: |
invalid query: testdata/11.jq:5
5 | bar ]
^ unexpected token "]"
exit_code: 3
- name: invalid multiple line query in mac format
args:
- -f
- 'testdata/12.jq'
error: |
invalid query: testdata/12.jq:5
5 | bar ]
^ unexpected token "]"
exit_code: 3
- name: invalid query in file
args:
- -f
- 'testdata/2.jq'
error: |
invalid query: testdata/2.jq:3
3 | bar, []
^ unexpected token "["
exit_code: 3
- name: query file not found
args:
- -f
- 'testdata/3.jq'
error: 'open testdata/3.jq:'
- name: query file not specified
args:
- -f
error: |
expected argument for flag `-f'
exit_code: 2
- name: invalid json unexpected eof error
input: '{'
error: |
invalid json: <stdin>
{
^ unexpected EOF
- name: invalid json unexpected eof error with multibyte characters
input: '{ "12345":'
error: |
invalid json: <stdin>
{ "12345":
^ unexpected EOF
- name: invalid json unexpected eof error with multiple lines
input: |
[0
,[
error: |
invalid json: <stdin>:2
2 | ,[
^ unexpected EOF
- name: invalid json invalid character with multibyte characters
input: |
{
"12345" 100
}
error: |
invalid json: <stdin>:2
2 | "12345" 100
^ invalid character '1' after object key
- name: invalid json string literal
input: |
{
"123": n
}
error: |
invalid json: <stdin>:2
2 | "123": n
^ invalid character '\n' in literal null (expecting 'u')
- name: multiple json in input
input: '{}[]{"foo":10}{"bar":[]}'
expected: |
{}
[]
{
"foo": 10
}
{
"bar": []
}
- name: hyphen for stdin
args:
- '.'
- '-'
input: '{}'
expected: |
{}
- name: json file arguments
args:
- '.'
- 'testdata/1.json'
- 'testdata/2.json'
expected: |
{
"foo": 10
}
[
{
"bar": []
}
]
- name: json file error json
args:
- '.'
- 'testdata/3.json'
error: |
invalid json: testdata/3.json
{
^ unexpected EOF
- name: json file error json
args:
- '.'
- 'testdata/4.json'
error: |
invalid json: testdata/4.json:3
3 | bar
^ invalid character 'b' looking for beginning of value
- name: json file error json
args:
- '.'
- 'testdata/8.json'
error: |
invalid json: testdata/8.json
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, , 1, 1, 1, 1, 1, 1, 1
^ invalid character ',' looking for beginning of value
- name: json file error json
args:
- '.'
- 'testdata/9.json'
error: |
invalid json: testdata/9.json:3
3 | 0", "0", "0", "0", "0", "0", "0", , "0", "0"]
^ invalid character ',' looking for beginning of value
- name: json file error json with multibyte character in the error line
args:
- '.'
- 'testdata/5.json'
error: | # file contents is read by inputReader so the entire error line is shown unlike the following input json test
invalid json: testdata/5.json:3
3 | "abcde": :★★★★★★★★★★★★★★★
^ invalid character ':' looking for beginning of value
- name: json input error json with multibyte character in the error line
args:
- '.'
input: |
{
"a": "This is a test for multibyte character in the error line of JSON. Since the first buffer size of JSON decoder is 512 (see encoding/json/stream.go) and the decoder stops reading bytes on encountering an error, the error line can be an invalid UTF-8 string even if the complete input is a valid UTF-8 string. Note that the error happens before 512 bytes and the corresponding line continues beyond 512 bytes with a multibyte character at the boundary.",
"abcde": :★★★★★★★★★★★★★★★
error: |
invalid json: <stdin>:3
3 | "abcde": :★★★★★★★★★★★★
^ invalid character ':' looking for beginning of value
- name: json file not found error
args:
- '.'
- 'testdata/1.json'
- 'testdata/6.json'
- 'testdata/2.json'
expected: |
{
"foo": 10
}
[
{
"bar": []
}
]
error: 'open testdata/6.json:'
- name: module directory option
args:
- -c
- -L
- 'testdata'
- 'include "4"; 1 | f | g'
input: '0'
expected: |
{"foo":[1,2,3,4,[1,2,{"foo":42}]]}
- name: module directory option
args:
- -c
- -L
- 'testdata'
- 'import "4" as m1; 1 | m1::f | m1::g'
input: '0'
expected: |
{"foo":[1,2,3,4,[1,2,{"foo":42}]]}
- name: module directory option
args:
- -c
- -L
- 'testdata'
- 'include "m1"; include "m3"; [f, g]'
input: '0'
expected: |
[42,43,44,45]
- name: module directory option
args:
- -c
- -L
- 'testdata'
- 'import "7" as $foo; $foo, $foo::foo'
input: '0'
expected: |
[1,2,{"foo":42}]
[1,2,{"foo":42}]
- name: module directory option
args:
- -c
- -L
- 'testdata'
- 'import "m1" as $x; $x, $x::x, $x[1].m1*100000000000000000000'
input: '0'
expected: |
[42,{"m1":42}]
[42,{"m1":42}]
4200000000000000000000
- name: module directory option with argjson
args:
- -c
- -L
- 'testdata'
- --argjson
- 'x'
- '{}'
- 'import "m1" as $x; $x'
input: '0'
expected: |
[42,{"m1":42}]
- name: module directory option parse error
args:
- 'include "m"; f'
input: '0'
error: 'compile error: module not found: "m"'
exit_code: 3
- name: module directory option function error
args:
- -L
- 'testdata'
- 'include "5"; i'
input: '0'
error: 'function not defined: i/0'
exit_code: 3
- name: module directory option variable error
args:
- -L
- 'testdata'
- 'include "4"; $x'
input: '0'
error: 'compile error: variable not defined: $x'
exit_code: 3
- name: module directory option variable name conflict
args:
- -c
- -L
- 'testdata'
- 'include "6"; include "13"; . as $x | $x, g, h'
input: '1'
expected: |
1
[1,2,{"foo":42}]
[[{"foo":10}],[1,2,{"foo":42}]]
- name: module directory option json parse error
args:
- -Ltestdata
- 'import "4" as $x; $x'
input: '0'
error: |
compile error: invalid json: testdata/4.json:3
3 | bar
^ invalid character 'b' looking for beginning of value
exit_code: 3
- name: module directory option with same alias name
args:
- -c
- -L=testdata
- 'include "4"; import "6" as bar; bar::g'
input: '1'
expected: |
[1,2,{"foo":42}]
- name: module directory option without argument
args:
- -c
- -L
input: '0'
error: |
expected argument for flag `-L'
exit_code: 2
- name: search directory in query
args:
- 'include "m2" { search: "testdata/m2" }; g'
input: '0'
expected: |
0
43
44
- name: empty module
args:
- -L
- 'testdata'
- 'include "8"; .'
input: '0'
expected: |
0
- name: invalid query in a module
args:
- -L
- 'testdata'
- 'include "7"; .'
input: '0'
error: |
invalid query: testdata/7.jq:1
1 | def f: 1 +
^ unexpected EOF
exit_code: 3
- name: module directive
args:
- -c
- -L
- 'testdata'
- 'include "9"; f(2)'
input: '3'
expected: |
6
- name: module in query
args:
- -n
- 'module {}; .'
expected: |
null
- name: modulemeta function
args:
- -c
- -L
- 'testdata'
- 'tostring | modulemeta | .defs |= sort'
input: '4 5 6 8 9'
expected: |
{"defs":["f/0","g/0"],"deps":[{"is_data":false,"relpath":"5"},{"as":"bar","is_data":false,"relpath":"6"}]}
{"defs":["h/0"],"deps":[{"as":"foo","is_data":false,"relpath":"6","test":"foo"}]}
{"defs":["g/0","i/0"],"deps":[{"as":"x","is_data":true,"relpath":"7"}]}
{"defs":[],"deps":[]}
{"defs":["f/1"],"deps":[],"description":"This is a description","name":"sample-module","x":[[],{},{"y":10,"z":20}],"y":{"z":[128,"",false,true,null,[[]]]}}
- name: modulemeta function error
args:
- -c
- -L
- 'testdata'
- '"3" | modulemeta'
input: '0'
error: |
module not found: "3"
- name: arg option
args:
- --arg
- 'foo'
- 'value 1'
- --arg
- 'bar'
- '42'
- '{ $foo, $bar }'
input: '123'
expected: |
{
"bar": "42",
"foo": "value 1"
}
- name: arg option arguments count error
args:
- --arg
error: |
expected 2 arguments for flag `--arg'
exit_code: 2
- name: arg option arguments count error
args:
- --arg
- 'foo'
error: |
expected 2 arguments for flag `--arg'
exit_code: 2
- name: arg option variable name error
args:
- --arg
- 'f.oo'
- '10'
- '.'
error: |
invalid variable name: $f.oo
exit_code: 3
- name: argjson option
args:
- --argjson
- 'foo'
- '{ "foo": 42 }'
- --argjson
- 'bar'
- '10'
- '{ $foo, $bar }'
input: '123'
expected: |
{
"bar": 10,
"foo": {
"foo": 42
}
}
- name: argjson option with big integer
args:
- --argjson
- 'foo'
- '10000000000000000000000000000000'
- '$foo * 2'
input: '0'
expected: |
20000000000000000000000000000000
- name: arg and argjson options
args:
- --arg
- 'x'
- '1'
- --argjson
- 'x'
- '1'
- --argjson
- 'y'
- '2'
- --arg
- 'y'
- '2'
- '{ $x, $y }'
input: '0'
expected: |
{
"x": "1",
"y": 2
}
- name: argjson option error
args:
- --argjson
- '0x'
- '0'
- '.'
error: |
invalid variable name: $0x
exit_code: 3
- name: argjson option parse error
args:
- --argjson
- 'foo'
- '{ foo }'
- '.'
error: |
invalid json: $foo
{ foo }
^ invalid character 'f' looking for beginning of object key string
- name: slurpfile option
args:
- --slurpfile
- 'foo'
- 'testdata/7.json'
- '{ $foo }'
input: 'null'
expected: |
{
"foo": [
1,
2,
{
"foo": 42
}
]
}
- name: slurpfile option invalid json error
args:
- --slurpfile
- 'foo'
- 'testdata/1.jq'
- '{ $foo }'
input: 'null'
error: |
invalid json: testdata/1.jq
.foo.bar
^ invalid character '.' looking for beginning of value
- name: slurpfile option invalid file error
args:
- --slurpfile
- 'foo'
- '-'
- '{ $foo }'
input: 'null'
error: 'open -:'
- name: rawfile option
args:
- --rawfile
- 'foo'
- 'testdata/7.json'
- '{ $foo }'
input: 'null'
expected: |
{
"foo": "1\n2\n{ \"foo\": 42 }\n"
}
- name: rawfile option error
args:
- --rawfile
- 'foo'
- 'testdata/6.json'
- '{ $foo }'
input: 'null'
error: 'open testdata/6.json:'
- name: $ARGS variable
args:
- --arg
- 'a'
- '1'
- --argjson
- 'b'
- '1'
- --slurpfile
- 'c'
- 'testdata/1.json'
- --rawfile
- 'd'
- 'testdata/1.json'
- '$ARGS | ., .named.a'
input: 'null'
expected: |
{
"named": {
"a": "1",
"b": 1,
"c": [
{
"foo": 10
}
],
"d": "{\"foo\":10}\n"
},
"positional": []
}
"1"
- name: $ARGS variable with args option
args:
- --arg
- 'foo'
- 'value'
- '$ARGS | ., .positional[]'
- --args
- '1'
- '"bar"'
- '{"x":1}'
input: '0'
expected: |
{
"named": {
"foo": "value"
},
"positional": [
"1",
"\"bar\"",
"{\"x\":1}"
]
}
"1"
"\"bar\""
"{\"x\":1}"
- name: args option without argument
args:
- '$ARGS'
- --args
input: '0'
expected: |
{
"named": {},
"positional": []
}
- name: query and options after args option
args:
- --args
- '$ARGS'
- 1
- -n
- 2
- -c
- --
- 3
- --
- -c
input: '0'
expected: |
{"named":{},"positional":["1","2","3","--","-c"]}
- name: double dash with args option
args:
- --args
- --
- 1
- 2
- 3
input: '0'
expected: |
0
- name: $ARGS variable with jsonargs option
args:
- '$ARGS | ., .positional[]'
- --arg
- 'foo'
- 'value'
- --jsonargs
- '1'
- '"bar"'
- '{"x":1}'
input: '0'
expected: |
{
"named": {
"foo": "value"
},
"positional": [
1,
"bar",
{
"x": 1
}
]
}
1
"bar"
{
"x": 1
}
- name: jsonargs option without argument
args:
- '$ARGS'
- --jsonargs
input: '0'
expected: |
{
"named": {},
"positional": []
}
- name: jsonargs option parse error
args:
- '$ARGS'
- --jsonargs
- '1'
- '"bar"'
- '{"x":}'
input: '0'
error: |
invalid json: --jsonargs
{"x":}
^ invalid character '}' looking for beginning of value
- name: args with jsonargs option
args:
- -c
- '$ARGS'
- --args
- 1
- 2
- --jsonargs
- 1
- 2
- --args
- 1
- 2
input: '0'
expected: |
{"named":{},"positional":["1","2",1,2,"1","2"]}
- name: args with jsonargs option
args:
- -c
- '$ARGS'
- --args
- 1
- 2
- --jsonargs
- 1
- 2
- --args
- 1
- 2
- --jsonargs
- 1
- 2
input: '0'
expected: |
{"named":{},"positional":["1","2",1,2,"1","2",1,2]}
- name: exit status option with null result
args:
- -e
- '.'
input: 'null'
expected: |
null
exit_code: 1
- name: exit status option with empty function
args:
- -e
- 'empty'
input: 'null'
exit_code: 4
- name: exit status long option with false result
args:
- --exit-status
- '.'
input: 'false'
expected: |
false
exit_code: 1
- name: exit status long option with true result
args:
- --exit-status
- 'not'
input: 'false'
expected: |
true
- name: exit status long option with multiple results
args:
- --exit-status
- '1,not,2'
input: 'false'
expected: |
1
true
2
- name: exit status long option with error function
args:
- --exit-status
- 'error'
input: 'false'
error: |
error: false
exit_code: 5
- name: exit status long option with error function
args:
- --exit-status
- 'error'
input: 'null'
exit_code: 4
- name: exit status long option with halt function
args:
- --exit-status
- 'halt'
input: 'false'
exit_code: 0
- name: exit status long option with halt_error function
args:
- --exit-status
- 'halt_error(0)'
input: 'null'
exit_code: 0
- name: exit status long option with halt_error function
args:
- --exit-status
- 'halt_error(42)'
input: 'null'
exit_code: 42
- name: query with leading hyphen
args:
- '-.'
input: '1'
expected: |
-1
- name: query with leading hyphen
args:
- '-j0'
input: '0 1 2'
expected: |
-1
-0.7651976865579666
-0.22389077914123567
- name: query with leading hyphen after a flag
args:
- -r
- '-.'
input: '1'
expected: |
-1
- name: double dash
args:
- '--'
- '.'
input: '1'
expected: |
1
- name: double dash with query with leading hyphen
args:
- '--'
- '-j'
input: 'null'
error: |
compile error: function not defined: j/0
exit_code: 3
- name: double double dash
args:
- '--'
- '--'
- '.'
input: '1'
error: |
invalid query: --
--
^ unexpected EOF
exit_code: 3
- name: short clumped options
args:
- -cRr
- '.'
input: 'foo'
expected: |
foo
- name: invalid short option error
args:
- -q
- '.'
error: |
unknown flag `q'
exit_code: 2
- name: invalid short option error in clumped options
args:
- -nqe
- '.'
error: |
unknown flag `q'
exit_code: 2
- name: invalid long option error
args:
- --qqq
- '.'
error: |
unknown flag `--qqq'
exit_code: 2
|