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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/common/encoding.h>
#include <aws/common/file.h>
#include <aws/common/string.h>
#include <aws/testing/aws_test_harness.h>
/* Test cases from rfc4648 for Base 16 Encoding */
static int s_run_hex_encoding_test_case(
struct aws_allocator *allocator,
const char *test_str,
size_t test_str_size,
const char *expected,
size_t expected_size) {
size_t output_size = 0;
ASSERT_SUCCESS(
aws_hex_compute_encoded_len(test_str_size - 1, &output_size),
"compute hex encoded len failed with error %d",
aws_last_error());
ASSERT_INT_EQUALS(expected_size, output_size, "Output size on string should be %d", expected_size);
struct aws_byte_cursor to_encode = aws_byte_cursor_from_array(test_str, test_str_size - 1);
struct aws_byte_buf allocation;
ASSERT_SUCCESS(aws_byte_buf_init(&allocation, allocator, output_size + 2));
memset(allocation.buffer, 0xdd, allocation.capacity);
struct aws_byte_buf output = aws_byte_buf_from_empty_array(allocation.buffer + 1, output_size);
ASSERT_SUCCESS(aws_hex_encode(&to_encode, &output), "encode call should have succeeded");
ASSERT_BIN_ARRAYS_EQUALS(
expected,
expected_size,
output.buffer,
output_size,
"Encode output should have been {%s}, was {%s}.",
expected,
output.buffer);
ASSERT_INT_EQUALS(output_size, output.len);
ASSERT_INT_EQUALS(
(unsigned char)*(allocation.buffer),
(unsigned char)0xdd,
"Write should not have occurred before the start of the buffer.");
ASSERT_INT_EQUALS(
(unsigned char)*(allocation.buffer + output_size + 1),
(unsigned char)0xdd,
"Write should not have occurred after the start of the buffer.");
ASSERT_SUCCESS(
aws_hex_compute_decoded_len(expected_size - 1, &output_size),
"compute hex decoded len failed with error %d",
aws_last_error());
memset(allocation.buffer, 0xdd, allocation.capacity);
ASSERT_INT_EQUALS(test_str_size - 1, output_size, "Output size on string should be %d", test_str_size - 1);
aws_byte_buf_reset(&output, false);
struct aws_byte_cursor expected_buf = aws_byte_cursor_from_array(expected, expected_size - 1);
ASSERT_SUCCESS(aws_hex_decode(&expected_buf, &output), "decode call should have succeeded");
ASSERT_BIN_ARRAYS_EQUALS(
test_str, test_str_size - 1, output.buffer, output_size, "Decode output should have been %s.", test_str);
ASSERT_INT_EQUALS(output_size, output.len);
ASSERT_INT_EQUALS(
(unsigned char)*(allocation.buffer),
(unsigned char)0xdd,
"Write should not have occurred before the start of the buffer.");
ASSERT_INT_EQUALS(
(unsigned char)*(allocation.buffer + output_size + 1),
(unsigned char)0xdd,
"Write should not have occurred after the start of the buffer.");
aws_byte_buf_clean_up(&allocation);
return 0;
}
static int s_hex_encoding_test_case_empty(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "";
char expected[] = "";
return s_run_hex_encoding_test_case(allocator, test_data, sizeof(test_data), expected, sizeof(expected));
}
AWS_TEST_CASE(hex_encoding_test_case_empty_test, s_hex_encoding_test_case_empty)
static int s_hex_encoding_test_case_f(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "f";
char expected[] = "66";
return s_run_hex_encoding_test_case(allocator, test_data, sizeof(test_data), expected, sizeof(expected));
}
AWS_TEST_CASE(hex_encoding_test_case_f_test, s_hex_encoding_test_case_f)
static int s_hex_encoding_test_case_fo(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "fo";
char expected[] = "666f";
return s_run_hex_encoding_test_case(allocator, test_data, sizeof(test_data), expected, sizeof(expected));
}
AWS_TEST_CASE(hex_encoding_test_case_fo_test, s_hex_encoding_test_case_fo)
static int s_hex_encoding_test_case_foo(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "foo";
char expected[] = "666f6f";
return s_run_hex_encoding_test_case(allocator, test_data, sizeof(test_data), expected, sizeof(expected));
}
AWS_TEST_CASE(hex_encoding_test_case_foo_test, s_hex_encoding_test_case_foo)
static int s_hex_encoding_test_case_foob(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "foob";
char expected[] = "666f6f62";
return s_run_hex_encoding_test_case(allocator, test_data, sizeof(test_data), expected, sizeof(expected));
}
AWS_TEST_CASE(hex_encoding_test_case_foob_test, s_hex_encoding_test_case_foob)
static int s_hex_encoding_test_case_fooba(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "fooba";
char expected[] = "666f6f6261";
return s_run_hex_encoding_test_case(allocator, test_data, sizeof(test_data), expected, sizeof(expected));
}
AWS_TEST_CASE(hex_encoding_test_case_fooba_test, s_hex_encoding_test_case_fooba)
static int s_hex_encoding_test_case_foobar(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "foobar";
char expected[] = "666f6f626172";
return s_run_hex_encoding_test_case(allocator, test_data, sizeof(test_data), expected, sizeof(expected));
}
AWS_TEST_CASE(hex_encoding_test_case_foobar_test, s_hex_encoding_test_case_foobar)
static int s_hex_encoding_append_test_case(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "foobar";
char expected[] = "666f6f626172";
return s_run_hex_encoding_test_case(allocator, test_data, sizeof(test_data), expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(hex_encoding_append_test_case, s_hex_encoding_append_test_case)
static int s_hex_encoding_test_case_missing_leading_zero_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
uint8_t expected[] = {0x01, 0x02, 0x03, 0x04};
char test_data[] = "1020304";
uint8_t output[sizeof(expected)] = {0};
struct aws_byte_cursor test_buf = aws_byte_cursor_from_c_str(test_data);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(expected));
ASSERT_SUCCESS(
aws_hex_decode(&test_buf, &output_buf),
"Hex decoding failed with "
"error code %d",
aws_last_error());
ASSERT_BIN_ARRAYS_EQUALS(
expected, sizeof(expected), output, sizeof(output), "Hex decode expected output did not match actual output");
return 0;
}
AWS_TEST_CASE(hex_encoding_test_case_missing_leading_zero, s_hex_encoding_test_case_missing_leading_zero_fn)
static int s_hex_encoding_invalid_buffer_size_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char test_data[] = "foobar";
size_t size_too_small = 2;
uint8_t output[] = {0, 0};
struct aws_byte_cursor test_buf = aws_byte_cursor_from_c_str(test_data);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, size_too_small);
ASSERT_ERROR(
AWS_ERROR_SHORT_BUFFER,
aws_hex_encode(&test_buf, &output_buf),
"Invalid buffer size should have failed with AWS_ERROR_SHORT_BUFFER");
ASSERT_ERROR(
AWS_ERROR_SHORT_BUFFER,
aws_hex_decode(&test_buf, &output_buf),
"Invalid buffer size should have failed with AWS_ERROR_SHORT_BUFFER");
return 0;
}
AWS_TEST_CASE(hex_encoding_invalid_buffer_size_test, s_hex_encoding_invalid_buffer_size_test_fn)
static int s_hex_encoding_highbyte_string_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char bad_input[] = "66\xb6\xb6"
"6f6f6617";
uint8_t output[sizeof(bad_input)] = {0};
struct aws_byte_cursor bad_buf = aws_byte_cursor_from_c_str(bad_input);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(output));
ASSERT_ERROR(AWS_ERROR_INVALID_HEX_STR, aws_hex_decode(&bad_buf, &output_buf));
return 0;
}
AWS_TEST_CASE(hex_encoding_highbyte_string_test, s_hex_encoding_highbyte_string_test_fn)
static int s_hex_encoding_overflow_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char test_data[] = "foobar";
/* kill off the last two bits, so the not a multiple of 4 check doesn't
* trigger first */
size_t overflow = (SIZE_MAX - 1);
uint8_t output[] = {0, 0};
struct aws_byte_cursor test_buf = aws_byte_cursor_from_array(test_data, overflow);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(output));
ASSERT_ERROR(
AWS_ERROR_OVERFLOW_DETECTED,
aws_hex_encode(&test_buf, &output_buf),
"overflow buffer size should have failed with AWS_ERROR_OVERFLOW_DETECTED");
return 0;
}
AWS_TEST_CASE(hex_encoding_overflow_test, s_hex_encoding_overflow_test_fn)
static int s_hex_encoding_invalid_string_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char bad_input[] = "666f6f6x6172";
uint8_t output[sizeof(bad_input)] = {0};
struct aws_byte_cursor bad_buf = aws_byte_cursor_from_c_str(bad_input);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(output));
ASSERT_ERROR(
AWS_ERROR_INVALID_HEX_STR,
aws_hex_decode(&bad_buf, &output_buf),
"An invalid string should have failed with AWS_ERROR_INVALID_HEX_STR");
return 0;
}
AWS_TEST_CASE(hex_encoding_invalid_string_test, s_hex_encoding_invalid_string_test_fn)
AWS_STATIC_STRING_FROM_LITERAL(s_base64_encode_prefix, "Prefix");
/*base64 encoding test cases */
static int s_run_base64_encoding_test_case(
struct aws_allocator *allocator,
const char *test_str,
size_t test_str_size,
const char *expected,
size_t expected_size) {
size_t output_size = 0;
size_t terminated_size = (expected_size + 1);
/* Part 1: encoding */
ASSERT_SUCCESS(
aws_base64_compute_encoded_len(test_str_size, &output_size),
"Compute base64 encoded length failed with %d",
aws_last_error());
ASSERT_INT_EQUALS(terminated_size, output_size, "Output size on string should be %d", terminated_size);
struct aws_byte_cursor to_encode = aws_byte_cursor_from_array(test_str, test_str_size);
struct aws_byte_buf allocation;
ASSERT_SUCCESS(aws_byte_buf_init(&allocation, allocator, output_size + 2));
memset(allocation.buffer, 0xdd, allocation.capacity);
struct aws_byte_buf output = aws_byte_buf_from_empty_array(allocation.buffer + 1, output_size);
ASSERT_SUCCESS(aws_base64_encode(&to_encode, &output), "encode call should have succeeded");
ASSERT_BIN_ARRAYS_EQUALS(
expected,
expected_size,
output.buffer,
output.len,
"Encode output should have been {%s}, was {%s}.",
expected,
output.buffer);
ASSERT_INT_EQUALS(
(unsigned char)*(allocation.buffer),
(unsigned char)0xdd,
"Write should not have occurred before the start of the buffer.");
ASSERT_INT_EQUALS(
(unsigned char)*(allocation.buffer + output_size + 1),
(unsigned char)0xdd,
"Write should not have occurred after the start of the buffer.");
aws_byte_buf_clean_up(&allocation);
/* part 2 - encoding properly appends rather than overwrites */
ASSERT_SUCCESS(aws_byte_buf_init(&allocation, allocator, output_size + s_base64_encode_prefix->len));
struct aws_byte_cursor prefix_cursor = aws_byte_cursor_from_string(s_base64_encode_prefix);
ASSERT_SUCCESS(aws_byte_buf_append(&allocation, &prefix_cursor));
ASSERT_SUCCESS(aws_base64_encode(&to_encode, &allocation), "encode call should have succeeded");
ASSERT_BIN_ARRAYS_EQUALS(
expected,
expected_size,
allocation.buffer + s_base64_encode_prefix->len,
expected_size,
"Encode output should have been {%s}, was {%s}.",
expected,
allocation.buffer + s_base64_encode_prefix->len);
struct aws_byte_cursor prefix_output = {.ptr = allocation.buffer, .len = s_base64_encode_prefix->len};
ASSERT_BIN_ARRAYS_EQUALS(
s_base64_encode_prefix->bytes,
s_base64_encode_prefix->len,
allocation.buffer,
s_base64_encode_prefix->len,
"Encode prefix should have been {%s}, was {" PRInSTR "}.",
s_base64_encode_prefix->bytes,
AWS_BYTE_CURSOR_PRI(prefix_output));
aws_byte_buf_clean_up(&allocation);
/* Part 3: decoding */
struct aws_byte_cursor expected_cur = aws_byte_cursor_from_array(expected, expected_size);
ASSERT_SUCCESS(
aws_base64_compute_decoded_len(&expected_cur, &output_size),
"Compute base64 decoded length failed with %d",
aws_last_error());
ASSERT_INT_EQUALS(test_str_size, output_size, "Output size on string should be %d", test_str_size);
ASSERT_SUCCESS(aws_byte_buf_init(&allocation, allocator, output_size + 2));
memset(allocation.buffer, 0xdd, allocation.capacity);
output = aws_byte_buf_from_empty_array(allocation.buffer + 1, output_size);
struct aws_byte_cursor expected_buf = aws_byte_cursor_from_array(expected, expected_size);
ASSERT_SUCCESS(aws_base64_decode(&expected_buf, &output), "decode call should have succeeded");
ASSERT_BIN_ARRAYS_EQUALS(
test_str,
test_str_size,
output.buffer,
output_size,
"Decode output should have been {%s} (len=%zu).",
test_str,
test_str_size);
ASSERT_INT_EQUALS(
(unsigned char)*(allocation.buffer),
(unsigned char)0xdd,
"Write should not have occurred before the start of the buffer.");
ASSERT_INT_EQUALS(
(unsigned char)*(allocation.buffer + output_size + 1),
(unsigned char)0xdd,
"Write should not have occurred after the start of the buffer.");
aws_byte_buf_clean_up(&allocation);
return 0;
}
static int s_base64_encoding_test_case_empty(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "";
char expected[] = "";
return s_run_base64_encoding_test_case(allocator, test_data, sizeof(test_data) - 1, expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_case_empty_test, s_base64_encoding_test_case_empty)
static int s_base64_encoding_test_case_f(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "f";
char expected[] = "Zg==";
return s_run_base64_encoding_test_case(allocator, test_data, sizeof(test_data) - 1, expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_case_f_test, s_base64_encoding_test_case_f)
static int s_base64_encoding_test_case_fo(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "fo";
char expected[] = "Zm8=";
return s_run_base64_encoding_test_case(allocator, test_data, sizeof(test_data) - 1, expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_case_fo_test, s_base64_encoding_test_case_fo)
static int s_base64_encoding_test_case_foo(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "foo";
char expected[] = "Zm9v";
return s_run_base64_encoding_test_case(allocator, test_data, sizeof(test_data) - 1, expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_case_foo_test, s_base64_encoding_test_case_foo)
static int s_base64_encoding_test_case_foob(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "foob";
char expected[] = "Zm9vYg==";
return s_run_base64_encoding_test_case(allocator, test_data, sizeof(test_data) - 1, expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_case_foob_test, s_base64_encoding_test_case_foob)
static int s_base64_encoding_test_case_fooba(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "fooba";
char expected[] = "Zm9vYmE=";
return s_run_base64_encoding_test_case(allocator, test_data, sizeof(test_data) - 1, expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_case_fooba_test, s_base64_encoding_test_case_fooba)
static int s_base64_encoding_test_case_foobar(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "foobar";
char expected[] = "Zm9vYmFy";
return s_run_base64_encoding_test_case(allocator, test_data, sizeof(test_data) - 1, expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_case_foobar_test, s_base64_encoding_test_case_foobar)
static int s_base64_encoding_test_case_32bytes(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
/* 01234567890123456789012345678901 */
char test_data[] = "this is a 32 byte long string!!!";
char expected[] = "dGhpcyBpcyBhIDMyIGJ5dGUgbG9uZyBzdHJpbmchISE=";
return s_run_base64_encoding_test_case(allocator, test_data, sizeof(test_data) - 1, expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_case_32bytes_test, s_base64_encoding_test_case_32bytes)
static int s_base64_encoding_test_zeros_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
uint8_t test_data[6] = {0};
char expected[] = "AAAAAAAA";
return s_run_base64_encoding_test_case(
allocator, (char *)test_data, sizeof(test_data), expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_zeros, s_base64_encoding_test_zeros_fn)
static int s_base64_encoding_test_roundtrip(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
(void)allocator;
fprintf(stderr, "--test\n");
uint8_t test_data[32];
for (size_t i = 0; i < sizeof(test_data); i++) {
/* 0000 0100 0010 0000 1100 0100 */
#if 0
test_data[i] = 0x;
test_data[i + 1] = 0x20;
test_data[i + 2] = 0xc4;
#endif
test_data[i] = (uint8_t)i;
/* b64 nibbles: 1 2 3 4 (BCDE) */
}
struct aws_byte_cursor original_data = aws_byte_cursor_from_array(test_data, sizeof(test_data));
uint8_t test_hex[65] = {0};
struct aws_byte_buf hex = aws_byte_buf_from_empty_array(test_hex, sizeof(test_hex));
uint8_t test_b64[128] = {0};
struct aws_byte_buf b64_data = aws_byte_buf_from_empty_array(test_b64, sizeof(test_b64));
aws_base64_encode(&original_data, &b64_data);
b64_data.len--;
uint8_t decoded_data[32] = {0};
struct aws_byte_buf decoded_buf = aws_byte_buf_from_empty_array(decoded_data, sizeof(decoded_data));
struct aws_byte_cursor b64_cur = aws_byte_cursor_from_buf(&b64_data);
aws_base64_decode(&b64_cur, &decoded_buf);
if (memcmp(decoded_buf.buffer, original_data.ptr, decoded_buf.len) != 0) {
aws_hex_encode(&original_data, &hex);
fprintf(stderr, "Base64 round-trip failed\n");
fprintf(stderr, "Original: %s\n", (char *)test_hex);
fprintf(stderr, "Base64 : ");
for (size_t i = 0; i < sizeof(test_b64); i++) {
if (!test_b64[i]) {
break;
}
fprintf(stderr, " %c", test_b64[i]);
}
fprintf(stderr, "\n");
memset(test_hex, 0, sizeof(test_hex));
struct aws_byte_cursor decoded_cur = aws_byte_cursor_from_buf(&decoded_buf);
aws_hex_encode(&decoded_cur, &hex);
fprintf(stderr, "Decoded : %s\n", (char *)test_hex);
return 1;
}
return 0;
}
AWS_TEST_CASE(base64_encoding_test_roundtrip, s_base64_encoding_test_roundtrip)
/* this test is here because I manually touched the decoding table with sentinal
* values for efficiency reasons and I want to make sure it matches the encoded
* string. This checks that none of those values that were previously 0 which I
* moved to a sentinal value of 0xDD, were actually supposed to be a 0 other
* than character value of 65 -> "A" -> 0.
*/
static int s_base64_encoding_test_all_values_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
uint8_t test_data[255] = {0};
for (uint8_t i = 0; i < (uint8_t)sizeof(test_data); ++i) {
test_data[i] = i;
}
char expected[] = "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERU"
"ZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6e3x9fn+AgYKDhIWGh4iJiouM"
"jY6PkJGSk5SVlpeYmZqbnJ2en6ChoqOkpaanqKmqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCw8TFxsfIycrLzM3Oz9DR0t"
"PU1dbX2Nna29zd3t/g4eLj5OXm5+jp6uvs7e7v8PHy8/T19vf4+fr7/P3+";
return s_run_base64_encoding_test_case(
allocator, (char *)test_data, sizeof(test_data), expected, sizeof(expected) - 1);
}
AWS_TEST_CASE(base64_encoding_test_all_values, s_base64_encoding_test_all_values_fn)
static int s_base64_encoding_buffer_size_too_small_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char test_data[] = "foobar";
char encoded_data[] = "Zm9vYmFy";
size_t size_too_small = 4;
uint8_t output[] = {0, 0};
struct aws_byte_cursor test_buf = aws_byte_cursor_from_c_str(test_data);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, size_too_small);
ASSERT_ERROR(
AWS_ERROR_SHORT_BUFFER,
aws_base64_encode(&test_buf, &output_buf),
"Invalid buffer size should have failed with AWS_ERROR_SHORT_BUFFER");
struct aws_byte_cursor encoded_buf = aws_byte_cursor_from_c_str(encoded_data);
ASSERT_ERROR(
AWS_ERROR_SHORT_BUFFER,
aws_base64_decode(&encoded_buf, &output_buf),
"Invalid buffer size should have failed with AWS_ERROR_SHORT_BUFFER");
return 0;
}
AWS_TEST_CASE(base64_encoding_buffer_size_too_small_test, s_base64_encoding_buffer_size_too_small_test_fn)
static int s_base64_encoding_buffer_size_overflow_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char test_data[] = "foobar";
char encoded_data[] = "Zm9vYmFy";
/* kill off the last two bits, so the not a multiple of 4 check doesn't
* trigger first */
size_t overflow = (SIZE_MAX - 1) & ~0x03;
uint8_t output[] = {0, 0};
struct aws_byte_cursor test_buf = aws_byte_cursor_from_array(test_data, overflow + 2);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(output));
ASSERT_ERROR(
AWS_ERROR_OVERFLOW_DETECTED,
aws_base64_encode(&test_buf, &output_buf),
"overflow buffer size should have failed with AWS_ERROR_OVERFLOW_DETECTED");
struct aws_byte_cursor encoded_buf = aws_byte_cursor_from_array(encoded_data, overflow);
ASSERT_ERROR(
AWS_ERROR_OVERFLOW_DETECTED,
aws_base64_decode(&encoded_buf, &output_buf),
"overflow buffer size should have failed with AWS_ERROR_OVERFLOW_DETECTED");
return 0;
}
AWS_TEST_CASE(base64_encoding_buffer_size_overflow_test, s_base64_encoding_buffer_size_overflow_test_fn)
static int s_base64_encoding_buffer_size_invalid_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char encoded_data[] = "Zm9vYmFy";
/* kill off the last two bits, so the not a multiple of 4 check doesn't
* trigger first */
uint8_t output[] = {0, 0};
struct aws_byte_cursor encoded_buf = aws_byte_cursor_from_array(encoded_data, sizeof(encoded_data));
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(output));
ASSERT_ERROR(
AWS_ERROR_INVALID_BASE64_STR,
aws_base64_decode(&encoded_buf, &output_buf),
"Non multiple of 4 buffer size should have failed with AWS_ERROR_INVALID_BASE64_STR");
return 0;
}
AWS_TEST_CASE(base64_encoding_buffer_size_invalid_test, s_base64_encoding_buffer_size_invalid_test_fn)
static int s_base64_encoding_invalid_buffer_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char encoded_data[] = "Z\n9vYmFy";
uint8_t output[sizeof(encoded_data)] = {0};
struct aws_byte_cursor encoded_buf = aws_byte_cursor_from_c_str(encoded_data);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(output));
ASSERT_ERROR(
AWS_ERROR_INVALID_BASE64_STR,
aws_base64_decode(&encoded_buf, &output_buf),
"buffer with invalid character should have failed with AWS_ERROR_INVALID_BASE64_STR");
return 0;
}
AWS_TEST_CASE(base64_encoding_invalid_buffer_test, s_base64_encoding_invalid_buffer_test_fn)
static int s_base64_encoding_highbyte_string_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char bad_input[] = "AAAA\xC1"
"AAA";
uint8_t output[sizeof(bad_input)] = {0};
struct aws_byte_cursor bad_buf = aws_byte_cursor_from_c_str(bad_input);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(output));
ASSERT_ERROR(AWS_ERROR_INVALID_BASE64_STR, aws_base64_decode(&bad_buf, &output_buf));
return 0;
}
AWS_TEST_CASE(base64_encoding_highbyte_string_test, s_base64_encoding_highbyte_string_test_fn)
static int s_base64_encoding_invalid_padding_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
char encoded_data[] = "Zm9vY===";
uint8_t output[sizeof(encoded_data)] = {0};
struct aws_byte_cursor encoded_buf = aws_byte_cursor_from_c_str(encoded_data);
struct aws_byte_buf output_buf = aws_byte_buf_from_empty_array(output, sizeof(output));
ASSERT_ERROR(
AWS_ERROR_INVALID_BASE64_STR,
aws_base64_decode(&encoded_buf, &output_buf),
"buffer with invalid padding should have failed with AWS_ERROR_INVALID_BASE64_STR");
return 0;
}
AWS_TEST_CASE(base64_encoding_invalid_padding_test, s_base64_encoding_invalid_padding_test_fn)
/* network integer encoding tests */
static int s_uint64_buffer_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
uint64_t test_value = 0x1020304050607080;
uint8_t buffer[8] = {0};
aws_write_u64(test_value, buffer);
uint8_t expected[] = {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), buffer, sizeof(buffer), "Uint64_t to buffer failed");
uint64_t unmarshalled_value = aws_read_u64(buffer);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
return 0;
}
AWS_TEST_CASE(uint64_buffer_test, s_uint64_buffer_test_fn)
static int s_uint64_buffer_non_aligned_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
uint64_t test_value = 0x1020304050607080;
uint8_t *buffer = (uint8_t *)aws_mem_acquire(allocator, 9);
ASSERT_FALSE((size_t)buffer & 0x07, "Heap allocated buffer should have been 8-byte aligned.");
aws_write_u64(test_value, buffer + 1);
uint8_t expected[] = {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), (buffer + 1), sizeof(expected), "Uint64_t to buffer failed");
uint64_t unmarshalled_value = aws_read_u64(buffer + 1);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
aws_mem_release(allocator, (void *)buffer);
return 0;
}
AWS_TEST_CASE(uint64_buffer_non_aligned_test, s_uint64_buffer_non_aligned_test_fn)
static int s_uint32_buffer_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
uint32_t test_value = 0x10203040;
uint8_t buffer[4] = {0};
aws_write_u32(test_value, buffer);
uint8_t expected[] = {0x10, 0x20, 0x30, 0x40};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), buffer, sizeof(buffer), "Uint32_t to buffer failed");
uint32_t unmarshalled_value = aws_read_u32(buffer);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
return 0;
}
AWS_TEST_CASE(uint32_buffer_test, s_uint32_buffer_test_fn)
static int s_uint32_buffer_non_aligned_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
uint32_t test_value = 0x10203040;
uint8_t *buffer = (uint8_t *)aws_mem_acquire(allocator, 9);
ASSERT_FALSE((size_t)buffer & 0x07, "Heap allocated buffer should have been 8-byte aligned.");
aws_write_u32(test_value, buffer + 5);
uint8_t expected[] = {0x10, 0x20, 0x30, 0x40};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), (buffer + 5), sizeof(expected), "Uint32_t to buffer failed");
uint64_t unmarshalled_value = aws_read_u32(buffer + 5);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
aws_mem_release(allocator, (void *)buffer);
return 0;
}
AWS_TEST_CASE(uint32_buffer_non_aligned_test, s_uint32_buffer_non_aligned_test_fn)
static int s_uint24_buffer_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
uint32_t test_value = 0x102030;
uint8_t buffer[3] = {0};
aws_write_u24(test_value, buffer);
uint8_t expected[] = {0x10, 0x20, 0x30};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), buffer, sizeof(buffer), "24 bit int to buffer failed");
uint32_t unmarshalled_value = aws_read_u24(buffer);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
return 0;
}
AWS_TEST_CASE(uint24_buffer_test, s_uint24_buffer_test_fn)
static int s_uint24_buffer_non_aligned_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
uint32_t test_value = 0x102030;
uint8_t *buffer = (uint8_t *)aws_mem_acquire(allocator, 9);
ASSERT_FALSE((size_t)buffer & 0x07, "Heap allocated buffer should have been 8-byte aligned.");
aws_write_u24(test_value, buffer + 6);
uint8_t expected[] = {0x10, 0x20, 0x30};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), (buffer + 6), sizeof(expected), "24 bit int to buffer failed");
uint32_t unmarshalled_value = aws_read_u24(buffer + 6);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
aws_mem_release(allocator, (void *)buffer);
return 0;
}
AWS_TEST_CASE(uint24_buffer_non_aligned_test, s_uint24_buffer_non_aligned_test_fn)
static int s_uint16_buffer_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
uint16_t test_value = 0x1020;
uint8_t buffer[2] = {0};
aws_write_u16(test_value, buffer);
uint8_t expected[] = {0x10, 0x20};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), buffer, sizeof(buffer), "Uint16_t to buffer failed");
uint16_t unmarshalled_value = aws_read_u16(buffer);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
return 0;
}
AWS_TEST_CASE(uint16_buffer_test, s_uint16_buffer_test_fn)
static int s_uint16_buffer_non_aligned_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
uint16_t test_value = 0x1020;
uint8_t *buffer = (uint8_t *)aws_mem_acquire(allocator, 9);
ASSERT_FALSE((size_t)buffer & 0x07, "Heap allocated buffer should have been 8-byte aligned.");
aws_write_u16(test_value, buffer + 7);
uint8_t expected[] = {0x10, 0x20};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), (buffer + 7), sizeof(expected), "16 bit int to buffer failed");
uint16_t unmarshalled_value = aws_read_u16(buffer + 7);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
aws_mem_release(allocator, (void *)buffer);
return 0;
}
AWS_TEST_CASE(uint16_buffer_non_aligned_test, s_uint16_buffer_non_aligned_test_fn)
/* sanity check that signed/unsigned work the same */
static int s_uint16_buffer_signed_positive_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
int16_t test_value = 0x4030;
uint8_t buffer[2] = {0};
aws_write_u16((uint16_t)test_value, buffer);
uint8_t expected[] = {0x40, 0x30};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), buffer, sizeof(buffer), "Uint16_t to buffer failed");
int16_t unmarshalled_value = (int16_t)aws_read_u16(buffer);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
return 0;
}
AWS_TEST_CASE(uint16_buffer_signed_positive_test, s_uint16_buffer_signed_positive_test_fn)
static int s_uint16_buffer_signed_negative_test_fn(struct aws_allocator *allocator, void *ctx) {
(void)allocator;
(void)ctx;
int16_t test_value = -2;
uint8_t buffer[2] = {0};
aws_write_u16((uint16_t)test_value, buffer);
uint8_t expected[] = {0xFF, 0xFE};
ASSERT_BIN_ARRAYS_EQUALS(expected, sizeof(expected), buffer, sizeof(buffer), "Uint16_t to buffer failed");
int16_t unmarshalled_value = (int16_t)aws_read_u16(buffer);
ASSERT_INT_EQUALS(test_value, unmarshalled_value, "After unmarshalling the encoded data, it didn't match");
return 0;
}
AWS_TEST_CASE(uint16_buffer_signed_negative_test, s_uint16_buffer_signed_negative_test_fn)
static int s_run_hex_encoding_append_dynamic_test_case(
struct aws_allocator *allocator,
const char *test_str,
const char *expected,
size_t initial_capacity,
size_t starting_offset) {
size_t output_size = 2 * strlen(test_str);
struct aws_byte_cursor to_encode = aws_byte_cursor_from_c_str(test_str);
struct aws_byte_buf dest;
ASSERT_SUCCESS(aws_byte_buf_init(&dest, allocator, initial_capacity));
memset(dest.buffer, 0xdd, dest.capacity);
dest.len = starting_offset;
ASSERT_SUCCESS(aws_hex_encode_append_dynamic(&to_encode, &dest), "encode call should have succeeded");
size_t expected_size = strlen(expected);
ASSERT_BIN_ARRAYS_EQUALS(
expected,
expected_size,
dest.buffer + starting_offset,
output_size,
"Encode output should have been {%s}, was {%s}.",
expected,
dest.buffer + starting_offset);
ASSERT_INT_EQUALS(output_size, dest.len - starting_offset);
for (size_t i = 0; i < starting_offset; ++i) {
ASSERT_INT_EQUALS(
(unsigned char)*(dest.buffer + i),
(unsigned char)0xdd,
"Write should not have occurred before the the encoding's starting position.");
}
for (size_t i = starting_offset + output_size; i < dest.capacity; ++i) {
ASSERT_INT_EQUALS(
(unsigned char)*(dest.buffer + i),
(unsigned char)0xdd,
"Write should not have occurred after the encoding's final position.");
}
aws_byte_buf_clean_up(&dest);
return 0;
}
static int s_hex_encoding_append_dynamic_test_case_fooba(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "fooba";
char expected[] = "666f6f6261";
ASSERT_TRUE(s_run_hex_encoding_append_dynamic_test_case(allocator, test_data, expected, 5, 3) == AWS_OP_SUCCESS);
ASSERT_TRUE(s_run_hex_encoding_append_dynamic_test_case(allocator, test_data, expected, 50, 3) == AWS_OP_SUCCESS);
return 0;
}
AWS_TEST_CASE(hex_encoding_append_dynamic_test_case_fooba, s_hex_encoding_append_dynamic_test_case_fooba)
static int s_hex_encoding_append_dynamic_test_case_empty(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char test_data[] = "";
char expected[] = "";
ASSERT_TRUE(s_run_hex_encoding_append_dynamic_test_case(allocator, test_data, expected, 5, 3) == AWS_OP_SUCCESS);
ASSERT_TRUE(s_run_hex_encoding_append_dynamic_test_case(allocator, test_data, expected, 50, 3) == AWS_OP_SUCCESS);
return 0;
}
AWS_TEST_CASE(hex_encoding_append_dynamic_test_case_empty, s_hex_encoding_append_dynamic_test_case_empty)
static int read_file_contents(struct aws_byte_buf *out_buf, struct aws_allocator *alloc, const char *filename) {
AWS_ZERO_STRUCT(*out_buf);
FILE *fp = aws_fopen(filename, "r");
ASSERT_NOT_NULL(fp);
if (fp) {
if (fseek(fp, 0L, SEEK_END)) {
fclose(fp);
ASSERT_FALSE(true, "Failed to seek to end");
return AWS_OP_ERR;
}
size_t allocation_size = (size_t)ftell(fp) + 1;
/* Tell the user that we allocate here and if success they're responsible for the free. */
if (aws_byte_buf_init(out_buf, alloc, allocation_size)) {
fclose(fp);
ASSERT_FALSE(true, "Failed to init buffer");
return AWS_OP_ERR;
}
/* Ensure compatibility with null-terminated APIs, but don't consider
* the null terminator part of the length of the payload */
out_buf->len = out_buf->capacity - 1;
out_buf->buffer[out_buf->len] = 0;
if (fseek(fp, 0L, SEEK_SET)) {
aws_byte_buf_clean_up(out_buf);
fclose(fp);
ASSERT_FALSE(true, "Failed to seek to start");
return AWS_OP_ERR;
}
size_t read = fread(out_buf->buffer, 1, out_buf->len, fp);
fclose(fp);
if (read < (out_buf->len - 1)) {
ASSERT_INT_EQUALS(read, out_buf->len);
aws_byte_buf_clean_up(out_buf);
return AWS_OP_ERR;
}
out_buf->len = read;
return AWS_OP_SUCCESS;
}
return AWS_OP_ERR;
}
static int s_text_encoding_utf8(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_byte_buf contents;
ASSERT_SUCCESS(read_file_contents(&contents, allocator, "utf8.txt"));
ASSERT_INT_EQUALS(AWS_TEXT_UTF8, aws_text_detect_encoding(contents.buffer, contents.len));
aws_byte_buf_clean_up(&contents);
return 0;
}
AWS_TEST_CASE(text_encoding_utf8, s_text_encoding_utf8)
static int s_text_encoding_utf16(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_byte_buf contents;
ASSERT_SUCCESS(read_file_contents(&contents, allocator, "utf16le.txt"));
ASSERT_INT_EQUALS(AWS_TEXT_UTF16, aws_text_detect_encoding(contents.buffer, contents.len));
aws_byte_buf_clean_up(&contents);
ASSERT_SUCCESS(read_file_contents(&contents, allocator, "utf16be.txt"));
ASSERT_INT_EQUALS(AWS_TEXT_UTF16, aws_text_detect_encoding(contents.buffer, contents.len));
aws_byte_buf_clean_up(&contents);
return 0;
}
AWS_TEST_CASE(text_encoding_utf16, s_text_encoding_utf16)
static int s_text_encoding_ascii(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
char all_ascii_chars[128];
for (char c = 0; c < AWS_ARRAY_SIZE(all_ascii_chars); ++c) {
all_ascii_chars[(int)c] = (c + 1) % 128;
}
ASSERT_INT_EQUALS(
AWS_TEXT_ASCII, aws_text_detect_encoding((const uint8_t *)all_ascii_chars, AWS_ARRAY_SIZE(all_ascii_chars)));
struct aws_byte_buf contents;
ASSERT_SUCCESS(read_file_contents(&contents, allocator, "ascii.txt"));
ASSERT_INT_EQUALS(AWS_TEXT_ASCII, aws_text_detect_encoding(contents.buffer, contents.len));
aws_byte_buf_clean_up(&contents);
return 0;
}
AWS_TEST_CASE(text_encoding_ascii, s_text_encoding_ascii)
static int s_text_encoding_is_utf8(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
{
struct aws_byte_buf contents;
ASSERT_SUCCESS(read_file_contents(&contents, allocator, "utf8.txt"));
ASSERT_TRUE(aws_text_is_utf8(contents.buffer, contents.len));
aws_byte_buf_clean_up(&contents);
}
{
struct aws_byte_buf contents;
ASSERT_SUCCESS(read_file_contents(&contents, allocator, "ascii.txt"));
ASSERT_TRUE(aws_text_is_utf8(contents.buffer, contents.len));
aws_byte_buf_clean_up(&contents);
}
{
struct aws_byte_buf contents;
ASSERT_SUCCESS(read_file_contents(&contents, allocator, "utf16be.txt"));
ASSERT_FALSE(aws_text_is_utf8(contents.buffer, contents.len));
aws_byte_buf_clean_up(&contents);
}
{
struct aws_byte_buf contents;
ASSERT_SUCCESS(read_file_contents(&contents, allocator, "utf16le.txt"));
ASSERT_FALSE(aws_text_is_utf8(contents.buffer, contents.len));
aws_byte_buf_clean_up(&contents);
}
return 0;
}
AWS_TEST_CASE(text_encoding_is_utf8, s_text_encoding_is_utf8)
struct utf8_example {
const char *name;
struct aws_byte_cursor text;
};
static struct utf8_example s_valid_utf8_examples[] = {
{
.name = "1 letter",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("a"),
},
{
.name = "Several ascii letters",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("ascii word"),
},
{
.name = "empty string",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(""),
},
{
.name = "Embedded null byte",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("a\x00b"),
},
{
.name = "2 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xC2\xA3"),
},
{
.name = "3 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xE2\x82\xAC"),
},
{
.name = "4 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xF0\x90\x8D\x88"),
},
{
.name = "A variety of different length codepoints",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(
"\xF0\x90\x8D\x88\xE2\x82\xAC\xC2\xA3\x24\xC2\xA3\xE2\x82\xAC\xF0\x90\x8D\x88"),
},
{
.name = "UTF8 BOM",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xEF\xBB\xBF"),
},
{
.name = "UTF8 BOM plus extra",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xEF\xBB\xBF\x24\xC2\xA3"),
},
{
.name = "First possible 1 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\x00"),
},
{
.name = "First possible 2 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xC2\x80"),
},
{
.name = "First possible 3 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xE0\xA0\x80"),
},
{
.name = "First possible 4 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xF0\x90\x80\x80"),
},
{
.name = "Last possible 1 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\x7F"),
},
{
.name = "Last possible 2 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xDF\xBF"),
},
{
.name = "Last possible 3 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xEF\xBF\xBF"),
},
{
.name = "Last possible 4 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xF7\xBF\xBF\xBF"),
},
{
.name = "Last valid codepoint before prohibited range U+D800 - U+DFFF",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xED\x9F\xBF"),
},
{
.name = "Next valid codepoint after prohibited range U+D800 - U+DFFF",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xEE\x80\x80"),
},
{
.name = "Boundary condition",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xEF\xBF\xBD"),
},
{
.name = "Boundary condition",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xF4\x8F\xBF\xBF"),
},
{
.name = "Boundary condition",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xF4\x90\x80\x80"),
},
};
static struct utf8_example s_illegal_utf8_examples[] = {
{
.name = "Missing last byte of 2 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xC2"),
},
{
.name = "Missing last byte of 3 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xE2\x82"),
},
{
.name = "Missing last byte of 4 byte codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xF0\x90\x8D"),
},
{
.name = "5 byte codepoints not allowed by RFC-3629",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xF8\x88\x80\x80\x80"),
},
{
.name = "6 byte codepoints not allowed by RFC-3629",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xFC\x84\x80\x80\x80\x80"),
},
{
.name = "Illegal first byte",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xFF"),
},
{
.name = "Overlong 2 byte encoding of U+00",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xC0\x80"),
},
{
.name = "Overlong 3 byte encoding of U+00",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xE0\x80\x80"),
},
{
.name = "Overlong 4 byte encoding of U+00",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xF0\x80\x80\x80"),
},
{
.name = "Continuation byte as first byte (lowest possible value)",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\x80"),
},
{
.name = "Continuation byte as first byte (highest possible value)",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xBF"),
},
{
.name = "Unexpected continuation byte after valid codepoint",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\x61\x80"),
},
{
.name = "Illegal value for continuation byte (starts 11xxxxxx)",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xC2\xC0"),
},
{
.name = "Illegal value for continuation byte (starts 00xxxxxx)",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xC2\x3F"),
},
{
.name = "Codepoint in prohibited range U+D800 - U+DFFF (lowest possible value)",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xED\xA0\x80"),
},
{
.name = "Codepoint in prohibited range U+D800 - U+DFFF (highest possible value)",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xED\xBF\xBF"),
},
{
.name = "Codepoint in prohibited range U+D800 - U+DFFF (in the middle)",
.text = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("\xED\xA3\xBF"),
},
};
static int s_text_is_valid_utf8(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
/* Check the valid test cases */
for (size_t i = 0; i < AWS_ARRAY_SIZE(s_valid_utf8_examples); ++i) {
struct utf8_example example = s_valid_utf8_examples[i];
printf("valid example [%zu]: %s\n", i, example.name);
ASSERT_TRUE(aws_text_is_valid_utf8(example.text));
}
/* Glue all the valid test cases together, they ought to pass */
struct aws_byte_buf all_good_text;
aws_byte_buf_init(&all_good_text, allocator, 1024);
for (size_t i = 0; i < AWS_ARRAY_SIZE(s_valid_utf8_examples); ++i) {
aws_byte_buf_append_dynamic(&all_good_text, &s_valid_utf8_examples[i].text);
}
ASSERT_TRUE(aws_text_is_valid_utf8(aws_byte_cursor_from_buf(&all_good_text)));
aws_byte_buf_clean_up(&all_good_text);
/* Check the illegal test cases */
for (size_t i = 0; i < AWS_ARRAY_SIZE(s_illegal_utf8_examples); ++i) {
struct utf8_example example = s_illegal_utf8_examples[i];
printf("illegal example [%zu]: %s\n", i, example.name);
ASSERT_FALSE(aws_text_is_valid_utf8(example.text));
}
return 0;
}
AWS_TEST_CASE(text_is_valid_utf8, s_text_is_valid_utf8);
static int s_utf8_validator_update_in_chunks(
struct aws_utf8_validator *validator,
struct aws_byte_cursor text,
size_t chunk_size) {
while (text.len > 0) {
struct aws_byte_cursor chunk = aws_byte_cursor_advance(&text, aws_min_size(chunk_size, text.len));
if (aws_utf8_validator_update(validator, chunk)) {
return AWS_OP_ERR;
}
}
return AWS_OP_SUCCESS;
}
static int s_utf8_validator(struct aws_allocator *allocator, void *ctx) {
(void)ctx;
struct aws_utf8_validator *validator = aws_utf8_validator_new(allocator);
ASSERT_NOT_NULL(validator);
/* Check valid examples, streaming the text in at various sized chunks*/
for (size_t i = 0; i < AWS_ARRAY_SIZE(s_valid_utf8_examples); ++i) {
struct utf8_example example = s_valid_utf8_examples[i];
printf("valid example [%zu]: %s\n", i, example.name);
aws_utf8_validator_reset(validator);
for (size_t chunk_size = 1; chunk_size <= example.text.len; ++chunk_size) {
printf(" processing %zu byte chunks\n", chunk_size);
ASSERT_SUCCESS(s_utf8_validator_update_in_chunks(validator, example.text, chunk_size));
}
ASSERT_SUCCESS(aws_utf8_validator_finalize(validator));
}
/* Check illegal examples, streaming the text in at various sized chunks*/
for (size_t i = 0; i < AWS_ARRAY_SIZE(s_illegal_utf8_examples); ++i) {
struct utf8_example example = s_illegal_utf8_examples[i];
printf("illegal example [%zu]: %s\n", i, example.name);
aws_utf8_validator_reset(validator);
bool validator_error = false;
for (size_t chunk_size = 1; chunk_size <= example.text.len; ++chunk_size) {
printf(" processing %zu byte chunks\n", chunk_size);
if (s_utf8_validator_update_in_chunks(validator, example.text, chunk_size)) {
ASSERT_INT_EQUALS(AWS_ERROR_INVALID_UTF8, aws_last_error());
validator_error = true;
break;
}
}
if (!validator_error) {
ASSERT_ERROR(AWS_ERROR_INVALID_UTF8, aws_utf8_validator_finalize(validator));
}
}
aws_utf8_validator_destroy(validator);
return 0;
}
AWS_TEST_CASE(utf8_validator, s_utf8_validator);
|