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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include "stream_test_helper.h"
#include <aws/common/uuid.h>
#include <aws/http/private/h1_connection.h>
#include <aws/http/request_response.h>
#include <aws/http/status_code.h>
#include <aws/io/logging.h>
#include <aws/io/stream.h>
#include <aws/testing/io_testing_channel.h>
#ifdef _MSC_VER
# pragma warning(disable : 4204) /* non-constant aggregate initializer */
#endif
#define H1_CLIENT_TEST_CASE(NAME) \
AWS_TEST_CASE(NAME, s_test_##NAME); \
static int s_test_##NAME(struct aws_allocator *allocator, void *ctx)
static struct aws_http_message *s_new_default_get_request(struct aws_allocator *allocator) {
struct aws_http_message *request = aws_http_message_new_request(allocator);
AWS_FATAL_ASSERT(request);
AWS_FATAL_ASSERT(AWS_OP_SUCCESS == aws_http_message_set_request_method(request, aws_http_method_get));
AWS_FATAL_ASSERT(AWS_OP_SUCCESS == aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/")));
return request;
}
static void s_destroy_stream_on_complete(struct aws_http_stream *stream, int error_code, void *user_data) {
(void)stream;
(void)error_code;
struct aws_input_stream *data_stream = user_data;
aws_input_stream_release(data_stream);
}
static struct aws_http1_chunk_options s_default_chunk_options(struct aws_input_stream *stream, size_t stream_size) {
struct aws_http1_chunk_options options;
AWS_ZERO_STRUCT(options);
options.chunk_data = stream;
options.chunk_data_size = stream_size;
options.on_complete = s_destroy_stream_on_complete;
options.user_data = stream;
return options;
}
static int s_write_termination_chunk(struct aws_allocator *allocator, struct aws_http_stream *stream) {
static const struct aws_byte_cursor empty_str = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("");
struct aws_input_stream *termination_marker = aws_input_stream_new_from_cursor(allocator, &empty_str);
ASSERT_NOT_NULL(termination_marker);
struct aws_http1_chunk_options options = s_default_chunk_options(termination_marker, empty_str.len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
return AWS_OP_SUCCESS;
}
static struct aws_http_message *s_new_default_chunked_put_request(struct aws_allocator *allocator) {
struct aws_http_header headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Transfer-Encoding"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("chunked"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
AWS_FATAL_ASSERT(request);
AWS_FATAL_ASSERT(AWS_OP_SUCCESS == aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
AWS_FATAL_ASSERT(
AWS_OP_SUCCESS == aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
AWS_FATAL_ASSERT(AWS_OP_SUCCESS == aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
return request;
}
static struct aws_http_message *s_new_default_head_request(struct aws_allocator *allocator) {
struct aws_http_message *request = aws_http_message_new_request(allocator);
AWS_FATAL_ASSERT(request);
AWS_FATAL_ASSERT(AWS_OP_SUCCESS == aws_http_message_set_request_method(request, aws_http_method_head));
AWS_FATAL_ASSERT(AWS_OP_SUCCESS == aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/")));
return request;
}
struct tester {
struct aws_allocator *alloc;
struct testing_channel testing_channel;
struct aws_http_connection *connection;
struct aws_logger logger;
bool manual_window_management;
};
struct tester_options {
bool manual_window_management;
size_t initial_stream_window_size;
size_t read_buffer_capacity;
};
static int s_tester_init_ex(struct tester *tester, struct aws_allocator *alloc, const struct tester_options *options) {
aws_http_library_init(alloc);
AWS_ZERO_STRUCT(*tester);
tester->alloc = alloc;
struct aws_logger_standard_options logger_options = {
.level = AWS_LOG_LEVEL_TRACE,
.file = stderr,
};
ASSERT_SUCCESS(aws_logger_init_standard(&tester->logger, tester->alloc, &logger_options));
aws_logger_set(&tester->logger);
struct aws_testing_channel_options test_channel_options = {.clock_fn = aws_high_res_clock_get_ticks};
ASSERT_SUCCESS(testing_channel_init(&tester->testing_channel, alloc, &test_channel_options));
struct aws_http1_connection_options http1_options;
AWS_ZERO_STRUCT(http1_options);
http1_options.read_buffer_capacity = options->read_buffer_capacity;
tester->connection = aws_http_connection_new_http1_1_client(
alloc, options->manual_window_management, options->initial_stream_window_size, &http1_options);
ASSERT_NOT_NULL(tester->connection);
struct aws_channel_slot *slot = aws_channel_slot_new(tester->testing_channel.channel);
ASSERT_NOT_NULL(slot);
ASSERT_SUCCESS(aws_channel_slot_insert_end(tester->testing_channel.channel, slot));
ASSERT_SUCCESS(aws_channel_slot_set_handler(slot, &tester->connection->channel_handler));
tester->connection->vtable->on_channel_handler_installed(&tester->connection->channel_handler, slot);
testing_channel_drain_queued_tasks(&tester->testing_channel);
return AWS_OP_SUCCESS;
}
static int s_tester_init(struct tester *tester, struct aws_allocator *alloc) {
struct tester_options options = {
.manual_window_management = false,
};
return s_tester_init_ex(tester, alloc, &options);
}
static int s_tester_clean_up(struct tester *tester) {
aws_http_connection_release(tester->connection);
ASSERT_SUCCESS(testing_channel_clean_up(&tester->testing_channel));
aws_http_library_clean_up();
aws_logger_clean_up(&tester->logger);
return AWS_OP_SUCCESS;
}
/* Check that we can set and tear down the `tester` used by all other tests in this file */
H1_CLIENT_TEST_CASE(h1_client_sanity_check) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Send 1 line request, doesn't care about response */
H1_CLIENT_TEST_CASE(h1_client_request_send_1liner) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = s_new_default_get_request(allocator),
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "GET / HTTP/1.1\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_message_str(&tester.testing_channel, expected));
/* clean up */
aws_http_message_destroy(opt.request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_headers) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_header headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Host"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("example.com"),
},
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Accept"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("*/*"),
},
};
struct aws_http_message *request = s_new_default_get_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "GET / HTTP/1.1\r\n"
"Host: example.com\r\n"
"Accept: */*\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_message_str(&tester.testing_channel, expected));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_body) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
struct aws_http_header headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("16"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers));
aws_http_message_set_body_stream(request, body_stream);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
aws_http_stream_activate(stream);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Content-Length: 16\r\n"
"\r\n"
"write more tests";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
aws_input_stream_release(body_stream);
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_body_chunked) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
/* Initialize and send the stream chunks */
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body.len);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"0\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
int chunked_test_helper(
const struct aws_byte_cursor *body,
struct aws_http_headers *trailers,
const char *expected,
struct tester tester,
struct aws_allocator *allocator) {
/* send request */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
/* Initialize and send the stream chunks */
ASSERT_SUCCESS(aws_http_stream_activate(stream));
if (body != NULL) {
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body->len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
}
ASSERT_SUCCESS(aws_http1_stream_add_chunked_trailer(stream, trailers));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
return AWS_OP_SUCCESS;
}
int chunked_trailer_succeed(
const struct aws_byte_cursor *body,
struct aws_http_headers *trailers,
struct tester tester,
struct aws_allocator *allocator) {
/* send request */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
/* Initialize and send the stream chunks */
ASSERT_SUCCESS(aws_http_stream_activate(stream));
if (body != NULL) {
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body->len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
}
/* kind of gross, but good enough for now */
int err = aws_http1_stream_add_chunked_trailer(stream, trailers);
if (err) {
aws_http_message_destroy(request);
aws_http_stream_release(stream);
return err;
}
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_chunked_trailer) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct aws_http_headers *trailers = aws_http_headers_new(allocator);
const struct aws_http_header trailer = {
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("chunked"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("trailer"),
};
const struct aws_http_header trailer1 = {
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("another"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("test"),
};
aws_http_headers_add_header(trailers, &trailer);
aws_http_headers_add_header(trailers, &trailer1);
/* Initialize and send the stream chunks */
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"0\r\n"
"chunked: trailer\r\n"
"another: test\r\n"
"\r\n";
ASSERT_SUCCESS(chunked_test_helper(&body, trailers, expected, tester, allocator));
/* clean up */
aws_http_headers_release(trailers);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_empty_chunked_trailer) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct aws_http_headers *trailers = aws_http_headers_new(allocator);
/* Initialize and send the stream chunks */
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"0\r\n"
"\r\n";
ASSERT_SUCCESS(chunked_test_helper(&body, trailers, expected, tester, allocator));
/* clean up */
aws_http_headers_release(trailers);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_forbidden_trailer) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct aws_http_headers *success = aws_http_headers_new(allocator);
aws_http_headers_add_header(
success,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("should"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("succeed"),
});
struct aws_http_headers *transfer_encoding = aws_http_headers_new(allocator);
aws_http_headers_add_header(
transfer_encoding,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Transfer-Encoding"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("gzip, chunked"),
});
struct aws_http_headers *content_length = aws_http_headers_new(allocator);
aws_http_headers_add_header(
content_length,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("3495"),
});
struct aws_http_headers *host = aws_http_headers_new(allocator);
aws_http_headers_add_header(
host,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Host"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("www.example.org"),
});
struct aws_http_headers *cache_control = aws_http_headers_new(allocator);
aws_http_headers_add_header(
cache_control,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Cache-Control"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("private"),
});
struct aws_http_headers *expect = aws_http_headers_new(allocator);
aws_http_headers_add_header(
expect,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Expect"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("100-continue"),
});
struct aws_http_headers *max_forwards = aws_http_headers_new(allocator);
aws_http_headers_add_header(
max_forwards,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("max-forwards"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("123"),
});
struct aws_http_headers *pragma = aws_http_headers_new(allocator);
aws_http_headers_add_header(
pragma,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("pragma"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("no-cache"),
});
struct aws_http_headers *range = aws_http_headers_new(allocator);
aws_http_headers_add_header(
range,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("range"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bytes=0-1023"),
});
struct aws_http_headers *te = aws_http_headers_new(allocator);
aws_http_headers_add_header(
te,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("te"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("trailers, deflate;q=0.5"),
});
struct aws_http_headers *www_authenticate = aws_http_headers_new(allocator);
aws_http_headers_add_header(
www_authenticate,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("www-authenticate"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(
"Newauth realm=\"apps\", type=1,title=\"Login to \"apps\"\", Basic realm=\"simple\""),
});
struct aws_http_headers *authorization = aws_http_headers_new(allocator);
aws_http_headers_add_header(
authorization,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("authorization"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("credentials"),
});
struct aws_http_headers *proxy_authenticate = aws_http_headers_new(allocator);
aws_http_headers_add_header(
proxy_authenticate,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("proxy-authenticate"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Basic YWxhZGRpbjpvcGVuc2VzYW1l"),
});
struct aws_http_headers *proxy_authorization = aws_http_headers_new(allocator);
aws_http_headers_add_header(
proxy_authorization,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("proxy-authorization"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("credentials"),
});
struct aws_http_headers *set_cookie = aws_http_headers_new(allocator);
aws_http_headers_add_header(
set_cookie,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("set-cookie"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("sessionId=38afes7a8"),
});
struct aws_http_headers *cookie = aws_http_headers_new(allocator);
aws_http_headers_add_header(
cookie,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("cookie"),
.value =
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("PHPSESSID=298zf09hf012fh2; csrftoken=u32t4o3tb3gg43; _gat=1"),
});
struct aws_http_headers *age = aws_http_headers_new(allocator);
aws_http_headers_add_header(
age,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("age"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("24"),
});
struct aws_http_headers *expires = aws_http_headers_new(allocator);
aws_http_headers_add_header(
expires,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("expires"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Wed, 21 Oct 2015 07:28:00 GMT"),
});
struct aws_http_headers *date = aws_http_headers_new(allocator);
aws_http_headers_add_header(
date,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("date"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Wed, 21 Oct 2015 07:28:00 GMT"),
});
struct aws_http_headers *location = aws_http_headers_new(allocator);
aws_http_headers_add_header(
location,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("location"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("/index.html"),
});
struct aws_http_headers *retry_after = aws_http_headers_new(allocator);
aws_http_headers_add_header(
retry_after,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("retry-after"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("120"),
});
struct aws_http_headers *vary = aws_http_headers_new(allocator);
aws_http_headers_add_header(
vary,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("vary"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("User-Agent"),
});
struct aws_http_headers *warning = aws_http_headers_new(allocator);
aws_http_headers_add_header(
warning,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("warning"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("110 anderson/1.3.37 \"Response is stale\""),
});
struct aws_http_headers *content_encoding = aws_http_headers_new(allocator);
aws_http_headers_add_header(
content_encoding,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("content-encoding"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("gzip"),
});
struct aws_http_headers *content_type = aws_http_headers_new(allocator);
aws_http_headers_add_header(
content_type,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("content-type"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("text/html"),
});
struct aws_http_headers *content_range = aws_http_headers_new(allocator);
aws_http_headers_add_header(
content_range,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("content-range"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bytes 200-1000/67589"),
});
struct aws_http_headers *trailer = aws_http_headers_new(allocator);
aws_http_headers_add_header(
trailer,
&(struct aws_http_header){
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("trailer"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Expires"),
});
ASSERT_SUCCESS(chunked_trailer_succeed(NULL, success, tester, allocator));
ASSERT_ERROR(
AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, transfer_encoding, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, content_length, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, host, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, cache_control, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, expect, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, max_forwards, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, pragma, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, range, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, te, tester, allocator));
ASSERT_ERROR(
AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, www_authenticate, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, authorization, tester, allocator));
ASSERT_ERROR(
AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, proxy_authenticate, tester, allocator));
ASSERT_ERROR(
AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, proxy_authorization, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, set_cookie, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, cookie, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, age, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, expires, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, date, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, location, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, retry_after, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, vary, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, warning, tester, allocator));
ASSERT_ERROR(
AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, content_encoding, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, content_type, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, content_range, tester, allocator));
ASSERT_ERROR(AWS_ERROR_HTTP_INVALID_HEADER_FIELD, chunked_trailer_succeed(NULL, trailer, tester, allocator));
/* clean up */
aws_http_headers_release(success);
aws_http_headers_release(transfer_encoding);
aws_http_headers_release(content_length);
aws_http_headers_release(host);
aws_http_headers_release(cache_control);
aws_http_headers_release(expect);
aws_http_headers_release(max_forwards);
aws_http_headers_release(pragma);
aws_http_headers_release(range);
aws_http_headers_release(te);
aws_http_headers_release(www_authenticate);
aws_http_headers_release(authorization);
aws_http_headers_release(proxy_authenticate);
aws_http_headers_release(proxy_authorization);
aws_http_headers_release(set_cookie);
aws_http_headers_release(cookie);
aws_http_headers_release(age);
aws_http_headers_release(expires);
aws_http_headers_release(date);
aws_http_headers_release(location);
aws_http_headers_release(retry_after);
aws_http_headers_release(vary);
aws_http_headers_release(warning);
aws_http_headers_release(content_encoding);
aws_http_headers_release(content_type);
aws_http_headers_release(content_range);
aws_http_headers_release(trailer);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_chunked_extensions) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
/* Initialize and send the stream chunks */
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
/* create a chunk with a single extension */
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body.len);
struct aws_http1_chunk_extension single_extension[] = {
{
.key = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("foo"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bar"),
},
};
options.extensions = (struct aws_http1_chunk_extension *)&single_extension;
options.num_extensions = AWS_ARRAY_SIZE(single_extension);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
/* create a chunk with a multiple_single extensions */
static const struct aws_byte_cursor multi_ext_body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
struct aws_input_stream *multi_ext_body_stream = aws_input_stream_new_from_cursor(allocator, &multi_ext_body);
struct aws_http1_chunk_options multi_ext_opts = s_default_chunk_options(multi_ext_body_stream, multi_ext_body.len);
struct aws_http1_chunk_extension multi_extension[] = {
{
.key = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("foo"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bar"),
},
{
.key = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("baz"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("cux"),
},
};
multi_ext_opts.extensions = (struct aws_http1_chunk_extension *)&multi_extension;
multi_ext_opts.num_extensions = AWS_ARRAY_SIZE(multi_extension);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &multi_ext_opts));
/* terminate the stream */
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
/* Run it! */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10;foo=bar\r\n"
"write more tests"
"\r\n"
"10;foo=bar;baz=cux\r\n"
"write more tests"
"\r\n"
"0\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
struct chunk_writer_data {
size_t num_chunks;
const char **payloads;
struct aws_http_stream *stream;
struct aws_allocator *allocator;
long delay_between_writes_ns;
};
H1_CLIENT_TEST_CASE(h1_client_request_waits_for_chunks) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request with Transfer-Encoding: chunked and body stream */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
/* activate stream *before* sending any data. */
ASSERT_SUCCESS(aws_http_stream_activate(stream));
char *payloads[] = {"write more tests", "write more tests", ""};
struct chunk_writer_data chunk_data = {
.num_chunks = sizeof(payloads) / sizeof(payloads[0]),
.payloads = (const char **)&payloads,
.stream = stream,
.allocator = allocator,
.delay_between_writes_ns = 10000,
};
/* write and pause, in a loop. This exercises the rescheduling path. */
for (size_t i = 0; i < chunk_data.num_chunks; ++i) {
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_FALSE(
aws_task_scheduler_has_tasks(&tester.testing_channel.loop_impl->scheduler, NULL),
"Everything should be paused when no chunks are pending");
struct aws_byte_cursor body = aws_byte_cursor_from_c_str(chunk_data.payloads[i]);
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(chunk_data.allocator, &body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body.len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_FALSE(
aws_task_scheduler_has_tasks(&tester.testing_channel.loop_impl->scheduler, NULL),
"Everything should be paused when no chunks are pending");
}
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"0\r\n"
"\r\n";
/* check result */
ASSERT_SUCCESS(testing_channel_check_written_messages(
&tester.testing_channel, allocator, aws_byte_cursor_from_c_str(expected)));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
struct chunk_that_writes_another {
struct aws_allocator *allocator;
struct aws_input_stream *body_data;
};
static void s_on_chunk_complete_write_another_chunk(struct aws_http_stream *stream, int error_code, void *user_data) {
AWS_FATAL_ASSERT(0 == error_code);
struct chunk_that_writes_another *chunk = user_data;
aws_input_stream_release(chunk->body_data);
const struct aws_byte_cursor chunk2_body = aws_byte_cursor_from_c_str("chunk 2.");
struct aws_input_stream *chunk2_body_stream = aws_input_stream_new_from_cursor(chunk->allocator, &chunk2_body);
AWS_FATAL_ASSERT(chunk2_body_stream != NULL);
struct aws_http1_chunk_options chunk2_options = s_default_chunk_options(chunk2_body_stream, chunk2_body.len);
AWS_FATAL_ASSERT(AWS_OP_SUCCESS == aws_http1_stream_write_chunk(stream, &chunk2_options));
}
/* Test that it's safe to start a new chunk from the chunk-complete callback */
H1_CLIENT_TEST_CASE(h1_client_request_send_chunk_from_chunk_complete_callback) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request with Transfer-Encoding: chunked and body stream */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
/* activate stream *before* sending any data. */
aws_http_stream_activate(stream);
/* write chunk 1 */
const struct aws_byte_cursor chunk1_body = aws_byte_cursor_from_c_str("chunk 1.");
struct aws_input_stream *chunk1_body_stream = aws_input_stream_new_from_cursor(allocator, &chunk1_body);
ASSERT_NOT_NULL(chunk1_body_stream);
struct chunk_that_writes_another chunk1_userdata = {
.allocator = allocator,
.body_data = chunk1_body_stream,
};
struct aws_http1_chunk_options chunk1_options = {
.chunk_data = chunk1_body_stream,
.chunk_data_size = chunk1_body.len,
.on_complete = s_on_chunk_complete_write_another_chunk,
.user_data = &chunk1_userdata,
};
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &chunk1_options));
/* run tasks, the 1st chunk should complete, which writes the 2nd chunk,
* which should also complete */
testing_channel_drain_queued_tasks(&tester.testing_channel);
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"8\r\n"
"chunk 1."
"\r\n"
"8\r\n"
"chunk 2."
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Regression test: Once upon a time there was a bug where the outgoing_stream_task got double-scheduled.
* The situation was:
* - An aws_io_message had been written to the channel, but not yet completed.
* - The encoder was paused, waiting for more chunks.
* Then at more-or-less the same time:
* - The aws_io_message finished writing, which resulted in the outgoing_stream_task getting rescheduled.
* - A new chunk was added, which resulted in the outgoing_stream_task getting rescheduled.
* And then the task's linked_list_node got all screwed up and we crashed iterating a list. */
H1_CLIENT_TEST_CASE(h1_client_request_write_chunk_as_write_completes_regression) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* To repro this bug, testing channel must wait to mark aws_io_messages complete */
testing_channel_complete_written_messages_immediately(&tester.testing_channel, false, 0);
/* Send request */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
/* Drain tasks. The head of the request gets written to aws_io_message and sent down channel.
* The outgoing_stream_task should be paused waiting for more chunks. */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Write a chunk. When bug occurred, this would reschedule the outgoing_stream_task */
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body.len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
/* Have the previously sent aws_io_message complete.
* When bug occurred, this would ALSO reschedule the outgoing_stream_task */
struct aws_linked_list *written_msgs = testing_channel_get_written_message_queue(&tester.testing_channel);
for (struct aws_linked_list_node *node = aws_linked_list_begin(written_msgs);
node != aws_linked_list_end(written_msgs);
node = aws_linked_list_next(node)) {
struct aws_io_message *msg = AWS_CONTAINER_OF(node, struct aws_io_message, queueing_handle);
msg->on_completion(tester.testing_channel.channel, msg, 0, msg->user_data);
msg->on_completion = NULL;
}
/* Run the scheduler. When bug occurred, this would crash */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"0\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_content_length_0_ok) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request with Content-Length: 0 and NO body stream */
struct aws_http_header headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("0"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers));
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Content-Length: 0\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_message_str(&tester.testing_channel, expected));
aws_http_stream_release(stream);
/* send Content-Length: 0 request again, but this time with a body stream whose length is 0 */
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("");
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
aws_http_message_set_body_stream(request, body_stream);
stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_SUCCESS(testing_channel_check_written_message_str(&tester.testing_channel, expected));
/* clean up */
aws_input_stream_release(body_stream);
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_chunk_size_0_ok) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Send request with Transfer-Encoding: chunked and an empty body stream. */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"0\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_chunk_size_0_with_extensions_ok) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Send request with Transfer-Encoding: chunked and an empty body stream. */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
static const struct aws_byte_cursor empty_str = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("");
struct aws_input_stream *termination_marker = aws_input_stream_new_from_cursor(allocator, &empty_str);
struct aws_http1_chunk_options options = s_default_chunk_options(termination_marker, empty_str.len);
struct aws_http1_chunk_extension single_extension[] = {
{
.key = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("foo"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bar"),
},
{
.key = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("baz"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("cux"),
},
};
options.extensions = (struct aws_http1_chunk_extension *)&single_extension;
options.num_extensions = AWS_ARRAY_SIZE(single_extension);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"0;foo=bar;baz=cux\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Send a request whose body doesn't fit in a single aws_io_message using content length*/
H1_CLIENT_TEST_CASE(h1_client_request_send_large_body) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request with large body full of random data */
size_t body_len = 1024 * 1024 * 1; /* 1MB */
struct aws_byte_buf body_buf;
ASSERT_SUCCESS(aws_byte_buf_init(&body_buf, allocator, body_len));
while (body_buf.len < body_len) {
int r = rand();
aws_byte_buf_write_be32(&body_buf, (uint32_t)r);
}
const struct aws_byte_cursor body = aws_byte_cursor_from_buf(&body_buf);
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
char content_length_value[100];
snprintf(content_length_value, sizeof(content_length_value), "%zu", body_len);
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Content-Length"),
.value = aws_byte_cursor_from_c_str(content_length_value),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/large.txt")));
aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers));
aws_http_message_set_body_stream(request, body_stream);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
/* check result */
const char *expected_head_fmt = "PUT /large.txt HTTP/1.1\r\n"
"Content-Length: %zu\r\n"
"\r\n";
char expected_head[1024];
int expected_head_len = snprintf(expected_head, sizeof(expected_head), expected_head_fmt, body_len);
struct aws_byte_buf expected_buf;
ASSERT_SUCCESS(aws_byte_buf_init(&expected_buf, allocator, body_len + expected_head_len));
ASSERT_TRUE(aws_byte_buf_write(&expected_buf, (uint8_t *)expected_head, expected_head_len));
ASSERT_TRUE(aws_byte_buf_write_from_whole_buffer(&expected_buf, body_buf));
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(testing_channel_check_written_messages(
&tester.testing_channel, allocator, aws_byte_cursor_from_buf(&expected_buf)));
/* clean up */
aws_input_stream_release(body_stream);
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
aws_byte_buf_clean_up(&body_buf);
aws_byte_buf_clean_up(&expected_buf);
return AWS_OP_SUCCESS;
}
static int s_parse_chunked_extensions(
const char *extensions,
struct aws_http1_chunk_extension *expected_extensions,
size_t num_extensions) {
size_t i;
for (i = 0; i < num_extensions; ++i) {
struct aws_http1_chunk_extension *expected_extension = expected_extensions + i;
/* parse the key */
char *key_val_delimiter = strchr(extensions, '=');
if (NULL == key_val_delimiter) {
return false;
}
*key_val_delimiter = '\0';
struct aws_byte_cursor key = aws_byte_cursor_from_c_str(extensions);
ASSERT_BIN_ARRAYS_EQUALS(expected_extension->key.ptr, expected_extension->key.len, key.ptr, key.len);
extensions = key_val_delimiter + 1;
/* parse the value */
char *val_end_delimiter = strchr(extensions, ';');
if (NULL != val_end_delimiter) {
*val_end_delimiter = '\0';
}
struct aws_byte_cursor value = aws_byte_cursor_from_c_str(extensions++);
ASSERT_BIN_ARRAYS_EQUALS(expected_extension->value.ptr, expected_extension->value.len, value.ptr, value.len);
extensions = val_end_delimiter + 1;
}
if (i == num_extensions) {
return AWS_OP_SUCCESS;
} else {
return AWS_OP_ERR;
}
}
static int s_can_parse_as_chunked_encoding(
struct aws_allocator *allocator,
struct aws_byte_buf *chunked_http_request_headers_and_body,
struct aws_byte_buf *expected_head,
struct aws_http1_chunk_extension *expected_extensions,
size_t num_extensions,
char body_char) {
/* Check that the HTTP header matches the expected value */
ASSERT_TRUE(chunked_http_request_headers_and_body->len > expected_head->len);
ASSERT_BIN_ARRAYS_EQUALS(
expected_head->buffer, expected_head->len, chunked_http_request_headers_and_body->buffer, expected_head->len);
/* move the cursor past the head and enter the chunked body */
struct aws_byte_cursor request_cursor = aws_byte_cursor_from_buf(chunked_http_request_headers_and_body);
aws_byte_cursor_advance(&request_cursor, expected_head->len);
struct aws_byte_cursor crlf_cursor = aws_byte_cursor_from_c_str("\r\n");
struct aws_byte_cursor match_cursor;
/* Provide a max iterations in case of a bug the test doesn't infinite loop but fails fast. */
int max_iter = 128;
int i = 0;
/* 3MB to hold a massive chunked extension size */
char *chunk_ascii_hex = aws_mem_calloc(allocator, 3, 1024 * 1024);
for (i = 0; i < max_iter; ++i) {
ASSERT_SUCCESS(aws_byte_cursor_find_exact(&request_cursor, &crlf_cursor, &match_cursor));
memset(chunk_ascii_hex, 0, 3 * 1024 * 1024);
memcpy(chunk_ascii_hex, (char *)request_cursor.ptr, match_cursor.ptr - request_cursor.ptr);
char *chunk_ext_start = strchr(chunk_ascii_hex, ';');
if (NULL != chunk_ext_start) {
/* write a null character over where the first ';' of the stream so that strtol finds the right hex size. */
*chunk_ext_start = '\0';
if (0 < num_extensions) {
++chunk_ext_start;
ASSERT_SUCCESS(s_parse_chunked_extensions(chunk_ext_start, expected_extensions, num_extensions));
}
}
long chunk_size = strtol((char *)chunk_ascii_hex, 0, 16);
long total_chunk_size_with_overhead =
(long)(match_cursor.ptr - request_cursor.ptr /* size of the chunk in ascii hex */
+ crlf_cursor.len /* size of the crlf */
+ chunk_size /* size of the payload */
+ crlf_cursor.len); /* size of the chunk terminating crlf */
/* 0 length chunk signals end of stream. Check for the terminatino string and exit with success */
if (0 == chunk_size) {
struct aws_byte_cursor terminate_cursor = aws_byte_cursor_from_c_str("0\r\n\r\n");
ASSERT_TRUE(aws_byte_cursor_eq(&request_cursor, &terminate_cursor));
break;
}
/* The buffer should be filled with the character specified for the whole length of the chunk */
for (int j = (int)(match_cursor.ptr - request_cursor.ptr + crlf_cursor.len); j < chunk_size; ++j) {
ASSERT_TRUE(body_char == (char)request_cursor.ptr[j]);
}
/* advance to the next chunk */
aws_byte_cursor_advance(&request_cursor, total_chunk_size_with_overhead);
}
aws_mem_release(allocator, chunk_ascii_hex);
/* Test that we didn't exit the loop due to hitting the max iterations */
ASSERT_TRUE(i < (max_iter - 1));
return AWS_OP_SUCCESS;
}
/* Send a request whose body doesn't fit in a single aws_io_message using chunked transfer encoding*/
H1_CLIENT_TEST_CASE(h1_client_request_send_large_body_chunked) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Transfer-Encoding"),
.value = aws_byte_cursor_from_c_str("chunked"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/large.txt")));
aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers));
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
/* Initialize and send the stream chunks */
/* send request with large body full of data */
size_t body_len = 1024 * 1024 * 1; /* 1MB */
struct aws_byte_buf body_buf;
ASSERT_SUCCESS(aws_byte_buf_init(&body_buf, allocator, body_len));
char body_char = 'z';
while (body_buf.len < body_len) {
aws_byte_buf_write_u8(&body_buf, body_char);
}
const struct aws_byte_cursor body = aws_byte_cursor_from_buf(&body_buf);
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body.len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
/* this call will trigger a pause/wake internally after a large write */
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
/* check result */
const char expected_head_fmt[] = "PUT /large.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n";
struct aws_byte_buf expected_head_buf = aws_byte_buf_from_c_str((char *)&expected_head_fmt);
testing_channel_drain_queued_tasks(&tester.testing_channel);
struct aws_byte_buf written_buf;
ASSERT_SUCCESS(aws_byte_buf_init(&written_buf, allocator, body_len * 2));
ASSERT_SUCCESS(testing_channel_drain_written_messages(&tester.testing_channel, &written_buf));
ASSERT_SUCCESS(s_can_parse_as_chunked_encoding(allocator, &written_buf, &expected_head_buf, NULL, 0, body_char));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
aws_byte_buf_clean_up(&body_buf);
aws_byte_buf_clean_up(&expected_head_buf);
aws_byte_buf_clean_up(&written_buf);
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_send_large_chunk_extensions) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Transfer-Encoding"),
.value = aws_byte_cursor_from_c_str("chunked"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/large.txt")));
aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers));
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
/* Initialize and send the stream chunks */
/* send request with large body full of data */
size_t body_len = 1024 * 1024 * 1; /* 1MB */
struct aws_byte_buf body_buf;
ASSERT_SUCCESS(aws_byte_buf_init(&body_buf, allocator, body_len));
char body_char = 'z';
while (body_buf.len < body_len) {
aws_byte_buf_write_u8(&body_buf, body_char);
}
const struct aws_byte_cursor body = aws_byte_cursor_from_buf(&body_buf);
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body.len);
/* No one should ever be using 1MB extensions. In fact, it is a DDoS vector to your server and you should protect
* against it for any sort of production software. That said, the spec doesn't place a size limit on how much the
* client can send. For this test, we have a 1MB key and a 1MB value in each pair respectively to test that the
* state machine can fill across the key/value larger than the size of a message in the channel. */
struct aws_http1_chunk_extension extensions[] = {
{
.key = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("foo"),
.value = aws_byte_cursor_from_buf(&body_buf),
},
{
.key = aws_byte_cursor_from_buf(&body_buf),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bar"),
},
};
options.extensions = (struct aws_http1_chunk_extension *)&extensions;
options.num_extensions = AWS_ARRAY_SIZE(extensions);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
/* this call will trigger a pause/wake internally after a large write */
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
/* check result */
const char expected_head_fmt[] = "PUT /large.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n";
struct aws_byte_buf expected_head_buf = aws_byte_buf_from_c_str((char *)&expected_head_fmt);
struct aws_http1_chunk_extension expected_extensions[] = {
{
.key = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("foo"),
.value = aws_byte_cursor_from_buf(&body_buf),
},
{
.key = aws_byte_cursor_from_buf(&body_buf),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("bar"),
},
};
testing_channel_drain_queued_tasks(&tester.testing_channel);
struct aws_byte_buf written_buf;
ASSERT_SUCCESS(aws_byte_buf_init(&written_buf, allocator, body_len * 2));
ASSERT_SUCCESS(testing_channel_drain_written_messages(&tester.testing_channel, &written_buf));
ASSERT_SUCCESS(s_can_parse_as_chunked_encoding(
allocator, &written_buf, &expected_head_buf, expected_extensions, AWS_ARRAY_SIZE(extensions), body_char));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
aws_byte_buf_clean_up(&body_buf);
aws_byte_buf_clean_up(&expected_head_buf);
aws_byte_buf_clean_up(&written_buf);
return AWS_OP_SUCCESS;
}
/* Send a request whose headers don't fit in a single aws_io_message */
H1_CLIENT_TEST_CASE(h1_client_request_send_large_head) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Generate headers while filling in contents of `expected` buffer */
struct aws_http_header headers[1000];
size_t num_headers = AWS_ARRAY_SIZE(headers);
AWS_ZERO_STRUCT(headers);
struct aws_byte_buf expected;
aws_byte_buf_init(&expected, allocator, num_headers * 128); /* approx capacity */
struct aws_byte_cursor request_line = aws_byte_cursor_from_c_str("GET / HTTP/1.1\r\n");
ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&expected, request_line));
/* Each header just has a UUID for its name and value */
for (size_t i = 0; i < num_headers; ++i) {
struct aws_http_header *header = headers + i;
/* Point to where the UUID is going to be written in the `expected` buffer */
header->name = aws_byte_cursor_from_array(expected.buffer + expected.len, AWS_UUID_STR_LEN - 1);
header->value = header->name;
struct aws_uuid uuid;
ASSERT_SUCCESS(aws_uuid_init(&uuid));
ASSERT_SUCCESS(aws_uuid_to_str(&uuid, &expected));
ASSERT_TRUE(aws_byte_buf_write(&expected, (uint8_t *)": ", 2));
ASSERT_SUCCESS(aws_uuid_to_str(&uuid, &expected));
ASSERT_TRUE(aws_byte_buf_write(&expected, (uint8_t *)"\r\n", 2));
}
ASSERT_TRUE(aws_byte_buf_write(&expected, (uint8_t *)"\r\n", 2));
struct aws_http_message *request = s_new_default_get_request(allocator);
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
/* send request */
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
/* check result */
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(testing_channel_check_written_messages(
&tester.testing_channel, allocator, aws_byte_cursor_from_buf(&expected)));
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
aws_byte_buf_clean_up(&expected);
return AWS_OP_SUCCESS;
}
/* Check that if many requests are made (pipelining) they all get sent */
H1_CLIENT_TEST_CASE(h1_client_request_send_multiple) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send requests */
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = s_new_default_get_request(allocator),
};
struct aws_http_stream *streams[3];
size_t num_streams = AWS_ARRAY_SIZE(streams);
for (size_t i = 0; i < num_streams; ++i) {
streams[i] = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(streams[i]);
ASSERT_SUCCESS(aws_http_stream_activate(streams[i]));
}
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(opt.request);
/* check result */
const char *expected = "GET / HTTP/1.1\r\n"
"\r\n"
"GET / HTTP/1.1\r\n"
"\r\n"
"GET / HTTP/1.1\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
for (size_t i = 0; i < num_streams; ++i) {
aws_http_stream_release(streams[i]);
}
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Check that if many requests are made (pipelining) they all get sent */
H1_CLIENT_TEST_CASE(h1_client_request_send_multiple_chunked_encoding) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send requests */
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = s_new_default_chunked_put_request(allocator),
};
struct aws_http_stream *streams[3];
struct aws_byte_buf index_strs[AWS_ARRAY_SIZE(streams)];
size_t num_streams = AWS_ARRAY_SIZE(streams);
for (size_t i = 0; i < num_streams; ++i) {
streams[i] = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(streams[i]);
ASSERT_SUCCESS(aws_byte_buf_init(&index_strs[i], allocator, 4));
index_strs[i].len = snprintf((char *)index_strs[i].buffer, index_strs[i].capacity, "%03zu", i);
ASSERT_SUCCESS(aws_http_stream_activate(streams[i]));
}
/* All streams will pause and wait for data */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Write to all the streams */
for (size_t i = 0; i < num_streams; ++i) {
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
struct aws_byte_cursor index_str_cursor = aws_byte_cursor_from_buf(&index_strs[i]);
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
struct aws_input_stream *index_stream = aws_input_stream_new_from_cursor(allocator, &index_str_cursor);
struct aws_http1_chunk_options options_1 = s_default_chunk_options(body_stream, body.len);
struct aws_http1_chunk_options options_2 = s_default_chunk_options(index_stream, index_str_cursor.len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(streams[i], &options_1));
ASSERT_SUCCESS(aws_http1_stream_write_chunk(streams[i], &options_2));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, streams[i]));
}
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(opt.request);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"3\r\n"
"000"
"\r\n"
"0\r\n"
"\r\n"
"PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"3\r\n"
"001"
"\r\n"
"0\r\n"
"\r\n"
"PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"3\r\n"
"002"
"\r\n"
"0\r\n"
"\r\n";
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* clean up */
for (size_t i = 0; i < num_streams; ++i) {
aws_http_stream_release(streams[i]);
aws_byte_buf_clean_up(&index_strs[i]);
}
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
static int s_stream_tester_init(
struct client_stream_tester *tester,
struct tester *main_tester,
struct aws_http_message *request) {
struct client_stream_tester_options options = {
.request = request,
.connection = main_tester->connection,
};
return client_stream_tester_init(tester, main_tester->alloc, &options);
}
H1_CLIENT_TEST_CASE(h1_client_stream_release_after_complete) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, "HTTP/1.1 204 No Content\r\n\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_FALSE(stream_tester.destroyed);
aws_http_stream_release(stream_tester.stream);
stream_tester.stream = NULL;
ASSERT_TRUE(stream_tester.destroyed);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_stream_release_before_complete) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
aws_http_stream_release(stream_tester.stream);
stream_tester.stream = NULL;
ASSERT_FALSE(stream_tester.destroyed);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, "HTTP/1.1 204 No Content\r\n\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_TRUE(stream_tester.destroyed);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_response_get_1liner) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, "HTTP/1.1 204 No Content\r\n\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(204, stream_tester.response_status);
ASSERT_UINT_EQUALS(0, aws_http_headers_count(stream_tester.response_headers));
ASSERT_UINT_EQUALS(0, stream_tester.response_body.len);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
static int s_check_header(const struct aws_http_headers *headers, size_t i, const char *name_str, const char *value) {
size_t headers_num = aws_http_headers_count(headers);
ASSERT_TRUE(i < headers_num);
struct aws_http_header header;
ASSERT_SUCCESS(aws_http_headers_get_index(headers, i, &header));
ASSERT_TRUE(aws_byte_cursor_eq_c_str(&header.name, name_str));
ASSERT_TRUE(aws_byte_cursor_eq_c_str(&header.value, value));
return AWS_OP_SUCCESS;
}
static int s_check_info_response_header(
const struct client_stream_tester *stream_tester,
size_t response_i,
size_t header_i,
const char *name_str,
const char *value) {
ASSERT_TRUE(response_i < stream_tester->num_info_responses);
const struct aws_http_headers *headers =
aws_http_message_get_const_headers(stream_tester->info_responses[response_i]);
return s_check_header(headers, header_i, name_str, value);
}
H1_CLIENT_TEST_CASE(h1_client_response_get_headers) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 308 Permanent Redirect\r\n"
"Date: Fri, 01 Mar 2019 17:18:55 GMT\r\n"
"Location: /index.html\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(308, stream_tester.response_status);
ASSERT_UINT_EQUALS(2, aws_http_headers_count(stream_tester.response_headers));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 0, "Date", "Fri, 01 Mar 2019 17:18:55 GMT"));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 1, "Location", "/index.html"));
ASSERT_UINT_EQUALS(0, stream_tester.response_body.len);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_response_get_body) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 200 OK\r\n"
"Content-Length: 9\r\n"
"\r\n"
"Call Momo"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_UINT_EQUALS(1, aws_http_headers_count(stream_tester.response_headers));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 0, "Content-Length", "9"));
ASSERT_TRUE(aws_byte_buf_eq_c_str(&stream_tester.response_body, "Call Momo"));
ASSERT_TRUE(stream_tester.metrics.receive_end_timestamp_ns > 0);
ASSERT_TRUE(stream_tester.metrics.receive_start_timestamp_ns > 0);
ASSERT_TRUE(stream_tester.metrics.receive_end_timestamp_ns > stream_tester.metrics.receive_start_timestamp_ns);
ASSERT_TRUE(
stream_tester.metrics.receiving_duration_ns ==
stream_tester.metrics.receive_end_timestamp_ns - stream_tester.metrics.receive_start_timestamp_ns);
ASSERT_TRUE(stream_tester.metrics.send_start_timestamp_ns > 0);
ASSERT_TRUE(stream_tester.metrics.send_end_timestamp_ns > 0);
ASSERT_TRUE(stream_tester.metrics.send_end_timestamp_ns > stream_tester.metrics.send_start_timestamp_ns);
ASSERT_TRUE(
stream_tester.metrics.sending_duration_ns ==
stream_tester.metrics.send_end_timestamp_ns - stream_tester.metrics.send_start_timestamp_ns);
ASSERT_TRUE(stream_tester.metrics.stream_id == stream_tester.stream->id);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
static int s_test_expected_no_body_response(struct aws_allocator *allocator, int status_int, bool head_request) {
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request =
head_request ? s_new_default_head_request(allocator) : s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* form response */
struct aws_byte_cursor status_text = aws_byte_cursor_from_c_str(aws_http_status_text(status_int));
char c_status_text[100];
memcpy(c_status_text, status_text.ptr, status_text.len);
c_status_text[status_text.len] = '\0';
char response_text[500];
char *response_headers = "Content-Length: 9\r\n"
"\r\n";
snprintf(response_text, sizeof(response_text), "HTTP/1.1 %d %s\r\n%s", status_int, c_status_text, response_headers);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, response_text));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(status_int, stream_tester.response_status);
ASSERT_UINT_EQUALS(1, aws_http_headers_count(stream_tester.response_headers));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 0, "Content-Length", "9"));
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_response_get_no_body_for_head_request) {
(void)ctx;
ASSERT_SUCCESS(s_test_expected_no_body_response(allocator, 200, true));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_response_get_no_body_from_304) {
(void)ctx;
ASSERT_SUCCESS(s_test_expected_no_body_response(allocator, 304, false));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_response_get_100) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 100 Continue\r\n"
"Date: Fri, 01 Mar 2019 17:18:55 GMT\r\n"
"\r\n"
"HTTP/1.1 200 OK\r\n"
"Content-Length: 9\r\n"
"\r\n"
"Call Momo"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_UINT_EQUALS(1, stream_tester.num_info_responses);
int info_response_status;
ASSERT_SUCCESS(aws_http_message_get_response_status(stream_tester.info_responses[0], &info_response_status));
ASSERT_INT_EQUALS(100, info_response_status);
ASSERT_SUCCESS(s_check_info_response_header(&stream_tester, 0, 0, "Date", "Fri, 01 Mar 2019 17:18:55 GMT"));
ASSERT_UINT_EQUALS(1, aws_http_headers_count(stream_tester.response_headers));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 0, "Content-Length", "9"));
ASSERT_TRUE(aws_byte_buf_eq_c_str(&stream_tester.response_body, "Call Momo"));
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Check that a response spread across multiple aws_io_messages comes through */
H1_CLIENT_TEST_CASE(h1_client_response_get_1_from_multiple_io_messages) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response with each byte in its own aws_io_message */
const char *response_str = "HTTP/1.1 200 OK\r\n"
"Content-Length: 9\r\n"
"\r\n"
"Call Momo";
size_t response_str_len = strlen(response_str);
for (size_t i = 0; i < response_str_len; ++i) {
ASSERT_SUCCESS(
testing_channel_push_read_data(&tester.testing_channel, aws_byte_cursor_from_array(response_str + i, 1)));
}
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_UINT_EQUALS(1, aws_http_headers_count(stream_tester.response_headers));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 0, "Content-Length", "9"));
ASSERT_TRUE(aws_byte_buf_eq_c_str(&stream_tester.response_body, "Call Momo"));
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Check that multiple responses in a single aws_io_message all come through */
H1_CLIENT_TEST_CASE(h1_client_response_get_multiple_from_1_io_message) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send requests */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_testers[3];
for (size_t i = 0; i < AWS_ARRAY_SIZE(stream_testers); ++i) {
ASSERT_SUCCESS(s_stream_tester_init(&stream_testers[i], &tester, request));
}
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send all responses in a single aws_io_message */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 204 No Content\r\n\r\n"
"HTTP/1.1 204 No Content\r\n\r\n"
"HTTP/1.1 204 No Content\r\n\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check results */
for (size_t i = 0; i < AWS_ARRAY_SIZE(stream_testers); ++i) {
ASSERT_TRUE(stream_testers[i].complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_testers[i].on_complete_error_code);
ASSERT_INT_EQUALS(204, stream_testers[i].response_status);
ASSERT_UINT_EQUALS(0, aws_http_headers_count(stream_testers[i].response_headers));
ASSERT_UINT_EQUALS(0, stream_testers[i].response_body.len);
client_stream_tester_clean_up(&stream_testers[i]);
}
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_response_with_bad_data_shuts_down_connection) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str_ignore_errors(&tester.testing_channel, "Mmmm garbage data\r\n\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_PROTOCOL_ERROR, stream_tester.on_complete_error_code);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Test case is: 1 request has been sent. Then 2 responses arrive in 1 io message.
* The 1st request should complete just fine, then the connection should shutdown with error */
H1_CLIENT_TEST_CASE(h1_client_response_with_too_much_data_shuts_down_connection) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send 1 request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send 2 responses in a single aws_io_message. */
ASSERT_SUCCESS(testing_channel_push_read_str_ignore_errors(
&tester.testing_channel,
"HTTP/1.1 204 No Content\r\n\r\n"
"HTTP/1.1 204 No Content\r\n\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* 1st response should have come across successfully */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(204, stream_tester.response_status);
ASSERT_UINT_EQUALS(0, aws_http_headers_count(stream_tester.response_headers));
ASSERT_UINT_EQUALS(0, stream_tester.response_body.len);
client_stream_tester_clean_up(&stream_tester);
/* extra data should have caused channel shutdown */
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_TRUE(testing_channel_get_shutdown_error_code(&tester.testing_channel) != AWS_ERROR_SUCCESS);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
struct slow_body_sender {
struct aws_input_stream base;
struct aws_stream_status status;
struct aws_byte_cursor cursor;
size_t delay_ticks; /* Don't send anything the first N ticks */
size_t bytes_per_tick; /* Don't send more than N bytes per tick */
};
static int s_slow_stream_read(struct aws_input_stream *stream, struct aws_byte_buf *dest) {
struct slow_body_sender *sender = AWS_CONTAINER_OF(stream, struct slow_body_sender, base);
size_t dst_available = dest->capacity - dest->len;
size_t writing = 0;
if (sender->delay_ticks > 0) {
sender->delay_ticks--;
} else {
writing = sender->cursor.len;
if (dst_available < writing) {
writing = dst_available;
}
if ((sender->bytes_per_tick < writing) && (sender->bytes_per_tick > 0)) {
writing = sender->bytes_per_tick;
}
}
aws_byte_buf_write(dest, sender->cursor.ptr, writing);
aws_byte_cursor_advance(&sender->cursor, writing);
if (sender->cursor.len == 0) {
sender->status.is_end_of_stream = true;
}
return AWS_OP_SUCCESS;
}
static int s_slow_stream_get_status(struct aws_input_stream *stream, struct aws_stream_status *status) {
struct slow_body_sender *sender = AWS_CONTAINER_OF(stream, struct slow_body_sender, base);
*status = sender->status;
return AWS_OP_SUCCESS;
}
static int s_slow_stream_get_length(struct aws_input_stream *stream, int64_t *out_length) {
struct slow_body_sender *sender = AWS_CONTAINER_OF(stream, struct slow_body_sender, base);
*out_length = sender->cursor.len;
return AWS_OP_SUCCESS;
}
static void s_slow_stream_destroy(struct aws_input_stream *stream) {
(void)stream;
}
static struct aws_input_stream_vtable s_slow_stream_vtable = {
.seek = NULL,
.read = s_slow_stream_read,
.get_status = s_slow_stream_get_status,
.get_length = s_slow_stream_get_length,
};
static void s_slow_body_sender_init(struct slow_body_sender *body_sender) {
/* set up request whose body won't send immediately */
struct aws_input_stream empty_stream_base;
AWS_ZERO_STRUCT(empty_stream_base);
body_sender->base = empty_stream_base;
body_sender->status.is_end_of_stream = false;
body_sender->status.is_valid = true;
struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
body_sender->cursor = body;
body_sender->delay_ticks = 5;
body_sender->bytes_per_tick = 1;
body_sender->base.vtable = &s_slow_stream_vtable;
aws_ref_count_init(
&body_sender->base.ref_count, &body_sender, (aws_simple_completion_callback *)s_slow_stream_destroy);
}
/* It should be fine to receive a response before the request has finished sending */
H1_CLIENT_TEST_CASE(h1_client_response_arrives_before_request_done_sending_is_ok) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* set up request whose body won't send immediately */
struct slow_body_sender body_sender;
AWS_ZERO_STRUCT(body_sender);
s_slow_body_sender_init(&body_sender);
struct aws_input_stream *body_stream = &body_sender.base;
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Content-Length"),
.value = aws_byte_cursor_from_c_str("16"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
aws_http_message_set_body_stream(request, body_stream);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
/* send head of request */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
aws_input_stream_release(body_stream);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, "HTTP/1.1 200 OK\r\n\r\n"));
/* tick loop until body finishes sending.*/
while (body_sender.cursor.len > 0) {
/* on_complete shouldn't fire until all outgoing data sent AND all incoming data received */
ASSERT_FALSE(stream_tester.complete);
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
}
/* flush any further work so that stream completes */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Content-Length: 16\r\n"
"\r\n"
"write more tests";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_UINT_EQUALS(0, aws_http_headers_count(stream_tester.response_headers));
ASSERT_UINT_EQUALS(0, stream_tester.response_body.len);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* It should be fine to receive a response before the request has finished sending */
H1_CLIENT_TEST_CASE(h1_client_response_arrives_before_request_chunks_done_sending_is_ok) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* set up request whose body won't send immediately */
struct aws_input_stream empty_stream_base;
AWS_ZERO_STRUCT(empty_stream_base);
struct slow_body_sender body_sender = {
.base = empty_stream_base,
.status =
{
.is_end_of_stream = false,
.is_valid = true,
},
.cursor = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests"),
.delay_ticks = 5,
.bytes_per_tick = 1,
};
body_sender.base.vtable = &s_slow_stream_vtable;
aws_ref_count_init(
&body_sender.base.ref_count, &body_sender, (aws_simple_completion_callback *)s_slow_stream_destroy);
struct aws_input_stream *body_stream = &body_sender.base;
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
/* send head of request */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, "HTTP/1.1 200 OK\r\n\r\n"));
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body_sender.cursor.len);
options.on_complete = NULL; /* The stream_tester takes care of the stream deletion */
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream_tester.stream, &options));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream_tester.stream));
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
aws_input_stream_release(body_stream);
/* tick loop until body finishes sending.*/
while (body_sender.cursor.len > 0) {
/* on_complete shouldn't fire until all outgoing data sent AND all incoming data received */
ASSERT_FALSE(stream_tester.complete);
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
}
/* flush any further work so that stream completes */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"0\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_UINT_EQUALS(0, aws_http_headers_count(stream_tester.response_headers));
ASSERT_UINT_EQUALS(0, stream_tester.response_body.len);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Response data arrives, but there was no outstanding request */
H1_CLIENT_TEST_CASE(h1_client_response_without_request_shuts_down_connection) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
ASSERT_SUCCESS(testing_channel_push_read_str_ignore_errors(&tester.testing_channel, "HTTP/1.1 200 OK\r\n\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_TRUE(testing_channel_get_shutdown_error_code(&tester.testing_channel) != AWS_ERROR_SUCCESS);
/* clean up */
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* A response with the "Connection: close" header should result in the connection shutting down
* after the stream completes. */
H1_CLIENT_TEST_CASE(h1_client_response_close_header_ends_connection) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 200 OK\r\n"
"Connection: close\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Response should come across successfully
* but connection should be closing when the stream-complete callback fires */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_FALSE(stream_tester.on_complete_connection_is_open);
/* Connection should have shut down cleanly after delivering response */
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, testing_channel_get_shutdown_error_code(&tester.testing_channel));
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* A request with the "Connection: close" header should result in the connection shutting down
* after the stream completes. */
H1_CLIENT_TEST_CASE(h1_client_request_close_header_ends_connection) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Request has "Connection: close" header */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct aws_http_header headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Host"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("example.com"),
},
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Connection"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("close"),
},
};
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
/* Set up response tester, which sends the request as a side-effect */
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Check that request was sent */
const char *expected = "GET / HTTP/1.1\r\n"
"Host: example.com\r\n"
"Connection: close\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_message_str(&tester.testing_channel, expected));
/* Connection shouldn't be "open" at this point, but it also shouldn't shut down until response is received */
ASSERT_FALSE(aws_http_connection_is_open(tester.connection));
ASSERT_FALSE(testing_channel_is_shutdown_completed(&tester.testing_channel));
/* Send response */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 200 OK\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Response should come across successfully */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_FALSE(stream_tester.on_complete_connection_is_open);
/* Connection should have shut down cleanly after delivering response */
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, testing_channel_get_shutdown_error_code(&tester.testing_channel));
/* clean up */
aws_http_message_destroy(request);
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* While pipelining 3 requests, and 2nd response has a "Connection: close" header.
* 2 requests should complete successfully and the connection should close. */
H1_CLIENT_TEST_CASE(h1_client_response_close_header_with_pipelining) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Send 3 requests before receiving any responses */
enum { NUM_STREAMS = 3 };
struct aws_http_message *requests[NUM_STREAMS];
struct client_stream_tester stream_testers[NUM_STREAMS];
for (size_t i = 0; i < NUM_STREAMS; ++i) {
requests[i] = s_new_default_get_request(allocator);
ASSERT_SUCCESS(s_stream_tester_init(&stream_testers[i], &tester, requests[i]));
};
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Send "Connection: close" header in 2nd response.
* Do not send 3rd response. */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
/* Response 1 */
"HTTP/1.1 200 OK\r\n"
"\r\n"
/* Response 2 */
"HTTP/1.1 200 OK\r\n"
"Connection: close\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
{ /* First stream should be successful, and connection should be open when it completes */
const struct client_stream_tester *first = &stream_testers[0];
ASSERT_TRUE(first->complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, first->on_complete_error_code);
ASSERT_INT_EQUALS(200, first->response_status);
ASSERT_TRUE(first->on_complete_connection_is_open);
}
{ /* Second stream should be successful, BUT connection should NOT be open when it completes */
const struct client_stream_tester *second = &stream_testers[1];
ASSERT_TRUE(second->complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, second->on_complete_error_code);
ASSERT_INT_EQUALS(200, second->response_status);
ASSERT_FALSE(second->on_complete_connection_is_open);
}
{ /* Third stream should complete with error, since connection should close after 2nd stream completes. */
const struct client_stream_tester *third = &stream_testers[2];
ASSERT_TRUE(third->complete);
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_CONNECTION_CLOSED, third->on_complete_error_code);
ASSERT_FALSE(third->on_complete_connection_is_open);
}
/* Connection should have shut down after delivering response.
* Not going to check error_code because it's pretty ambiguous what it ought to be in this circumstance */
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
/* clean up */
for (size_t i = 0; i < NUM_STREAMS; ++i) {
aws_http_message_destroy(requests[i]);
client_stream_tester_clean_up(&stream_testers[i]);
}
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* While pipelining 3 requests, and 2nd request has a "Connection: close" header.
* 2 requests should complete successfully and the connection should close. */
H1_CLIENT_TEST_CASE(h1_client_request_close_header_with_pipelining) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Queue up 3 requests, where the middle request has a "Connection: close" header */
enum { NUM_STREAMS = 3 };
struct aws_http_message *requests[NUM_STREAMS];
struct client_stream_tester stream_testers[NUM_STREAMS];
for (size_t i = 0; i < NUM_STREAMS; ++i) {
requests[i] = s_new_default_get_request(allocator);
if (i == 1) {
struct aws_http_header close_header = {
.name = aws_byte_cursor_from_c_str("Connection"),
.value = aws_byte_cursor_from_c_str("close"),
};
ASSERT_SUCCESS(aws_http_message_add_header(requests[i], close_header));
}
/* Response tester sends requests as a side-effect */
ASSERT_SUCCESS(s_stream_tester_init(&stream_testers[i], &tester, requests[i]));
};
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Check that ONLY first 2 requests were sent */
const char *expected = "GET / HTTP/1.1\r\n"
"\r\n"
"GET / HTTP/1.1\r\n"
"Connection: close\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* Send 2 responses. */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
/* Response 1 */
"HTTP/1.1 200 OK\r\n"
"\r\n"
/* Response 2 */
"HTTP/1.1 200 OK\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
{ /* First stream should be successful */
const struct client_stream_tester *first = &stream_testers[0];
ASSERT_TRUE(first->complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, first->on_complete_error_code);
ASSERT_INT_EQUALS(200, first->response_status);
}
{ /* Second stream should be successful */
const struct client_stream_tester *second = &stream_testers[1];
ASSERT_TRUE(second->complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, second->on_complete_error_code);
ASSERT_INT_EQUALS(200, second->response_status);
}
{ /* Third stream should complete with error, since connection should close after 2nd stream completes. */
const struct client_stream_tester *third = &stream_testers[2];
ASSERT_TRUE(third->complete);
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_CONNECTION_CLOSED, third->on_complete_error_code);
}
/* Connection should have shut down after delivering second response.
* Not going to check error_code because it's pretty ambiguous what it ought to be in this circumstance */
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
/* clean up */
for (size_t i = 0; i < NUM_STREAMS; ++i) {
aws_http_message_destroy(requests[i]);
client_stream_tester_clean_up(&stream_testers[i]);
}
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* While pipelining 3 requests, and 2nd request has a "Connection: close" header.
* 2 requests should complete successfully and the connection should close. */
H1_CLIENT_TEST_CASE(h1_client_request_close_header_with_chunked_encoding_and_pipelining) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Queue up 3 requests, where the middle request has a "Connection: close" header */
enum { NUM_STREAMS = 3 };
struct aws_http_message *requests[NUM_STREAMS];
struct client_stream_tester stream_testers[NUM_STREAMS];
for (size_t i = 0; i < NUM_STREAMS; ++i) {
requests[i] = s_new_default_chunked_put_request(allocator);
if (i == 1) {
struct aws_http_header close_header = {
.name = aws_byte_cursor_from_c_str("Connection"),
.value = aws_byte_cursor_from_c_str("close"),
};
ASSERT_SUCCESS(aws_http_message_add_header(requests[i], close_header));
}
/* Response tester sends requests as a side-effect */
ASSERT_SUCCESS(s_stream_tester_init(&stream_testers[i], &tester, requests[i]));
};
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Write to all the streams */
for (size_t i = 0; i < NUM_STREAMS; ++i) {
static const struct aws_byte_cursor body = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("write more tests");
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body);
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body.len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream_testers[i].stream, &options));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream_testers[i].stream));
}
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Check that ONLY first 2 requests were sent */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"0\r\n"
"\r\n"
"PUT /plan.txt HTTP/1.1\r\n"
"Transfer-Encoding: chunked\r\n"
"Connection: close\r\n"
"\r\n"
"10\r\n"
"write more tests"
"\r\n"
"0\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* Send 2 responses. */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
/* Response 1 */
"HTTP/1.1 200 OK\r\n"
"\r\n"
/* Response 2 */
"HTTP/1.1 200 OK\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
{ /* First stream should be successful */
const struct client_stream_tester *first = &stream_testers[0];
ASSERT_TRUE(first->complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, first->on_complete_error_code);
ASSERT_INT_EQUALS(200, first->response_status);
}
{ /* Second stream should be successful */
const struct client_stream_tester *second = &stream_testers[1];
ASSERT_TRUE(second->complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, second->on_complete_error_code);
ASSERT_INT_EQUALS(200, second->response_status);
}
{ /* Third stream should complete with error, since connection should close after 2nd stream completes. */
const struct client_stream_tester *third = &stream_testers[2];
ASSERT_TRUE(third->complete);
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_CONNECTION_CLOSED, third->on_complete_error_code);
}
/* Connection should have shut down after delivering second response.
* Not going to check error_code because it's pretty ambiguous what it ought to be in this circumstance */
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
/* clean up */
for (size_t i = 0; i < NUM_STREAMS; ++i) {
aws_http_message_destroy(requests[i]);
client_stream_tester_clean_up(&stream_testers[i]);
}
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Test that the stream window rules are respected. These rules are:
* - Each new stream's window starts at initial_stream_window_size.
* - Only body data counts against the stream's window.
* - The stream will not receive more body data than its window allows.
* - Any future streams on the same connection also start with initial_stream_window_size,
* they should not be affected if a previous stream had a very small or very large window when it ended.
*/
H1_CLIENT_TEST_CASE(h1_client_respects_stream_window) {
(void)ctx;
/* This test only checks that the stream window is respected.
* We're not testing the connection window, so just use a giant buffer */
struct tester_options tester_opts = {
.manual_window_management = true,
.initial_stream_window_size = 5,
.read_buffer_capacity = SIZE_MAX,
};
struct tester tester;
ASSERT_SUCCESS(s_tester_init_ex(&tester, allocator, &tester_opts));
/**
* Request/Response 1
*/
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester1;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester1, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* send response whose body is 2X the initial_stream_window_size */
const char *response_str = "HTTP/1.1 200 OK\r\n"
"Content-Length: 10\r\n"
"\r\n"
"0123456789";
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, response_str));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* stream window should reach 0 before entire body has been received */
ASSERT_BIN_ARRAYS_EQUALS("01234", 5, stream_tester1.response_body.buffer, stream_tester1.response_body.len);
struct aws_h1_window_stats window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_TRUE(window_stats.has_incoming_stream);
ASSERT_UINT_EQUALS(0, window_stats.stream_window);
/* open window just enough to get the rest of the body */
aws_http_stream_update_window(stream_tester1.stream, 5);
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_BIN_ARRAYS_EQUALS("0123456789", 10, stream_tester1.response_body.buffer, stream_tester1.response_body.len);
ASSERT_TRUE(stream_tester1.complete);
ASSERT_SUCCESS(stream_tester1.on_complete_error_code);
client_stream_tester_clean_up(&stream_tester1);
/**
* Stream 2.
* Send same request/response as before.
* Everything should work fine, even though the previous stream left off with 0 window.
*/
struct client_stream_tester stream_tester2;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester2, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, response_str));
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_BIN_ARRAYS_EQUALS("01234", 5, stream_tester2.response_body.buffer, stream_tester2.response_body.len);
window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_TRUE(window_stats.has_incoming_stream);
ASSERT_UINT_EQUALS(0, window_stats.stream_window);
/**
* Stream 3.
* Stress pipelining by sending the 3rd request and response before stream 2
* has opened its window enough to complete.
*/
struct client_stream_tester stream_tester3;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester3, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, response_str));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* now open stream 2's window TO THE MAX to complete it. */
aws_http_stream_update_window(stream_tester2.stream, SIZE_MAX);
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_BIN_ARRAYS_EQUALS("0123456789", 10, stream_tester2.response_body.buffer, stream_tester2.response_body.len);
ASSERT_TRUE(stream_tester2.complete);
ASSERT_SUCCESS(stream_tester2.on_complete_error_code);
client_stream_tester_clean_up(&stream_tester2);
/* even though stream2 completed with a WIDE OPEN window, stream3's window should be at the initial size */
ASSERT_BIN_ARRAYS_EQUALS("01234", 5, stream_tester3.response_body.buffer, stream_tester3.response_body.len);
window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_TRUE(window_stats.has_incoming_stream);
ASSERT_UINT_EQUALS(0, window_stats.stream_window);
/* finish up stream 3 */
aws_http_stream_update_window(stream_tester3.stream, 100);
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_BIN_ARRAYS_EQUALS("0123456789", 10, stream_tester3.response_body.buffer, stream_tester3.response_body.len);
ASSERT_TRUE(stream_tester3.complete);
ASSERT_SUCCESS(stream_tester3.on_complete_error_code);
client_stream_tester_clean_up(&stream_tester3);
/* clean up */
aws_http_message_destroy(request);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* This tests the specific way that HTTP/1 manages its connection window. */
H1_CLIENT_TEST_CASE(h1_client_connection_window_with_buffer) {
(void)ctx;
struct tester_options tester_opts = {
.manual_window_management = true,
.initial_stream_window_size = 0,
.read_buffer_capacity = 100,
};
struct tester tester;
ASSERT_SUCCESS(s_tester_init_ex(&tester, allocator, &tester_opts));
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* confirm starting stats before any data received.
* connection window should match buffer capacity. */
struct aws_h1_window_stats window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_UINT_EQUALS(100, window_stats.buffer_capacity);
ASSERT_UINT_EQUALS(0, window_stats.buffer_pending_bytes);
ASSERT_UINT_EQUALS(100, window_stats.connection_window);
ASSERT_UINT_EQUALS(0, window_stats.recent_window_increments);
if (window_stats.has_incoming_stream) {
/* It's an implementation detail whether the incoming stream ptr is set at this point,
* but if it is, it should use initial-window-size*/
ASSERT_UINT_EQUALS(0, window_stats.stream_window);
}
/* send 49 byte response 1 byte at a time, so we can see the message queue in action */
const char *response_str = "HTTP/1.1 200 OK\r\n"
"Content-Length: 10\r\n"
"\r\n"
"0123456789";
struct aws_byte_cursor response_cursor = aws_byte_cursor_from_c_str(response_str);
while (response_cursor.len > 0) {
struct aws_byte_cursor one_byte = aws_byte_cursor_advance(&response_cursor, 1);
ASSERT_SUCCESS(testing_channel_push_read_data(&tester.testing_channel, one_byte));
}
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* The stream should not have received any body, since its initial-window-size is zero.
* At time of writing, the connection would not process headers if stream window was zero,
* but that might change in the future, so not testing window stats here. */
ASSERT_UINT_EQUALS(0, stream_tester.response_body.len);
/* Open the stream window by 1 byte and check stats.
* 40 bytes should be processed: 39 bytes of headers and metadata + 1 byte of body data */
aws_http_stream_update_window(stream_tester.stream, 1);
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_UINT_EQUALS(1, stream_tester.response_body.len);
window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_UINT_EQUALS(
40, window_stats.recent_window_increments); /* window incremented to account for processed data */
ASSERT_UINT_EQUALS(100, window_stats.buffer_capacity);
ASSERT_UINT_EQUALS(9, window_stats.buffer_pending_bytes);
ASSERT_UINT_EQUALS(91, window_stats.connection_window);
ASSERT_TRUE(window_stats.has_incoming_stream);
ASSERT_UINT_EQUALS(0, window_stats.stream_window);
/* Open stream window enough to finish */
aws_http_stream_update_window(stream_tester.stream, 9);
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_UINT_EQUALS(10, stream_tester.response_body.len);
ASSERT_TRUE(stream_tester.complete);
ASSERT_SUCCESS(stream_tester.on_complete_error_code);
window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_UINT_EQUALS(9, window_stats.recent_window_increments); /* window incremented to account for processed data */
ASSERT_UINT_EQUALS(100, window_stats.buffer_capacity);
ASSERT_UINT_EQUALS(0, window_stats.buffer_pending_bytes);
ASSERT_UINT_EQUALS(100, window_stats.connection_window);
ASSERT_FALSE(window_stats.has_incoming_stream);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
aws_http_message_release(request);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Test a connection with read_buffer_capacity < initial_window_size */
H1_CLIENT_TEST_CASE(h1_client_connection_window_with_small_buffer) {
(void)ctx;
struct tester_options tester_opts = {
.manual_window_management = true,
.initial_stream_window_size = 10,
.read_buffer_capacity = 5,
};
struct tester tester;
ASSERT_SUCCESS(s_tester_init_ex(&tester, allocator, &tester_opts));
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* can't send response all at once because channel-window is too small. */
const char *response_head_str = "HTTP/1.1 200 OK\r\n"
"Content-Length: 20\r\n"
"\r\n";
const char *response_body_str = "0123456789"
"ABCDEFGHIJ";
/* send response head in little increments, it should flow through to the stream no problem */
struct aws_byte_cursor response_cursor = aws_byte_cursor_from_c_str(response_head_str);
while (response_cursor.len > 0) {
struct aws_byte_cursor one_byte = aws_byte_cursor_advance(&response_cursor, 1);
ASSERT_SUCCESS(testing_channel_push_read_data(&tester.testing_channel, one_byte));
testing_channel_drain_queued_tasks(&tester.testing_channel);
}
ASSERT_UINT_EQUALS(0, stream_tester.response_body.len);
/* send enough body data that stream's window is reduced to zero. */
response_cursor = aws_byte_cursor_from_c_str(response_body_str);
for (int i = 0; i < 10; ++i) {
struct aws_byte_cursor one_byte = aws_byte_cursor_advance(&response_cursor, 1);
ASSERT_SUCCESS(testing_channel_push_read_data(&tester.testing_channel, one_byte));
testing_channel_drain_queued_tasks(&tester.testing_channel);
}
ASSERT_UINT_EQUALS(10, stream_tester.response_body.len);
struct aws_h1_window_stats window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_UINT_EQUALS(0, window_stats.stream_window);
ASSERT_UINT_EQUALS(0, window_stats.buffer_pending_bytes);
ASSERT_UINT_EQUALS(5, window_stats.buffer_capacity);
/* now that stream's window is 0, further data should fill the connection's read-buffer */
for (int i = 0; i < 5; ++i) {
struct aws_byte_cursor one_byte = aws_byte_cursor_advance(&response_cursor, 1);
ASSERT_SUCCESS(testing_channel_push_read_data(&tester.testing_channel, one_byte));
}
testing_channel_drain_queued_tasks(&tester.testing_channel);
window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_UINT_EQUALS(5, window_stats.buffer_pending_bytes);
/* open the stream's window enough to finish the response, the buffered bytes should be consumed */
aws_http_stream_update_window(stream_tester.stream, SIZE_MAX);
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_UINT_EQUALS(15, stream_tester.response_body.len);
window_stats = aws_h1_connection_window_stats(tester.connection);
ASSERT_UINT_EQUALS(0, window_stats.buffer_pending_bytes);
/* send the remainder of the response */
while (response_cursor.len > 0) {
struct aws_byte_cursor one_byte = aws_byte_cursor_advance(&response_cursor, 1);
ASSERT_SUCCESS(testing_channel_push_read_data(&tester.testing_channel, one_byte));
testing_channel_drain_queued_tasks(&tester.testing_channel);
}
ASSERT_UINT_EQUALS(20, stream_tester.response_body.len);
ASSERT_TRUE(stream_tester.complete);
ASSERT_UINT_EQUALS(0, stream_tester.on_complete_error_code);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
aws_http_message_release(request);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
static void s_on_complete(struct aws_http_stream *stream, int error_code, void *user_data) {
(void)stream;
int *completion_error_code = user_data;
*completion_error_code = error_code;
}
static int s_test_content_length_mismatch_is_error(
struct aws_allocator *allocator,
const char *body,
const char *wrong_length) {
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request whose Content-Length does not match body length */
const struct aws_byte_cursor body_cur = aws_byte_cursor_from_c_str(body);
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body_cur);
struct aws_http_header headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
.value = aws_byte_cursor_from_c_str(wrong_length),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers));
aws_http_message_set_body_stream(request, body_stream);
int completion_error_code = 0;
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
.on_complete = s_on_complete,
.user_data = &completion_error_code,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_OUTGOING_STREAM_LENGTH_INCORRECT, completion_error_code);
/* clean up */
aws_input_stream_release(body_stream);
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_content_length_too_small_is_error) {
(void)ctx;
return s_test_content_length_mismatch_is_error(allocator, "I am very long", "1");
}
H1_CLIENT_TEST_CASE(h1_client_request_content_length_too_large_is_error) {
(void)ctx;
return s_test_content_length_mismatch_is_error(allocator, "I am very short", "999");
}
static int s_test_chunk_length_mismatch_is_error(
struct aws_allocator *allocator,
const char *body,
size_t wrong_length) {
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
const struct aws_byte_cursor body_cur = aws_byte_cursor_from_c_str(body);
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body_cur);
/* send request */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
int completion_error_code = 0;
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
.on_complete = s_on_complete,
.user_data = &completion_error_code,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
/* Initialize with an off by one body length */
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, wrong_length);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_OUTGOING_STREAM_LENGTH_INCORRECT, completion_error_code);
/* clean up */
aws_http_message_destroy(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_request_chunk_size_too_small_is_error) {
(void)ctx;
return s_test_chunk_length_mismatch_is_error(allocator, "I am very long", 2);
}
H1_CLIENT_TEST_CASE(h1_client_request_chunk_size_too_large_is_error) {
(void)ctx;
return s_test_chunk_length_mismatch_is_error(allocator, "I am very short", 999);
}
H1_CLIENT_TEST_CASE(h1_client_request_chunks_cancelled_by_channel_shutdown) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_chunked_put_request(allocator);
int completion_error_code = 0;
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
.user_data = &completion_error_code,
.on_complete = s_on_complete,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
const struct aws_byte_cursor body_cur = aws_byte_cursor_from_c_str("write more tests");
struct aws_input_stream *body_stream = aws_input_stream_new_from_cursor(allocator, &body_cur);
/* This will "pause" the connection loop as there is an empty stream. */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Now write 2 chunks. The chunk memory should be automatically released when the http stream is destroyed. */
struct aws_http1_chunk_options options = s_default_chunk_options(body_stream, body_cur.len);
ASSERT_SUCCESS(aws_http1_stream_write_chunk(stream, &options));
ASSERT_SUCCESS(s_write_termination_chunk(allocator, stream));
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(opt.request);
/* shutdown channel before request completes */
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_SUCCESS);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* even though the channel shut down with error_code 0,
* the stream should not get code 0 because it did not complete successfully */
ASSERT_TRUE(completion_error_code != AWS_ERROR_SUCCESS);
/* clean up */
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* If channel shuts down before any response is received, the request should complete with an error */
H1_CLIENT_TEST_CASE(h1_client_request_cancelled_by_channel_shutdown_before_response) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
int completion_error_code = 0;
/* send request */
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = s_new_default_get_request(allocator),
.user_data = &completion_error_code,
.on_complete = s_on_complete,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(opt.request);
/* shutdown channel before request completes */
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_SUCCESS);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* even though the channel shut down with error_code 0,
* the stream should not get code 0 because it did not complete successfully */
ASSERT_TRUE(completion_error_code != AWS_ERROR_SUCCESS);
/* clean up */
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* If channel shuts down in the middle of a response, the request should complete with an error */
H1_CLIENT_TEST_CASE(h1_client_request_cancelled_by_channel_shutdown_mid_response) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* send request */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send response that is 1 byte short of being complete */
const char *response_str = "HTTP/1.1 200 OK\r\n"
"Content-Length: 4\r\n"
"\r\n"
"123";
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, response_str));
/* shutdown channel while response is 1 byte short of being complete */
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_SUCCESS);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* the request should complete with error, having only received a partial response */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_CONNECTION_CLOSED, stream_tester.on_complete_error_code);
ASSERT_UINT_EQUALS(3, stream_tester.response_body.len);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_multiple_requests_cancelled_by_channel_shutdown) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct aws_http_stream *streams[3];
int completion_error_codes[3];
memset(completion_error_codes, 0, sizeof(completion_error_codes));
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = s_new_default_get_request(allocator),
.on_complete = s_on_complete,
};
for (int i = 0; i < 2; ++i) {
opt.user_data = &completion_error_codes[i];
streams[i] = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(streams[i]);
ASSERT_SUCCESS(aws_http_stream_activate(streams[i]));
}
/* 2 streams are now in-progress */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Make 1 more stream that's still locked away in the pending queue */
opt.user_data = &completion_error_codes[2];
streams[2] = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(streams[2]);
ASSERT_SUCCESS(aws_http_stream_activate(streams[2]));
/* shutdown channel */
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_SUCCESS);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(opt.request);
/* check results */
for (int i = 0; i < 3; ++i) {
ASSERT_TRUE(completion_error_codes[i] != AWS_ERROR_SUCCESS);
aws_http_stream_release(streams[i]);
}
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_new_request_fails_if_channel_shut_down) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_SUCCESS);
/* wait for shutdown complete */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* send request */
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = s_new_default_get_request(allocator),
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NULL(stream);
ASSERT_INT_EQUALS(aws_last_error(), AWS_ERROR_HTTP_CONNECTION_CLOSED);
aws_http_message_destroy(opt.request);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
enum request_callback {
REQUEST_CALLBACK_OUTGOING_BODY,
REQUEST_CALLBACK_INCOMING_HEADERS,
REQUEST_CALLBACK_INCOMING_HEADERS_DONE,
REQUEST_CALLBACK_INCOMING_BODY,
REQUEST_CALLBACK_COMPLETE,
REQUEST_CALLBACK_COUNT,
};
static const int ERROR_FROM_CALLBACK_ERROR_CODE = (int)0xBEEFCAFE;
struct error_from_callback_tester {
struct aws_input_stream base;
enum request_callback error_at;
int callback_counts[REQUEST_CALLBACK_COUNT];
bool has_errored;
struct aws_stream_status status;
int on_complete_error_code;
struct aws_allocator *alloc;
};
static int s_error_from_callback_common(
struct error_from_callback_tester *error_tester,
enum request_callback current_callback) {
error_tester->callback_counts[current_callback]++;
/* After error code returned, no more callbacks should fire (except for on_complete) */
AWS_FATAL_ASSERT(!error_tester->has_errored);
AWS_FATAL_ASSERT(current_callback <= error_tester->error_at);
if (current_callback == error_tester->error_at) {
error_tester->has_errored = true;
return aws_raise_error(ERROR_FROM_CALLBACK_ERROR_CODE);
}
return AWS_OP_SUCCESS;
}
static int s_error_from_outgoing_body_read(struct aws_input_stream *body, struct aws_byte_buf *dest) {
(void)dest;
struct error_from_callback_tester *error_tester = AWS_CONTAINER_OF(body, struct error_from_callback_tester, base);
if (s_error_from_callback_common(error_tester, REQUEST_CALLBACK_OUTGOING_BODY)) {
return AWS_OP_ERR;
}
/* If the common fn was successful, write out some data and end the stream */
ASSERT_TRUE(aws_byte_buf_write(dest, (const uint8_t *)"abcd", 4));
error_tester->status.is_end_of_stream = true;
return AWS_OP_SUCCESS;
}
static int s_error_from_outgoing_body_get_status(struct aws_input_stream *body, struct aws_stream_status *status) {
struct error_from_callback_tester *error_tester = AWS_CONTAINER_OF(body, struct error_from_callback_tester, base);
*status = error_tester->status;
return AWS_OP_SUCCESS;
}
static void s_error_from_outgoing_body_destroy(struct aws_input_stream *stream) {
(void)stream;
}
static struct aws_input_stream_vtable s_error_from_outgoing_body_vtable = {
.seek = NULL,
.read = s_error_from_outgoing_body_read,
.get_status = s_error_from_outgoing_body_get_status,
.get_length = NULL,
};
static int s_error_from_incoming_headers(
struct aws_http_stream *stream,
enum aws_http_header_block header_block,
const struct aws_http_header *header_array,
size_t num_headers,
void *user_data) {
(void)stream;
(void)header_block;
(void)header_array;
(void)num_headers;
return s_error_from_callback_common(user_data, REQUEST_CALLBACK_INCOMING_HEADERS);
}
static int s_error_from_incoming_headers_done(
struct aws_http_stream *stream,
enum aws_http_header_block header_block,
void *user_data) {
(void)stream;
(void)header_block;
return s_error_from_callback_common(user_data, REQUEST_CALLBACK_INCOMING_HEADERS_DONE);
}
static int s_error_from_incoming_body(
struct aws_http_stream *stream,
const struct aws_byte_cursor *data,
void *user_data) {
(void)stream;
(void)data;
return s_error_from_callback_common(user_data, REQUEST_CALLBACK_INCOMING_BODY);
}
static void s_error_tester_on_stream_complete(struct aws_http_stream *stream, int error_code, void *user_data) {
(void)stream;
struct error_from_callback_tester *error_tester = user_data;
error_tester->callback_counts[REQUEST_CALLBACK_COMPLETE]++;
error_tester->on_complete_error_code = error_code;
}
static int s_test_error_from_callback(struct aws_allocator *allocator, enum request_callback error_at) {
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct aws_input_stream empty_stream_base;
AWS_ZERO_STRUCT(empty_stream_base);
struct error_from_callback_tester error_tester = {
.base = empty_stream_base,
.error_at = error_at,
.status =
{
.is_valid = true,
.is_end_of_stream = false,
},
};
error_tester.base.vtable = &s_error_from_outgoing_body_vtable;
aws_ref_count_init(
&error_tester.base.ref_count,
&error_tester,
(aws_simple_completion_callback *)s_error_from_outgoing_body_destroy);
struct aws_input_stream *error_from_outgoing_body_stream = &error_tester.base;
/* send request */
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Content-Length"),
.value = aws_byte_cursor_from_c_str("4"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_http_method_post));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/")));
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
aws_http_message_set_body_stream(request, error_from_outgoing_body_stream);
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
.on_response_headers = s_error_from_incoming_headers,
.on_response_header_block_done = s_error_from_incoming_headers_done,
.on_response_body = s_error_from_incoming_body,
.on_complete = s_error_tester_on_stream_complete,
.user_data = &error_tester,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(opt.request);
aws_input_stream_release(error_from_outgoing_body_stream);
/* send response */
ASSERT_SUCCESS(testing_channel_push_read_str_ignore_errors(
&tester.testing_channel,
"HTTP/1.1 200 OK\r\n"
"Transfer-Encoding: chunked\r\n"
"Date: Fri, 01 Mar 2019 17:18:55 GMT\r\n"
"\r\n"
"3\r\n"
"two\r\n"
"6\r\n"
"chunks\r\n"
"0\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check that callbacks were invoked before error_at, but not after */
for (int i = 0; i < REQUEST_CALLBACK_COMPLETE; ++i) {
if (i <= error_at) {
ASSERT_TRUE(error_tester.callback_counts[i] > 0);
} else {
ASSERT_INT_EQUALS(0, error_tester.callback_counts[i]);
}
}
/* the on_complete callback should always fire though, and should receive the proper error_code */
ASSERT_INT_EQUALS(1, error_tester.callback_counts[REQUEST_CALLBACK_COMPLETE]);
ASSERT_INT_EQUALS(ERROR_FROM_CALLBACK_ERROR_CODE, error_tester.on_complete_error_code);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_error_from_outgoing_body_callback_stops_decoder) {
(void)ctx;
ASSERT_SUCCESS(s_test_error_from_callback(allocator, REQUEST_CALLBACK_OUTGOING_BODY));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_error_from_incoming_headers_callback_stops_decoder) {
(void)ctx;
ASSERT_SUCCESS(s_test_error_from_callback(allocator, REQUEST_CALLBACK_INCOMING_HEADERS));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_error_from_incoming_headers_done_callback_stops_decoder) {
(void)ctx;
ASSERT_SUCCESS(s_test_error_from_callback(allocator, REQUEST_CALLBACK_INCOMING_HEADERS_DONE));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_error_from_incoming_body_callback_stops_decoder) {
(void)ctx;
ASSERT_SUCCESS(s_test_error_from_callback(allocator, REQUEST_CALLBACK_INCOMING_BODY));
return AWS_OP_SUCCESS;
}
/* After aws_http_connection_close() is called, aws_http_connection_is_open() should return false,
* even if both calls were made from outside the event-loop thread. */
H1_CLIENT_TEST_CASE(h1_client_close_from_off_thread_makes_not_open) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
testing_channel_set_is_on_users_thread(&tester.testing_channel, false);
ASSERT_TRUE(aws_http_connection_is_open(tester.connection));
aws_http_connection_close(tester.connection);
ASSERT_FALSE(aws_http_connection_is_open(tester.connection));
testing_channel_set_is_on_users_thread(&tester.testing_channel, true);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_close_from_on_thread_makes_not_open) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
testing_channel_set_is_on_users_thread(&tester.testing_channel, false);
ASSERT_TRUE(aws_http_connection_is_open(tester.connection));
testing_channel_set_is_on_users_thread(&tester.testing_channel, true);
aws_http_connection_close(tester.connection);
testing_channel_set_is_on_users_thread(&tester.testing_channel, false);
ASSERT_FALSE(aws_http_connection_is_open(tester.connection));
testing_channel_set_is_on_users_thread(&tester.testing_channel, true);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
struct s_callback_invoked {
bool destroy_invoked;
bool complete_invoked;
};
static void s_unactivated_stream_cleans_up_on_destroy(void *data) {
struct s_callback_invoked *callback_data = data;
callback_data->destroy_invoked = true;
}
static void s_unactivated_stream_complete(struct aws_http_stream *stream, int error_code, void *data) {
(void)stream;
(void)error_code;
struct s_callback_invoked *callback_data = data;
callback_data->complete_invoked = true;
}
H1_CLIENT_TEST_CASE(h1_client_unactivated_stream_cleans_up) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
ASSERT_TRUE(aws_http_connection_is_open(tester.connection));
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("GET")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/")));
struct s_callback_invoked callback_data = {0};
struct aws_http_make_request_options options = {
.self_size = sizeof(struct aws_http_make_request_options),
.request = request,
.on_destroy = s_unactivated_stream_cleans_up_on_destroy,
.on_complete = s_unactivated_stream_complete,
.user_data = &callback_data,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &options);
aws_http_message_release(request);
ASSERT_NOT_NULL(stream);
/* we do not activate, that is the test. */
ASSERT_FALSE(callback_data.destroy_invoked);
ASSERT_FALSE(callback_data.complete_invoked);
aws_http_stream_release(stream);
/* Only destroy invoked, the complete was not invoked */
ASSERT_TRUE(callback_data.destroy_invoked);
ASSERT_FALSE(callback_data.complete_invoked);
aws_http_connection_close(tester.connection);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
struct protocol_switcher {
/* Settings */
struct tester *tester;
size_t downstream_handler_window_size;
const char *data_after_upgrade_response;
bool install_downstream_handler;
/* Results */
int upgrade_response_status;
bool has_installed_downstream_handler;
};
static int s_switch_protocols_on_response_header_block_done(
struct aws_http_stream *stream,
enum aws_http_header_block header_block,
void *user_data) {
(void)header_block;
struct protocol_switcher *switcher = user_data;
aws_http_stream_get_incoming_response_status(stream, &switcher->upgrade_response_status);
/* install downstream hander */
if (switcher->install_downstream_handler &&
(switcher->upgrade_response_status == AWS_HTTP_STATUS_CODE_101_SWITCHING_PROTOCOLS)) {
int err = testing_channel_install_downstream_handler(
&switcher->tester->testing_channel, switcher->downstream_handler_window_size);
if (!err) {
switcher->has_installed_downstream_handler = true;
}
}
return AWS_OP_SUCCESS;
}
/* Send "Connection: Upgrade" request and receive "101 Switching Protocols" response.
* Optionally, install a downstream handler when response is received
*/
static int s_switch_protocols(struct protocol_switcher *switcher) {
/* send upgrade request */
struct aws_http_header request_headers[] = {
{
.name = aws_byte_cursor_from_c_str("Connection"),
.value = aws_byte_cursor_from_c_str("Upgrade"),
},
{
.name = aws_byte_cursor_from_c_str("Upgrade"),
.value = aws_byte_cursor_from_c_str("MyProtocol"),
},
};
struct aws_http_message *request = aws_http_message_new_request(switcher->tester->alloc);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_http_method_get));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/")));
ASSERT_SUCCESS(aws_http_message_add_header_array(request, request_headers, AWS_ARRAY_SIZE(request_headers)));
struct aws_http_make_request_options upgrade_request = {
.self_size = sizeof(upgrade_request),
.request = request,
.user_data = switcher,
.on_response_header_block_done = s_switch_protocols_on_response_header_block_done,
};
struct aws_http_stream *upgrade_stream =
aws_http_connection_make_request(switcher->tester->connection, &upgrade_request);
ASSERT_NOT_NULL(upgrade_stream);
ASSERT_SUCCESS(aws_http_stream_activate(upgrade_stream));
testing_channel_drain_queued_tasks(&switcher->tester->testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(upgrade_request.request);
/* clear all messages written thus far to the testing-channel */
while (!aws_linked_list_empty(testing_channel_get_written_message_queue(&switcher->tester->testing_channel))) {
struct aws_linked_list_node *node =
aws_linked_list_pop_front(testing_channel_get_written_message_queue(&switcher->tester->testing_channel));
struct aws_io_message *msg = AWS_CONTAINER_OF(node, struct aws_io_message, queueing_handle);
aws_mem_release(msg->allocator, msg);
}
/* send upgrade response (followed by any extra data) */
struct aws_byte_cursor response = aws_byte_cursor_from_c_str("HTTP/1.1 101 Switching Protocols\r\n"
"Upgrade: MyProtocol\r\n"
"\r\n");
struct aws_byte_cursor extra_data = aws_byte_cursor_from_c_str(switcher->data_after_upgrade_response);
struct aws_byte_buf sending_buf;
ASSERT_SUCCESS(aws_byte_buf_init(&sending_buf, switcher->tester->alloc, response.len + extra_data.len));
ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&sending_buf, response));
if (extra_data.len) {
ASSERT_TRUE(aws_byte_buf_write_from_whole_cursor(&sending_buf, extra_data));
}
ASSERT_SUCCESS(
testing_channel_push_read_data(&switcher->tester->testing_channel, aws_byte_cursor_from_buf(&sending_buf)));
/* wait for response to complete, and check results */
testing_channel_drain_queued_tasks(&switcher->tester->testing_channel);
ASSERT_INT_EQUALS(101, switcher->upgrade_response_status);
/* if we wanted downstream handler installed, ensure that happened */
if (switcher->install_downstream_handler) {
ASSERT_TRUE(switcher->has_installed_downstream_handler);
}
/* cleanup */
aws_byte_buf_clean_up(&sending_buf);
aws_http_stream_release(upgrade_stream);
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_new_request_allowed) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* prepare request */
struct aws_http_make_request_options options = {
.self_size = sizeof(options),
.request = s_new_default_get_request(allocator),
};
/* validate the new request is allowed for now */
ASSERT_TRUE(aws_http_connection_new_requests_allowed(tester.connection));
/* switch protocols */
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = true,
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
/* validate the new request is not allowed anymore when goaway received */
ASSERT_FALSE(aws_http_connection_new_requests_allowed(tester.connection));
/* Make new request will fail */
ASSERT_NULL(aws_http_connection_make_request(tester.connection, &options));
ASSERT_UINT_EQUALS(AWS_ERROR_HTTP_SWITCHED_PROTOCOLS, aws_last_error());
/* close connection */
aws_http_connection_close(tester.connection);
/* Make new request will fail */
ASSERT_NULL(aws_http_connection_make_request(tester.connection, &options));
ASSERT_UINT_EQUALS(AWS_ERROR_HTTP_CONNECTION_CLOSED, aws_last_error());
/* clean up */
aws_http_message_destroy(options.request);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_midchannel_sanity_check) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = true,
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
/* clean up */
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* confirm data passes through http-handler untouched in the read direction */
H1_CLIENT_TEST_CASE(h1_client_midchannel_read) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = true,
.downstream_handler_window_size = SIZE_MAX,
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
const char *test_str = "inmyprotocolspacesarestrictlyforbidden";
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, test_str));
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(testing_channel_check_midchannel_read_messages_str(&tester.testing_channel, allocator, test_str));
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* confirm that, if new-protocol-data arrives packed into the same aws_io_message as the upgrade response,
* that data is properly passed dowstream. */
H1_CLIENT_TEST_CASE(h1_client_midchannel_read_immediately) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
const char *test_str = "inmyprotocoleverythingwillbebetter";
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = true,
.downstream_handler_window_size = SIZE_MAX,
.data_after_upgrade_response = test_str, /* Note extra data */
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
ASSERT_SUCCESS(testing_channel_check_midchannel_read_messages_str(&tester.testing_channel, allocator, test_str));
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Have a tiny downstream read-window and increment it in little chunks. */
H1_CLIENT_TEST_CASE(h1_client_midchannel_read_with_small_downstream_window) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = true,
.downstream_handler_window_size = 1 /* Note tiny starting window. */,
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
const char *test_str = "inmyprotocolcapitallettersarethedevil";
ASSERT_SUCCESS(testing_channel_push_read_str(&tester.testing_channel, test_str));
/* open window in tiny increments */
for (size_t i = 0; i < strlen(test_str); ++i) {
ASSERT_SUCCESS(testing_channel_increment_read_window(&tester.testing_channel, 1));
testing_channel_drain_queued_tasks(&tester.testing_channel);
}
/* ensure that the handler actually sent multiple messages */
size_t num_read_messages = 0;
struct aws_linked_list *list = testing_channel_get_read_message_queue(&tester.testing_channel);
struct aws_linked_list_node *node = aws_linked_list_front(list);
while (node != aws_linked_list_end(list)) {
num_read_messages++;
node = aws_linked_list_next(node);
}
ASSERT_TRUE(num_read_messages > 1);
ASSERT_SUCCESS(testing_channel_check_midchannel_read_messages_str(&tester.testing_channel, allocator, test_str));
/* cleanup */
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* confirm data passes through http-handler untouched in the write direction */
H1_CLIENT_TEST_CASE(h1_client_midchannel_write) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = true,
.downstream_handler_window_size = SIZE_MAX,
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
const char *test_str = "inmyprotocolthereisnomoney";
testing_channel_push_write_str(&tester.testing_channel, test_str);
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, test_str));
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* Test that, when HTTP is a midchannel handler, it will continue processing aws_io_messages write messages
* in the time between shutdown-in-the-read-direction and shutdown-in-the-write-direction */
static const char *s_write_after_shutdown_in_read_dir_str = "inmyprotocolfrowningisnotallowed";
static void s_downstream_handler_write_on_shutdown(
enum aws_channel_direction dir,
int error_code,
bool free_scarce_resources_immediately,
void *user_data) {
(void)error_code;
(void)free_scarce_resources_immediately;
struct tester *tester = user_data;
if (dir == AWS_CHANNEL_DIR_WRITE) {
testing_channel_push_write_str(&tester->testing_channel, s_write_after_shutdown_in_read_dir_str);
}
}
H1_CLIENT_TEST_CASE(h1_client_midchannel_write_continues_after_shutdown_in_read_dir) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = true,
.downstream_handler_window_size = SIZE_MAX,
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
/* Downstream handler will write data while shutting down in write direction */
testing_channel_set_downstream_handler_shutdown_callback(
&tester.testing_channel, s_downstream_handler_write_on_shutdown, &tester);
/* Shutdown cannel */
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_SUCCESS);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Did the late message get through? */
ASSERT_SUCCESS(testing_channel_check_written_messages_str(
&tester.testing_channel, tester.alloc, s_write_after_shutdown_in_read_dir_str));
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
static void s_on_message_write_complete_save_error_code(
struct aws_channel *channel,
struct aws_io_message *message,
int err_code,
void *user_data) {
(void)channel;
(void)message;
int *save = user_data;
*save = err_code;
}
/* Ensure that things fail if a downstream handler is installed without switching protocols.
* This test is weird in that failure must occur, but we're not prescriptive about where it occurs. */
H1_CLIENT_TEST_CASE(h1_client_midchannel_requires_switching_protocols) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* The act of installing the downstream handler might fail */
int err = testing_channel_install_downstream_handler(&tester.testing_channel, SIZE_MAX);
if (err) {
goto installation_failed;
}
/* Sending the message might fail */
int msg_completion_error_code = 0;
struct aws_io_message *msg = aws_channel_acquire_message_from_pool(
tester.testing_channel.channel, AWS_IO_MESSAGE_APPLICATION_DATA, SIZE_MAX);
ASSERT_NOT_NULL(msg);
msg->on_completion = s_on_message_write_complete_save_error_code;
msg->user_data = &msg_completion_error_code;
err = testing_channel_push_write_message(&tester.testing_channel, msg);
if (err) {
aws_mem_release(msg->allocator, msg);
goto push_message_failed;
}
/* The message might fail to reach the socket */
testing_channel_drain_queued_tasks(&tester.testing_channel);
if (msg_completion_error_code) {
goto message_completion_failed;
}
/* This is bad, we should have failed by now */
ASSERT_TRUE(false);
message_completion_failed:
push_message_failed:
installation_failed:
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_switching_protocols_fails_pending_requests) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* queue a connection upgrade request */
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Connection"),
.value = aws_byte_cursor_from_c_str("Upgrade"),
},
{
.name = aws_byte_cursor_from_c_str("Upgrade"),
.value = aws_byte_cursor_from_c_str("MyProtocol"),
},
};
struct aws_http_message *upgrade_request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(upgrade_request);
ASSERT_SUCCESS(aws_http_message_set_request_method(upgrade_request, aws_http_method_get));
ASSERT_SUCCESS(aws_http_message_set_request_path(upgrade_request, aws_byte_cursor_from_c_str("/")));
ASSERT_SUCCESS(aws_http_message_add_header_array(upgrade_request, headers, AWS_ARRAY_SIZE(headers)));
struct client_stream_tester upgrade_stream;
ASSERT_SUCCESS(s_stream_tester_init(&upgrade_stream, &tester, upgrade_request));
/* queue another request behind it */
struct aws_http_message *next_request = s_new_default_get_request(allocator);
struct client_stream_tester next_stream;
ASSERT_SUCCESS(s_stream_tester_init(&next_stream, &tester, next_request));
/* send upgrade response */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(upgrade_request);
aws_http_message_destroy(next_request);
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 101 Switching Protocols\r\n"
"Upgrade: MyProtocol\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* confirm that the next request was cancelled */
ASSERT_TRUE(next_stream.complete);
ASSERT_TRUE(next_stream.on_complete_error_code != AWS_OP_SUCCESS);
/* clean up */
client_stream_tester_clean_up(&upgrade_stream);
client_stream_tester_clean_up(&next_stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_switching_protocols_fails_subsequent_requests) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Successfully switch protocols */
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = true,
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
/* Attempting to send a request after this should fail. */
struct aws_http_message *request = s_new_default_get_request(allocator);
struct client_stream_tester stream_tester;
int err = s_stream_tester_init(&stream_tester, &tester, request);
if (err) {
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_SWITCHED_PROTOCOLS, aws_last_error());
} else {
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_SWITCHED_PROTOCOLS, stream_tester.on_complete_error_code);
}
/* clean up */
aws_http_message_destroy(request);
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_switching_protocols_requires_downstream_handler) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Successfully switch protocols, but don't install downstream handler. */
struct protocol_switcher switcher = {
.tester = &tester,
.install_downstream_handler = false,
};
ASSERT_SUCCESS(s_switch_protocols(&switcher));
/* If new data arrives and no downstream handler is installed to deal with it, the connection should shut down. */
ASSERT_SUCCESS(
testing_channel_push_read_str_ignore_errors(&tester.testing_channel, "herecomesnewprotocoldatachoochoo"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_TRUE(testing_channel_get_shutdown_error_code(&tester.testing_channel) != AWS_ERROR_SUCCESS);
/* clean up */
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_connection_close_before_request_finishes) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* set up request whose body won't send immediately */
struct slow_body_sender body_sender;
AWS_ZERO_STRUCT(body_sender);
s_slow_body_sender_init(&body_sender);
struct aws_input_stream *body_stream = &body_sender.base;
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Content-Length"),
.value = aws_byte_cursor_from_c_str("16"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
aws_http_message_set_body_stream(request, body_stream);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
/* send head of request */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
aws_input_stream_release(body_stream);
/* send close connection response */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 404 Not Found\r\n"
"Date: Fri, 01 Mar 2019 17:18:55 GMT\r\n"
"\r\n"));
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_SUCCESS);
/* Wait for channel to finish shutdown */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result, should not receive any body */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Content-Length: 16\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_stream_cancel) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* set up request whose body won't send immediately */
struct slow_body_sender body_sender;
AWS_ZERO_STRUCT(body_sender);
s_slow_body_sender_init(&body_sender);
struct aws_input_stream *body_stream = &body_sender.base;
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Content-Length"),
.value = aws_byte_cursor_from_c_str("16"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
aws_http_message_set_body_stream(request, body_stream);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
/* send head of request */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
aws_input_stream_release(body_stream);
/* Something absurd */
aws_http_stream_cancel(stream_tester.stream, AWS_ERROR_COND_VARIABLE_ERROR_UNKNOWN);
/* The second call will take not action */
aws_http_stream_cancel(stream_tester.stream, AWS_ERROR_SUCCESS);
/* Wait for channel to finish shutdown */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result, should not receive any body */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Content-Length: 16\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_COND_VARIABLE_ERROR_UNKNOWN, stream_tester.on_complete_error_code);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/* When response has `connection: close` any further request body should not be sent. */
H1_CLIENT_TEST_CASE(h1_client_response_close_connection_before_request_finishes) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* Okay to set a timeout */
size_t connection_response_first_byte_timeout_ms = 200;
tester.connection->client_data->response_first_byte_timeout_ms = connection_response_first_byte_timeout_ms;
/* set up request whose body won't send immediately */
struct slow_body_sender body_sender;
AWS_ZERO_STRUCT(body_sender);
s_slow_body_sender_init(&body_sender);
struct aws_input_stream *body_stream = &body_sender.base;
struct aws_http_header headers[] = {
{
.name = aws_byte_cursor_from_c_str("Content-Length"),
.value = aws_byte_cursor_from_c_str("16"),
},
};
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("PUT")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
aws_http_message_set_body_stream(request, body_stream);
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
/* send head of request */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_release(request);
aws_input_stream_release(body_stream);
/* send close connection response */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 404 Not Found\r\n"
"Date: Fri, 01 Mar 2019 17:18:55 GMT\r\n"
"Connection: close\r\n"
"\r\n"));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result, should not receive any body */
const char *expected = "PUT /plan.txt HTTP/1.1\r\n"
"Content-Length: 16\r\n"
"\r\n";
ASSERT_SUCCESS(testing_channel_check_written_messages_str(&tester.testing_channel, allocator, expected));
/* Check if the testing channel has shut down. */
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_response_first_byte_timeout_connection) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* with test channel, we don't use bootstrap to propagate the settings. Hack around it by set the setting directly
*/
size_t connection_response_first_byte_timeout_ms = 200;
tester.connection->client_data->response_first_byte_timeout_ms = connection_response_first_byte_timeout_ms;
/* send request */
struct aws_http_header headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Host"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("example.com"),
},
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Accept"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("*/*"),
},
};
struct aws_http_message *request = s_new_default_get_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Sleep to trigger the timeout */
aws_thread_current_sleep(aws_timestamp_convert(
connection_response_first_byte_timeout_ms + 1, AWS_TIMESTAMP_MILLIS, AWS_TIMESTAMP_NANOS, NULL));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Check if the testing channel has shut down. */
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_RESPONSE_FIRST_BYTE_TIMEOUT, stream_tester.on_complete_error_code);
/* clean up */
aws_http_message_release(request);
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_response_first_byte_timeout_request_override) {
(void)ctx;
struct tester tester;
ASSERT_SUCCESS(s_tester_init(&tester, allocator));
/* with test channel, we don't use bootstrap to propagate the settings. Hack around it by set the setting directly
*/
size_t connection_response_first_byte_timeout_ms = 1000;
tester.connection->client_data->response_first_byte_timeout_ms = connection_response_first_byte_timeout_ms;
/* send request */
struct aws_http_header headers[] = {
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Host"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("example.com"),
},
{
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Accept"),
.value = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("*/*"),
},
};
struct aws_http_message *request = s_new_default_get_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_add_header_array(request, headers, AWS_ARRAY_SIZE(headers)));
size_t response_first_byte_timeout_ms = 100;
int completion_error_code = 0;
struct aws_http_make_request_options opt = {
.self_size = sizeof(opt),
.request = request,
.response_first_byte_timeout_ms = response_first_byte_timeout_ms,
.on_complete = s_on_complete,
.user_data = &completion_error_code,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.connection, &opt);
ASSERT_NOT_NULL(stream);
ASSERT_SUCCESS(aws_http_stream_activate(stream));
testing_channel_drain_queued_tasks(&tester.testing_channel);
aws_thread_current_sleep(
aws_timestamp_convert(response_first_byte_timeout_ms + 1, AWS_TIMESTAMP_MILLIS, AWS_TIMESTAMP_NANOS, NULL));
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* Check if the testing channel has shut down. */
ASSERT_TRUE(testing_channel_is_shutdown_completed(&tester.testing_channel));
ASSERT_INT_EQUALS(AWS_ERROR_HTTP_RESPONSE_FIRST_BYTE_TIMEOUT, completion_error_code);
/* clean up */
aws_http_message_release(request);
aws_http_stream_release(stream);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/**
* Once upon a time, when the connection received data from the channel, we buffer the data in the connection level,
and
* then send it to the stream.
* When stream has no window left to receive the data from connection, the data will be kept in the buffer.
* If the connection starts to shutdown before stream opens its window, the buffered data will be throw away because
of
* shutdown process.
* But, the connection actually received the full response, which is an unexpected behavior for the
* stream to report connection close with error.
*/
H1_CLIENT_TEST_CASE(h1_client_connection_close_before_request_finishes_with_buffer) {
(void)ctx;
struct tester_options tester_opts = {
.manual_window_management = true,
.initial_stream_window_size = 5,
.read_buffer_capacity = SIZE_MAX,
};
struct tester tester;
ASSERT_SUCCESS(s_tester_init_ex(&tester, allocator, &tester_opts));
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("GET")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
/* send head of request */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* send close connection response */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 200 OK\r\n"
"Content-Length: 9\r\n"
"\r\n"
"Call Momo"));
/* All the response data has been processed, buffered in the connection level. */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Some handler starts the shutdown process, while the stream still has 0 window left. (eg: socket reads EOF, TLS
* reads graceful shutdown) */
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_UNKNOWN);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* We should not complete the stream, since the window for the stream is still 0. */
ASSERT_FALSE(stream_tester.complete);
/* Updated the window after shutdown happens */
aws_http_stream_update_window(stream_tester.stream, 5);
/* Wait for channel to finish shutdown */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
ASSERT_INT_EQUALS(AWS_ERROR_SUCCESS, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_UINT_EQUALS(1, aws_http_headers_count(stream_tester.response_headers));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 0, "Content-Length", "9"));
ASSERT_TRUE(aws_byte_buf_eq_c_str(&stream_tester.response_body, "Call Momo"));
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_connection_close_before_request_finishes_with_buffer_incomplete_response) {
(void)ctx;
struct tester_options tester_opts = {
.manual_window_management = true,
.initial_stream_window_size = 5,
.read_buffer_capacity = SIZE_MAX,
};
struct tester tester;
ASSERT_SUCCESS(s_tester_init_ex(&tester, allocator, &tester_opts));
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("GET")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
/* send head of request */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* Send the incomplete response. */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 200 OK\r\n"
"Content-Length: 9\r\n"
"\r\n"
"Call Mo"));
/* All the response data has been processed, buffered in the connection level. */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Some handler starts the shutdown process, while the stream still has 0 window left. (eg: socket reads EOF, TLS
* reads graceful shutdown) */
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_UNIMPLEMENTED);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* We should not complete the stream, since the window for the stream is still 0. */
ASSERT_FALSE(stream_tester.complete);
/* Updated the window after shutdown happens */
aws_http_stream_update_window(stream_tester.stream, 5);
/* Wait for channel to finish shutdown */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
/* Fail */
ASSERT_INT_EQUALS(AWS_ERROR_UNIMPLEMENTED, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_UINT_EQUALS(1, aws_http_headers_count(stream_tester.response_headers));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 0, "Content-Length", "9"));
/* Incomplete response received */
ASSERT_TRUE(aws_byte_buf_eq_c_str(&stream_tester.response_body, "Call Mo"));
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
static int s_h1_client_connection_close_before_request_finishes_with_buffer_force_shutdown_helper(
struct aws_allocator *allocator,
bool connection_close) {
struct tester_options tester_opts = {
.manual_window_management = true,
.initial_stream_window_size = 5,
.read_buffer_capacity = SIZE_MAX,
};
struct tester tester;
ASSERT_SUCCESS(s_tester_init_ex(&tester, allocator, &tester_opts));
struct aws_http_message *request = aws_http_message_new_request(allocator);
ASSERT_NOT_NULL(request);
ASSERT_SUCCESS(aws_http_message_set_request_method(request, aws_byte_cursor_from_c_str("GET")));
ASSERT_SUCCESS(aws_http_message_set_request_path(request, aws_byte_cursor_from_c_str("/plan.txt")));
struct client_stream_tester stream_tester;
ASSERT_SUCCESS(s_stream_tester_init(&stream_tester, &tester, request));
/* send head of request */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Ensure the request can be destroyed after request is sent */
aws_http_message_destroy(request);
/* Send the incomplete response. */
ASSERT_SUCCESS(testing_channel_push_read_str(
&tester.testing_channel,
"HTTP/1.1 200 OK\r\n"
"Content-Length: 9\r\n"
"\r\n"
"Call Mo"));
/* All the response data has been processed, buffered in the connection level. */
testing_channel_run_currently_queued_tasks(&tester.testing_channel);
/* Some handler starts the shutdown process, while the stream still has 0 window left. (eg: socket reads EOF, TLS
* reads graceful shutdown) */
aws_channel_shutdown(tester.testing_channel.channel, AWS_ERROR_UNIMPLEMENTED);
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* We should not complete the stream, since the window for the stream is still 0. */
ASSERT_FALSE(stream_tester.complete);
/* Don't update the window, just cancel the stream should also complete the stream. */
if (connection_close) {
aws_http_connection_close(tester.connection);
} else {
/* Stream cancel error will be override as the connection shutdown happens before cancel. */
aws_http_stream_cancel(stream_tester.stream, AWS_ERROR_UNKNOWN);
}
/* Wait for channel to finish shutdown */
testing_channel_drain_queued_tasks(&tester.testing_channel);
/* check result */
ASSERT_TRUE(stream_tester.complete);
/* Fail */
ASSERT_INT_EQUALS(AWS_ERROR_UNIMPLEMENTED, stream_tester.on_complete_error_code);
ASSERT_INT_EQUALS(200, stream_tester.response_status);
ASSERT_UINT_EQUALS(1, aws_http_headers_count(stream_tester.response_headers));
ASSERT_SUCCESS(s_check_header(stream_tester.response_headers, 0, "Content-Length", "9"));
/* Incomplete response received */
ASSERT_TRUE(aws_byte_buf_eq_c_str(&stream_tester.response_body, "Call "));
/* clean up */
client_stream_tester_clean_up(&stream_tester);
ASSERT_SUCCESS(s_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
H1_CLIENT_TEST_CASE(h1_client_connection_close_before_request_finishes_with_buffer_force_shutdown) {
(void)ctx;
return s_h1_client_connection_close_before_request_finishes_with_buffer_force_shutdown_helper(allocator, true);
}
H1_CLIENT_TEST_CASE(h1_client_connection_close_before_request_finishes_with_buffer_stream_cancel) {
(void)ctx;
return s_h1_client_connection_close_before_request_finishes_with_buffer_force_shutdown_helper(allocator, false);
}
|