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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/http/connection.h>
#include <aws/http/private/connection_impl.h>
#include <aws/http/private/h1_stream.h>
#include <aws/http/private/proxy_impl.h>
#include <aws/http/proxy.h>
#include <aws/io/uri.h>
#include <aws/common/string.h>
#include <aws/testing/aws_test_harness.h>
#include <aws/testing/io_testing_channel.h>
#include "proxy_test_helper.h"
static struct proxy_tester tester;
static char *s_host_name = "aws.amazon.com";
static uint32_t s_port = 80;
static char *s_proxy_host_name = "www.myproxy.hmm";
static uint32_t s_proxy_port = 777;
AWS_STATIC_STRING_FROM_LITERAL(s_mock_request_method, "GET");
AWS_STATIC_STRING_FROM_LITERAL(s_mock_request_path, "/");
AWS_STATIC_STRING_FROM_LITERAL(s_mock_request_host, "aws.amazon.com");
AWS_STATIC_STRING_FROM_LITERAL(s_expected_basic_auth_header_name, "Proxy-Authorization");
AWS_STATIC_STRING_FROM_LITERAL(s_expected_basic_auth_header_value, "Basic U29tZVVzZXI6U3VwZXJTZWNyZXQ=");
AWS_STATIC_STRING_FROM_LITERAL(s_mock_request_username, "SomeUser");
AWS_STATIC_STRING_FROM_LITERAL(s_mock_request_password, "SuperSecret");
/*
* Request utility functions
*/
struct aws_http_message *s_build_dummy_http_request(
struct aws_allocator *allocator,
struct aws_byte_cursor method,
struct aws_byte_cursor path,
struct aws_byte_cursor host) {
struct aws_http_message *request = aws_http_message_new_request(allocator);
aws_http_message_set_request_method(request, method);
aws_http_message_set_request_path(request, path);
struct aws_http_header host_header = {
.name = aws_byte_cursor_from_c_str("Host"),
.value = host,
};
aws_http_message_add_header(request, host_header);
struct aws_http_header accept_header = {
.name = aws_byte_cursor_from_c_str("Accept"),
.value = aws_byte_cursor_from_c_str("*/*"),
};
aws_http_message_add_header(request, accept_header);
return request;
}
static struct aws_http_message *s_build_http_request(struct aws_allocator *allocator) {
return s_build_dummy_http_request(
allocator,
aws_byte_cursor_from_string(s_mock_request_method),
aws_byte_cursor_from_string(s_mock_request_path),
aws_byte_cursor_from_string(s_mock_request_host));
}
static bool s_is_header_in_request(struct aws_http_message *request, struct aws_byte_cursor header_name) {
size_t header_count = aws_http_message_get_header_count(request);
for (size_t i = 0; i < header_count; ++i) {
struct aws_http_header current_header;
ASSERT_SUCCESS(aws_http_message_get_header(request, ¤t_header, i));
if (aws_byte_cursor_eq_ignore_case(¤t_header.name, &header_name)) {
return true;
}
}
return false;
}
static bool s_is_header_and_value_in_request(struct aws_http_message *request, struct aws_http_header *header) {
size_t header_count = aws_http_message_get_header_count(request);
for (size_t i = 0; i < header_count; ++i) {
struct aws_http_header current_header;
ASSERT_SUCCESS(aws_http_message_get_header(request, ¤t_header, i));
if (aws_byte_cursor_eq_ignore_case(¤t_header.name, &header->name) &&
aws_byte_cursor_eq(¤t_header.value, &header->value)) {
return true;
}
}
return false;
}
/*
* TLS mock and vtable
*/
static int s_test_proxy_setup_client_tls(
struct aws_channel_slot *right_of_slot,
struct aws_tls_connection_options *tls_options) {
/*
* apply a dummy handler, but don't kick off negotiation, instead invoke success/failure immediately.
* The tls handler being in a newly-created state won't affect the proxied tests which don't try and send
* data through it.
*/
AWS_FATAL_ASSERT(right_of_slot != NULL);
struct aws_channel *channel = right_of_slot->channel;
struct aws_allocator *allocator = right_of_slot->alloc;
struct aws_channel_slot *tls_slot = aws_channel_slot_new(channel);
if (!tls_slot) {
return AWS_OP_ERR;
}
struct aws_channel_handler *tls_handler = aws_tls_client_handler_new(allocator, tls_options, tls_slot);
if (!tls_handler) {
aws_mem_release(allocator, tls_slot);
return AWS_OP_ERR;
}
aws_channel_slot_insert_right(right_of_slot, tls_slot);
if (aws_channel_slot_set_handler(tls_slot, tls_handler) != AWS_OP_SUCCESS) {
return AWS_OP_ERR;
}
if (tester.failure_type == PTFT_TLS_NEGOTIATION) {
tls_options->on_negotiation_result(NULL, NULL, AWS_ERROR_UNKNOWN, tls_options->user_data);
} else {
tls_options->on_negotiation_result(NULL, NULL, AWS_ERROR_SUCCESS, tls_options->user_data);
}
return AWS_OP_SUCCESS;
}
struct aws_http_proxy_system_vtable s_proxy_table_for_tls = {
.aws_channel_setup_client_tls = s_test_proxy_setup_client_tls,
};
/*
* Channel setup mock and vtable
*/
static int s_test_aws_proxy_new_socket_channel(struct aws_socket_channel_bootstrap_options *channel_options) {
aws_mutex_lock(&tester.wait_lock);
/*
* Record where we were trying to connect to
*/
struct aws_byte_cursor host_cursor = aws_byte_cursor_from_c_str(channel_options->host_name);
aws_byte_buf_append_dynamic(&tester.connection_host_name, &host_cursor);
tester.connection_port = channel_options->port;
/*
* Conditional failure logic based on how the test was configured to fail
*/
if (tester.failure_type == PTFT_CHANNEL) {
tester.wait_result = AWS_ERROR_UNKNOWN;
} else if (tester.failure_type != PTFT_CONNECTION) {
ASSERT_SUCCESS(proxy_tester_create_testing_channel_connection(&tester, channel_options->user_data));
}
aws_mutex_unlock(&tester.wait_lock);
/*
* More conditional failure logic based on how the test was configured to fail
*/
if (tester.failure_type == PTFT_CHANNEL) {
return AWS_OP_ERR;
}
if (tester.failure_type == PTFT_CONNECTION) {
channel_options->setup_callback(tester.client_bootstrap, AWS_ERROR_UNKNOWN, NULL, channel_options->user_data);
return AWS_OP_SUCCESS;
}
/*
* We're not supposed to fail yet, so let's keep going
*/
struct aws_http_client_bootstrap *http_bootstrap = channel_options->user_data;
http_bootstrap->on_setup(tester.client_connection, AWS_ERROR_SUCCESS, http_bootstrap->user_data);
struct testing_channel *channel = proxy_tester_get_current_channel(&tester);
if (tester.failure_type == PTFT_PROXY_STRATEGY) {
testing_channel_drain_queued_tasks(channel);
} else {
testing_channel_run_currently_queued_tasks(channel);
}
if (tester.failure_type == PTFT_NONE || tester.failure_type == PTFT_CONNECT_REQUEST ||
tester.failure_type == PTFT_TLS_NEGOTIATION) {
if (tester.proxy_options.connection_type == AWS_HPCT_HTTP_TUNNEL) {
/* For tunnel proxies, send the CONNECT request and response */
ASSERT_SUCCESS(proxy_tester_verify_connect_request(&tester));
ASSERT_SUCCESS(proxy_tester_send_connect_response(&tester));
}
}
return AWS_OP_SUCCESS;
}
struct aws_http_connection_system_vtable s_proxy_connection_system_vtable = {
.aws_client_bootstrap_new_socket_channel = s_test_aws_proxy_new_socket_channel,
};
struct mocked_proxy_test_options {
enum proxy_tester_test_mode test_mode;
enum proxy_tester_failure_type failure_type;
struct aws_http_proxy_strategy *proxy_strategy;
enum aws_http_proxy_authentication_type auth_type;
struct aws_byte_cursor legacy_basic_username;
struct aws_byte_cursor legacy_basic_password;
uint32_t mocked_response_count;
struct aws_byte_cursor *mocked_responses;
};
/*
* Basic setup common to all mocked proxy tests - set vtables, options, call init, wait for setup completion
*/
static int s_setup_proxy_test(struct aws_allocator *allocator, struct mocked_proxy_test_options *config) {
aws_http_connection_set_system_vtable(&s_proxy_connection_system_vtable);
aws_http_proxy_system_set_vtable(&s_proxy_table_for_tls);
struct aws_http_proxy_options proxy_options = {
.connection_type = (config->test_mode == PTTM_HTTP_FORWARD) ? AWS_HPCT_HTTP_FORWARD : AWS_HPCT_HTTP_TUNNEL,
.host = aws_byte_cursor_from_c_str(s_proxy_host_name),
.port = s_proxy_port,
.proxy_strategy = config->proxy_strategy,
.auth_type = config->auth_type,
.auth_username = config->legacy_basic_username,
.auth_password = config->legacy_basic_password,
};
struct proxy_tester_options options = {
.alloc = allocator,
.proxy_options = &proxy_options,
.host = aws_byte_cursor_from_c_str(s_host_name),
.port = s_port,
.test_mode = config->test_mode,
.failure_type = config->failure_type,
.desired_connect_response_count = config->mocked_response_count,
.desired_connect_responses = config->mocked_responses,
};
ASSERT_SUCCESS(proxy_tester_init(&tester, &options));
proxy_tester_wait(&tester, proxy_tester_connection_setup_pred);
return AWS_OP_SUCCESS;
}
/*
* For forwarding proxy connections:
* If we do pass in proxy options, verify we try and connect to the proxy
*/
static int s_test_http_forwarding_proxy_connection_proxy_target(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_FORWARD,
.failure_type = PTFT_NONE,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_forwarding_proxy_connection_proxy_target, s_test_http_forwarding_proxy_connection_proxy_target);
/*
* For forwarding proxy connections:
* Verify a channel creation failure cleans up properly
*/
static int s_test_http_forwarding_proxy_connection_channel_failure(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_FORWARD,
.failure_type = PTFT_CHANNEL,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.wait_result != AWS_ERROR_SUCCESS);
ASSERT_TRUE(tester.client_connection == NULL);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(
test_http_forwarding_proxy_connection_channel_failure,
s_test_http_forwarding_proxy_connection_channel_failure);
/*
* For forwarding proxy connections:
* Verify a connection establishment failure cleans up properly
*/
static int s_test_http_forwarding_proxy_connection_connect_failure(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_FORWARD,
.failure_type = PTFT_CONNECTION,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.wait_result != AWS_ERROR_SUCCESS);
ASSERT_TRUE(tester.client_connection == NULL);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(
test_http_forwarding_proxy_connection_connect_failure,
s_test_http_forwarding_proxy_connection_connect_failure);
/*
* For tls-enabled tunneling proxy connections:
* Test the happy path by verifying CONNECT request, tls upgrade attempt
*/
static int s_test_https_tunnel_proxy_connection_success(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTPS_TUNNEL,
.failure_type = PTFT_NONE,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.client_connection != NULL);
ASSERT_TRUE(tester.wait_result == AWS_ERROR_SUCCESS);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_https_tunnel_proxy_connection_success, s_test_https_tunnel_proxy_connection_success);
/*
* For plaintext tunneling proxy connections:
* Test the happy path by verifying CONNECT request
*/
static int s_test_http_tunnel_proxy_connection_success(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_NONE,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.client_connection != NULL);
ASSERT_TRUE(tester.wait_result == AWS_ERROR_SUCCESS);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_tunnel_proxy_connection_success, s_test_http_tunnel_proxy_connection_success);
/*
* For tls-enabled tunneling proxy connections:
* If the CONNECT request fails, verify error propagation and cleanup
*/
static int s_test_https_tunnel_proxy_connection_failure_connect(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTPS_TUNNEL,
.failure_type = PTFT_CONNECT_REQUEST,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.client_connection == NULL);
ASSERT_TRUE(tester.wait_result != AWS_ERROR_SUCCESS);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_https_tunnel_proxy_connection_failure_connect, s_test_https_tunnel_proxy_connection_failure_connect);
/*
* For plaintext tunneling proxy connections:
* If the CONNECT request fails, verify error propagation and cleanup
*/
static int s_test_http_tunnel_proxy_connection_failure_connect(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_CONNECT_REQUEST,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.client_connection == NULL);
ASSERT_TRUE(tester.wait_result != AWS_ERROR_SUCCESS);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_tunnel_proxy_connection_failure_connect, s_test_http_tunnel_proxy_connection_failure_connect);
/*
* For tls-enabled tunneling proxy connections:
* If the TLS upgrade fails, verify error propagation and cleanup
*/
static int s_test_https_tunnel_proxy_connection_failure_tls(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTPS_TUNNEL,
.failure_type = PTFT_TLS_NEGOTIATION,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_NULL(tester.client_connection);
ASSERT_TRUE(AWS_ERROR_SUCCESS != tester.wait_result);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_https_tunnel_proxy_connection_failure_tls, s_test_https_tunnel_proxy_connection_failure_tls);
static int s_verify_transformed_request(
struct aws_http_message *untransformed_request,
struct aws_http_message *transformed_request,
struct aws_allocator *allocator) {
/* method shouldn't change */
struct aws_byte_cursor method_cursor;
ASSERT_SUCCESS(aws_http_message_get_request_method(transformed_request, &method_cursor));
struct aws_byte_cursor starting_method_cursor;
ASSERT_SUCCESS(aws_http_message_get_request_method(untransformed_request, &starting_method_cursor));
ASSERT_TRUE(aws_byte_cursor_eq(&method_cursor, &starting_method_cursor));
/* path should be the full uri */
struct aws_byte_cursor path;
ASSERT_SUCCESS(aws_http_message_get_request_path(transformed_request, &path));
struct aws_uri uri;
ASSERT_SUCCESS(aws_uri_init_parse(&uri, allocator, &path));
struct aws_byte_cursor expected_scheme = aws_byte_cursor_from_c_str("http");
ASSERT_TRUE(aws_byte_cursor_eq(aws_uri_scheme(&uri), &expected_scheme));
struct aws_byte_cursor expected_host = aws_byte_cursor_from_string(s_mock_request_host);
ASSERT_TRUE(aws_byte_cursor_eq(aws_uri_host_name(&uri), &expected_host));
struct aws_byte_cursor expected_query = aws_byte_cursor_from_c_str("");
ASSERT_TRUE(aws_byte_cursor_eq(aws_uri_query_string(&uri), &expected_query));
struct aws_byte_cursor expected_path = aws_byte_cursor_from_c_str("/");
ASSERT_TRUE(aws_byte_cursor_eq(aws_uri_path(&uri), &expected_path));
/* all old headers should still be present */
size_t untransformed_header_count = aws_http_message_get_header_count(untransformed_request);
for (size_t i = 0; i < untransformed_header_count; ++i) {
struct aws_http_header header;
ASSERT_SUCCESS(aws_http_message_get_header(untransformed_request, &header, i));
ASSERT_TRUE(s_is_header_and_value_in_request(transformed_request, &header));
}
aws_uri_clean_up(&uri);
return AWS_OP_SUCCESS;
}
static int s_do_http_forwarding_proxy_request_transform_test(
struct aws_allocator *allocator,
struct mocked_proxy_test_options *test_options,
int (*transformed_request_verifier_fn)(struct aws_http_message *)) {
ASSERT_SUCCESS(s_setup_proxy_test(allocator, test_options));
struct aws_http_message *untransformed_request = s_build_http_request(allocator);
struct aws_http_message *request = s_build_http_request(allocator);
struct aws_http_make_request_options request_options = {
.self_size = sizeof(request_options),
.request = request,
.user_data = &tester,
};
struct aws_http_stream *stream = aws_http_connection_make_request(tester.client_connection, &request_options);
ASSERT_NOT_NULL(stream);
aws_http_stream_activate(stream);
struct testing_channel *channel = proxy_tester_get_current_channel(&tester);
testing_channel_run_currently_queued_tasks(channel);
s_verify_transformed_request(untransformed_request, request, allocator);
if (transformed_request_verifier_fn != NULL) {
ASSERT_SUCCESS(transformed_request_verifier_fn(request));
}
/* double release the stream because the dummy connection doesn't actually process (and release) it */
aws_http_stream_release(stream);
aws_http_message_destroy(request);
aws_http_message_destroy(untransformed_request);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
/*
* If we do pass in proxy options, verify requests get properly transformed
*/
static int s_test_http_forwarding_proxy_request_transform(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_FORWARD,
.failure_type = PTFT_NONE,
.proxy_strategy = NULL,
};
ASSERT_SUCCESS(s_do_http_forwarding_proxy_request_transform_test(allocator, &options, NULL));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_forwarding_proxy_request_transform, s_test_http_forwarding_proxy_request_transform);
static int s_check_for_basic_auth_header(struct aws_http_message *transformed_request) {
/* Check for basic auth header */
struct aws_http_header auth_header;
auth_header.name = aws_byte_cursor_from_string(s_expected_basic_auth_header_name);
auth_header.value = aws_byte_cursor_from_string(s_expected_basic_auth_header_value);
ASSERT_TRUE(s_is_header_and_value_in_request(transformed_request, &auth_header));
return AWS_OP_SUCCESS;
}
/*
* If we do pass in proxy options, verify requests get properly transformed with basic authentication
*/
static int s_test_http_forwarding_proxy_request_transform_basic_auth(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_proxy_strategy_basic_auth_options config = {
.proxy_connection_type = AWS_HPCT_HTTP_FORWARD,
.user_name = aws_byte_cursor_from_string(s_mock_request_username),
.password = aws_byte_cursor_from_string(s_mock_request_password),
};
struct aws_http_proxy_strategy *proxy_strategy = aws_http_proxy_strategy_new_basic_auth(allocator, &config);
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_FORWARD,
.failure_type = PTFT_NONE,
.proxy_strategy = proxy_strategy,
};
ASSERT_SUCCESS(
s_do_http_forwarding_proxy_request_transform_test(allocator, &options, s_check_for_basic_auth_header));
aws_http_proxy_strategy_release(proxy_strategy);
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(
test_http_forwarding_proxy_request_transform_basic_auth,
s_test_http_forwarding_proxy_request_transform_basic_auth);
static int s_test_http_forwarding_proxy_request_transform_legacy_basic_auth(
struct aws_allocator *allocator,
void *ctx) {
(void)ctx;
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_FORWARD,
.failure_type = PTFT_NONE,
.auth_type = AWS_HPAT_BASIC,
.legacy_basic_username = aws_byte_cursor_from_string(s_mock_request_username),
.legacy_basic_password = aws_byte_cursor_from_string(s_mock_request_password),
};
ASSERT_SUCCESS(
s_do_http_forwarding_proxy_request_transform_test(allocator, &options, s_check_for_basic_auth_header));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(
test_http_forwarding_proxy_request_transform_legacy_basic_auth,
s_test_http_forwarding_proxy_request_transform_legacy_basic_auth);
AWS_STATIC_STRING_FROM_LITERAL(s_mock_kerberos_token_value, "abcdefABCDEF123");
static struct aws_string *s_mock_aws_http_proxy_negotiation_kerberos_get_token_sync_fn(
void *user_data,
int *out_error_code) {
struct aws_allocator *allocator = user_data;
*out_error_code = AWS_ERROR_SUCCESS;
return aws_string_new_from_string(allocator, s_mock_kerberos_token_value);
}
AWS_STATIC_STRING_FROM_LITERAL(s_expected_auth_header_name, "Proxy-Authorization");
AWS_STATIC_STRING_FROM_LITERAL(s_expected_kerberos_auth_header_value, "Negotiate abcdefABCDEF123");
static int s_verify_kerberos_connect_request(struct aws_http_message *request) {
/* Check for auth header */
struct aws_http_header auth_header;
auth_header.name = aws_byte_cursor_from_string(s_expected_auth_header_name);
auth_header.value = aws_byte_cursor_from_string(s_expected_kerberos_auth_header_value);
ASSERT_TRUE(s_is_header_and_value_in_request(request, &auth_header));
return AWS_OP_SUCCESS;
}
/*
* Verify requests get properly transformed with kerberos strategy
*/
static int s_test_http_proxy_request_transform_kerberos(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_proxy_strategy_tunneling_kerberos_options config = {
.get_token = s_mock_aws_http_proxy_negotiation_kerberos_get_token_sync_fn,
.get_token_user_data = allocator,
};
struct aws_http_proxy_strategy *kerberos_strategy =
aws_http_proxy_strategy_new_tunneling_kerberos(allocator, &config);
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_NONE,
.proxy_strategy = kerberos_strategy,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.client_connection != NULL);
ASSERT_TRUE(tester.wait_result == AWS_ERROR_SUCCESS);
ASSERT_INT_EQUALS(1, aws_array_list_length(&tester.connect_requests));
struct aws_http_message *connect_request = NULL;
aws_array_list_get_at(&tester.connect_requests, &connect_request, 0);
ASSERT_SUCCESS(s_verify_kerberos_connect_request(connect_request));
aws_http_proxy_strategy_release(kerberos_strategy);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_proxy_request_transform_kerberos, s_test_http_proxy_request_transform_kerberos);
static struct aws_string *s_mock_aws_http_proxy_negotiation_kerberos_get_token_sync_failure_fn(
void *user_data,
int *out_error_code) {
(void)user_data;
*out_error_code = AWS_ERROR_UNKNOWN;
return NULL;
}
static int s_test_http_proxy_kerberos_token_failure(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_proxy_strategy_tunneling_kerberos_options config = {
.get_token = s_mock_aws_http_proxy_negotiation_kerberos_get_token_sync_failure_fn,
.get_token_user_data = NULL,
};
struct aws_http_proxy_strategy *kerberos_strategy =
aws_http_proxy_strategy_new_tunneling_kerberos(allocator, &config);
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_PROXY_STRATEGY,
.proxy_strategy = kerberos_strategy,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.client_connection == NULL);
ASSERT_TRUE(tester.wait_result == AWS_ERROR_UNKNOWN);
aws_http_proxy_strategy_release(kerberos_strategy);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_proxy_kerberos_token_failure, s_test_http_proxy_kerberos_token_failure);
static int s_test_http_proxy_kerberos_connect_failure(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_proxy_strategy_tunneling_kerberos_options config = {
.get_token = s_mock_aws_http_proxy_negotiation_kerberos_get_token_sync_fn,
.get_token_user_data = allocator,
};
struct aws_http_proxy_strategy *kerberos_strategy =
aws_http_proxy_strategy_new_tunneling_kerberos(allocator, &config);
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_CONNECT_REQUEST,
.proxy_strategy = kerberos_strategy,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.client_connection == NULL);
ASSERT_TRUE(tester.wait_result == AWS_ERROR_HTTP_PROXY_CONNECT_FAILED);
aws_http_proxy_strategy_release(kerberos_strategy);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_proxy_kerberos_connect_failure, s_test_http_proxy_kerberos_connect_failure);
AWS_STATIC_STRING_FROM_LITERAL(s_mock_ntlm_token_value, "NTLM_TOKEN");
AWS_STATIC_STRING_FROM_LITERAL(s_mock_ntlm_challenge_token_value, "NTLM_CHALLENGE_TOKEN");
static struct aws_string *s_mock_aws_http_proxy_negotiation_ntlm_get_challenge_token_sync_fn(
void *user_data,
const struct aws_byte_cursor *challenge_value,
int *out_error_code) {
(void)challenge_value;
struct aws_allocator *allocator = user_data;
*out_error_code = AWS_ERROR_SUCCESS;
return aws_string_new_from_string(allocator, s_mock_ntlm_challenge_token_value);
}
static struct aws_string *s_mock_aws_http_proxy_negotiation_ntlm_get_token_sync_fn(
void *user_data,
int *out_error_code) {
struct aws_allocator *allocator = user_data;
*out_error_code = AWS_ERROR_SUCCESS;
return aws_string_new_from_string(allocator, s_mock_ntlm_token_value);
}
static int s_verify_identity_connect_request(struct aws_http_message *request) {
ASSERT_FALSE(s_is_header_in_request(request, aws_byte_cursor_from_string(s_expected_auth_header_name)));
return AWS_OP_SUCCESS;
}
static struct aws_http_proxy_strategy *s_create_adaptive_strategy(struct aws_allocator *allocator) {
struct aws_http_proxy_strategy_tunneling_kerberos_options kerberos_config = {
.get_token = s_mock_aws_http_proxy_negotiation_kerberos_get_token_sync_fn,
.get_token_user_data = allocator,
};
struct aws_http_proxy_strategy_tunneling_ntlm_options ntlm_config = {
.get_token = s_mock_aws_http_proxy_negotiation_ntlm_get_token_sync_fn,
.get_challenge_token = s_mock_aws_http_proxy_negotiation_ntlm_get_challenge_token_sync_fn,
.get_challenge_token_user_data = allocator,
};
struct aws_http_proxy_strategy_tunneling_adaptive_options config = {
.ntlm_options = &ntlm_config,
.kerberos_options = &kerberos_config,
};
return aws_http_proxy_strategy_new_tunneling_adaptive(allocator, &config);
}
static int s_test_http_proxy_adaptive_identity_success(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_proxy_strategy *adaptive_strategy = s_create_adaptive_strategy(allocator);
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_NONE,
.proxy_strategy = adaptive_strategy,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connection_attempt_was_to_proxy(
&tester, aws_byte_cursor_from_c_str(s_proxy_host_name), s_proxy_port));
ASSERT_TRUE(tester.client_connection != NULL);
ASSERT_TRUE(tester.wait_result == AWS_ERROR_SUCCESS);
ASSERT_INT_EQUALS(1, aws_array_list_length(&tester.connect_requests));
struct aws_http_message *connect_request = NULL;
aws_array_list_get_at(&tester.connect_requests, &connect_request, 0);
ASSERT_SUCCESS(s_verify_identity_connect_request(connect_request));
aws_http_proxy_strategy_release(adaptive_strategy);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_proxy_adaptive_identity_success, s_test_http_proxy_adaptive_identity_success);
AWS_STATIC_STRING_FROM_LITERAL(s_unauthorized_response, "HTTP/1.0 407 Unauthorized\r\n\r\n");
AWS_STATIC_STRING_FROM_LITERAL(s_good_response, "HTTP/1.0 200 Connection established\r\nconnection: close\r\n\r\n");
typedef int (*aws_proxy_test_verify_connect_fn)(struct aws_http_message *);
static int s_verify_connect_requests(aws_proxy_test_verify_connect_fn verify_functions[], size_t function_count) {
size_t connect_requests = aws_array_list_length(&tester.connect_requests);
ASSERT_INT_EQUALS(function_count, connect_requests);
for (size_t i = 0; i < connect_requests; ++i) {
struct aws_http_message *request = NULL;
aws_array_list_get_at(&tester.connect_requests, &request, i);
ASSERT_SUCCESS(verify_functions[i](request));
}
return AWS_OP_SUCCESS;
}
static int s_test_http_proxy_adaptive_kerberos_success(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_proxy_strategy *adaptive_strategy = s_create_adaptive_strategy(allocator);
struct aws_byte_cursor first_response = aws_byte_cursor_from_string(s_unauthorized_response);
struct aws_byte_cursor second_response = aws_byte_cursor_from_string(s_good_response);
struct aws_byte_cursor connect_responses[] = {
first_response,
second_response,
};
aws_proxy_test_verify_connect_fn verifiers[] = {
s_verify_identity_connect_request,
s_verify_kerberos_connect_request,
};
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_NONE,
.proxy_strategy = adaptive_strategy,
.mocked_response_count = 2,
.mocked_responses = connect_responses,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_wait(&tester, proxy_tester_connection_setup_pred));
ASSERT_TRUE(tester.client_connection != NULL);
ASSERT_TRUE(tester.wait_result == AWS_ERROR_SUCCESS);
s_verify_connect_requests(verifiers, 2);
aws_http_proxy_strategy_release(adaptive_strategy);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_proxy_adaptive_kerberos_success, s_test_http_proxy_adaptive_kerberos_success);
AWS_STATIC_STRING_FROM_LITERAL(s_expected_ntlm_token_auth_header_value, "NTLM NTLM_TOKEN");
static int s_verify_ntlm_connect_token_request(struct aws_http_message *request) {
/* Check for auth header */
struct aws_http_header auth_header;
auth_header.name = aws_byte_cursor_from_string(s_expected_auth_header_name);
auth_header.value = aws_byte_cursor_from_string(s_expected_ntlm_token_auth_header_value);
ASSERT_TRUE(s_is_header_and_value_in_request(request, &auth_header));
return AWS_OP_SUCCESS;
}
AWS_STATIC_STRING_FROM_LITERAL(s_expected_ntlm_challenge_token_auth_header_value, "NTLM NTLM_CHALLENGE_TOKEN");
static int s_verify_ntlm_connect_challenge_token_request(struct aws_http_message *request) {
/* Check for auth header */
struct aws_http_header auth_header;
auth_header.name = aws_byte_cursor_from_string(s_expected_auth_header_name);
auth_header.value = aws_byte_cursor_from_string(s_expected_ntlm_challenge_token_auth_header_value);
ASSERT_TRUE(s_is_header_and_value_in_request(request, &auth_header));
return AWS_OP_SUCCESS;
}
AWS_STATIC_STRING_FROM_LITERAL(s_ntlm_response, "HTTP/1.0 407 Bad\r\nProxy-Authenticate: TestChallenge\r\n\r\n");
static int s_test_http_proxy_adaptive_ntlm_success(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_proxy_strategy *adaptive_strategy = s_create_adaptive_strategy(allocator);
struct aws_byte_cursor bad_response = aws_byte_cursor_from_string(s_ntlm_response);
struct aws_byte_cursor good_response = aws_byte_cursor_from_string(s_good_response);
struct aws_byte_cursor connect_responses[] = {
bad_response,
bad_response,
bad_response,
good_response,
};
aws_proxy_test_verify_connect_fn verifiers[] = {
s_verify_identity_connect_request,
s_verify_kerberos_connect_request,
s_verify_ntlm_connect_token_request,
s_verify_ntlm_connect_challenge_token_request,
};
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_NONE,
.proxy_strategy = adaptive_strategy,
.mocked_response_count = 4,
.mocked_responses = connect_responses,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connect_request(&tester));
ASSERT_SUCCESS(proxy_tester_send_connect_response(&tester));
ASSERT_SUCCESS(proxy_tester_wait(&tester, proxy_tester_connection_setup_pred));
ASSERT_TRUE(tester.client_connection != NULL);
ASSERT_TRUE(tester.wait_result == AWS_ERROR_SUCCESS);
ASSERT_SUCCESS(s_verify_connect_requests(verifiers, 4));
aws_http_proxy_strategy_release(adaptive_strategy);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_proxy_adaptive_ntlm_success, s_test_http_proxy_adaptive_ntlm_success);
static int s_test_http_proxy_adaptive_failure(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_http_proxy_strategy *adaptive_strategy = s_create_adaptive_strategy(allocator);
struct aws_byte_cursor bad_response = aws_byte_cursor_from_string(s_ntlm_response);
struct aws_byte_cursor connect_responses[] = {
bad_response,
bad_response,
bad_response,
bad_response,
};
aws_proxy_test_verify_connect_fn verifiers[] = {
s_verify_identity_connect_request,
s_verify_kerberos_connect_request,
s_verify_ntlm_connect_token_request,
s_verify_ntlm_connect_challenge_token_request,
};
struct mocked_proxy_test_options options = {
.test_mode = PTTM_HTTP_TUNNEL,
.failure_type = PTFT_NONE,
.proxy_strategy = adaptive_strategy,
.mocked_response_count = 4,
.mocked_responses = connect_responses,
};
ASSERT_SUCCESS(s_setup_proxy_test(allocator, &options));
ASSERT_SUCCESS(proxy_tester_verify_connect_request(&tester));
ASSERT_SUCCESS(proxy_tester_send_connect_response(&tester));
ASSERT_SUCCESS(proxy_tester_wait(&tester, proxy_tester_connection_setup_pred));
ASSERT_TRUE(tester.wait_result == AWS_ERROR_HTTP_PROXY_CONNECT_FAILED);
ASSERT_SUCCESS(s_verify_connect_requests(verifiers, 4));
aws_http_proxy_strategy_release(adaptive_strategy);
ASSERT_SUCCESS(proxy_tester_clean_up(&tester));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_proxy_adaptive_failure, s_test_http_proxy_adaptive_failure);
AWS_STATIC_STRING_FROM_LITERAL(s_rewrite_host, "www.uri.com");
AWS_STATIC_STRING_FROM_LITERAL(s_rewrite_path, "/main/index.html?foo=bar");
AWS_STATIC_STRING_FROM_LITERAL(s_expected_rewritten_path, "http://www.uri.com:80/main/index.html?foo=bar");
static void s_proxy_forwarding_request_rewrite_setup_fn(
struct aws_http_connection *connection,
int error_code,
void *user_data) {
(void)connection;
(void)error_code;
(void)user_data;
}
static void s_proxy_forwarding_request_rewrite_shutdown_fn(
struct aws_http_connection *connection,
int error_code,
void *user_data) {
(void)connection;
(void)error_code;
(void)user_data;
}
/*
* Given some basic request parameters, (method, path, host), builds a simple http request and then applies the proxy
* transform to it
*
* Verifies that the transform's final path matches what was expected
*/
static int s_do_request_rewrite_test(
struct aws_allocator *allocator,
const struct aws_string *method,
const struct aws_string *path,
const struct aws_string *host,
const struct aws_string *expected_path) {
struct aws_http_proxy_options proxy_options = {
.host = aws_byte_cursor_from_c_str(s_proxy_host_name),
.port = s_proxy_port,
};
struct aws_http_client_connection_options connection_options = {
.allocator = allocator,
.host_name = aws_byte_cursor_from_string(s_rewrite_host),
.port = 80,
.proxy_options = &proxy_options,
.on_setup = s_proxy_forwarding_request_rewrite_setup_fn,
.on_shutdown = s_proxy_forwarding_request_rewrite_shutdown_fn,
};
struct aws_http_proxy_user_data *user_data =
aws_http_proxy_user_data_new(allocator, &connection_options, NULL, NULL);
struct aws_http_message *request = s_build_dummy_http_request(
allocator,
aws_byte_cursor_from_string(method),
aws_byte_cursor_from_string(path),
aws_byte_cursor_from_string(host));
ASSERT_SUCCESS(aws_http_rewrite_uri_for_proxy_request(request, user_data));
struct aws_byte_cursor expected_rewritten_path = aws_byte_cursor_from_string(expected_path);
struct aws_byte_cursor rewritten_path;
ASSERT_SUCCESS(aws_http_message_get_request_path(request, &rewritten_path));
ASSERT_TRUE(aws_byte_cursor_eq(&rewritten_path, &expected_rewritten_path));
aws_http_message_destroy(request);
aws_http_proxy_user_data_destroy(user_data);
return AWS_OP_SUCCESS;
}
static int s_test_http_forwarding_proxy_uri_rewrite(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
ASSERT_SUCCESS(s_do_request_rewrite_test(
allocator, s_mock_request_method, s_rewrite_path, s_rewrite_host, s_expected_rewritten_path));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(test_http_forwarding_proxy_uri_rewrite, s_test_http_forwarding_proxy_uri_rewrite);
AWS_STATIC_STRING_FROM_LITERAL(s_options_request_method, "OPTIONS");
AWS_STATIC_STRING_FROM_LITERAL(s_options_star_path, "*");
AWS_STATIC_STRING_FROM_LITERAL(s_expected_rewritten_options_path, "http://www.uri.com:80");
static int s_test_http_forwarding_proxy_uri_rewrite_options_star(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
ASSERT_SUCCESS(s_do_request_rewrite_test(
allocator, s_options_request_method, s_options_star_path, s_rewrite_host, s_expected_rewritten_options_path));
return AWS_OP_SUCCESS;
}
AWS_TEST_CASE(
test_http_forwarding_proxy_uri_rewrite_options_star,
s_test_http_forwarding_proxy_uri_rewrite_options_star);
|