1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592
|
#include <platform.h>
#include <definitions.h>
#include <string_lib.h>
#include <alloc.h>
#include <encode.h>
#include <test.h>
static const char *lo_alphabet = "abcdefghijklmnopqrstuvwxyz";
static const char *hi_alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
static void test_get_token(void)
{
{
const char *str = " abc def ,efg ";
size_t len = strlen(str);
assert_int_equal(3, StringCountTokens(str, len, ", "));
{
StringRef ref = StringGetToken(str, len, 0, ", ");
assert_int_equal(3, ref.len);
assert_memory_equal("abc", ref.data, 3);
}
{
StringRef ref = StringGetToken(str, len, 1, ", ");
assert_int_equal(3, ref.len);
assert_memory_equal("def", ref.data, 3);
}
{
StringRef ref = StringGetToken(str, len, 2, ", ");
assert_int_equal(3, ref.len);
assert_memory_equal("efg", ref.data, 3);
}
}
{
const char *str = "abc";
size_t len = strlen(str);
assert_int_equal(1, StringCountTokens(str, len, ", "));
{
StringRef ref = StringGetToken(str, len, 0, ", ");
assert_int_equal(3, ref.len);
assert_memory_equal("abc", ref.data, 3);
}
}
{
const char *str = "abc ";
size_t len = strlen(str);
assert_int_equal(1, StringCountTokens(str, len, ", "));
{
StringRef ref = StringGetToken(str, len, 0, ", ");
assert_int_equal(3, ref.len);
assert_memory_equal("abc", ref.data, 3);
}
}
}
static void test_mix_case_tolower(void)
{
char str[] = "aBcD";
ToLowerStrInplace(str);
assert_string_equal(str, "abcd");
}
static void test_empty_tolower(void)
{
char str[] = "";
ToLowerStrInplace(str);
assert_string_equal(str, "");
}
static void test_weird_chars_tolower(void)
{
static const char *weirdstuff = "1345\0xff%$#@!";
char weirdstuff_copy_lowercased[CF_MAXVARSIZE];
strlcpy(weirdstuff_copy_lowercased, weirdstuff, CF_MAXVARSIZE);
ToLowerStrInplace(weirdstuff_copy_lowercased);
assert_string_equal(weirdstuff_copy_lowercased, weirdstuff);
}
static void test_alphabet_tolower(void)
{
char lo_alphabet_lowercased[CF_MAXVARSIZE];
strlcpy(lo_alphabet_lowercased, lo_alphabet, CF_MAXVARSIZE);
ToLowerStrInplace(lo_alphabet_lowercased);
assert_string_equal(lo_alphabet_lowercased, lo_alphabet);
}
static void test_hi_alphabet_tolower(void)
{
char hi_alphabet_lowercased[CF_MAXVARSIZE];
strlcpy(hi_alphabet_lowercased, hi_alphabet, CF_MAXVARSIZE);
ToLowerStrInplace(hi_alphabet_lowercased);
assert_string_equal(hi_alphabet_lowercased, lo_alphabet);
}
static void test_inplace_tolower(void)
{
char abc[] = "abc";
char def[] = "def";
ToLowerStrInplace(abc);
ToLowerStrInplace(def);
assert_string_equal(abc, "abc");
assert_string_equal(def, "def");
}
static void test_mix_case_toupper(void)
{
char str[] = "aBcD";
ToUpperStrInplace(str);
assert_string_equal(str, "ABCD");
}
static void test_empty_toupper(void)
{
char str[] = "";
ToUpperStrInplace(str);
assert_string_equal(str, "");
}
static void test_weird_chars_toupper(void)
{
static const char *weirdstuff = "1345\0xff%$#@!";
char weirdstuff_copy_uppercased[CF_MAXVARSIZE];
strlcpy(weirdstuff_copy_uppercased, weirdstuff, CF_MAXVARSIZE);
ToUpperStrInplace(weirdstuff_copy_uppercased);
assert_string_equal(weirdstuff_copy_uppercased, weirdstuff);
}
static void test_alphabet_toupper(void)
{
char lo_alphabet_uppercased[CF_MAXVARSIZE];
strlcpy(lo_alphabet_uppercased, lo_alphabet, CF_MAXVARSIZE);
ToUpperStrInplace(lo_alphabet_uppercased);
assert_string_equal(lo_alphabet_uppercased, hi_alphabet);
}
static void test_hi_alphabet_toupper(void)
{
char hi_alphabet_uppercased[CF_MAXVARSIZE];
strlcpy(hi_alphabet_uppercased, hi_alphabet, CF_MAXVARSIZE);
ToUpperStrInplace(hi_alphabet_uppercased);
assert_string_equal(hi_alphabet_uppercased, hi_alphabet);
}
static void test_inplace_toupper(void)
{
char abc[] = "abc";
char def[] = "def";
ToUpperStrInplace(abc);
ToUpperStrInplace(def);
assert_string_equal(abc, "ABC");
assert_string_equal(def, "DEF");
}
static void test_long_search(void)
{
char *ns = SearchAndReplace("abc", "abcabc", "test");
assert_string_equal(ns, "abc");
free(ns);
}
static void test_replace_empty_pattern(void)
{
char *ns = SearchAndReplace("foobarbaz", "", "abc");
assert_string_equal(ns, "foobarbaz");
free(ns);
}
static void test_replace_empty_replacement(void)
{
char *ns = SearchAndReplace("foobarbaz", "a", "");
assert_string_equal(ns, "foobrbz");
free(ns);
}
static void test_replace_eq_size(void)
{
char *new_string = SearchAndReplace("sasza szedl sucha szosa", "sz", "xx");
assert_string_equal(new_string, "saxxa xxedl sucha xxosa");
free(new_string);
}
static void test_replace_more_size(void)
{
char *new_string = SearchAndReplace("sasza szedl sucha szosa", "sz", "xxx");
assert_string_equal(new_string, "saxxxa xxxedl sucha xxxosa");
free(new_string);
}
static void test_replace_less_size(void)
{
char *new_string = SearchAndReplace("sasza szedl sucha szosa", "sz", "x");
assert_string_equal(new_string, "saxa xedl sucha xosa");
free(new_string);
}
static void test_no_replace(void)
{
char *new_string = SearchAndReplace("sasza szedl sucha szosa",
"no_such_pattern", "x");
assert_string_equal(new_string, "sasza szedl sucha szosa");
free(new_string);
}
/****************************************************************************
* Tests for StringReplace() *
* StringReplace and SearchAndReplace differ in that StringReplace errors *
* if the buffer is too small, and SearchAndReplace allocates sufficient *
* space. *
****************************************************************************/
static void test_string_replace_empty_replacement(void)
{
char string[] = "foobarbaz";
size_t actual_size = strlen(string);
ssize_t ret_size = StringReplace(string, actual_size + 1, "a", "");
// StringReplace returns the length without counting '\0'
assert_int_not_equal(ret_size, actual_size);
assert_string_equal(string, "foobrbz");
}
static void test_string_replace_eq_size(void)
{
char string[] = "sasza szedl sucha szosa";
size_t actual_size = strlen(string);
ssize_t ret_size = StringReplace(string, actual_size + 1, "sz", "xx");
assert_int_equal(ret_size, actual_size);
assert_string_equal(string, "saxxa xxedl sucha xxosa");
}
static void test_string_replace_buf_too_small(void)
{
char string[] = "sasza szedl sucha szosa";
size_t actual_size = sizeof(string);
ssize_t ret_size = StringReplace(string, actual_size, "sz", "xxx");
// Errors, `string` is retained
assert_int_equal(ret_size, (ssize_t) -1);
assert_string_equal(string, "sasza szedl sucha szosa");
}
static void test_string_replace_smaller(void)
{
char string[] = "sasza szedl sucha szosa";
size_t actual_size = strlen(string);
ssize_t ret_size = StringReplace(string, actual_size + 1, "sz", "x");
assert_int_not_equal(ret_size, actual_size);
assert_string_equal(string, "saxa xedl sucha xosa");
}
static void test_string_replace_none(void)
{
char string[] = "sasza szedl sucha szosa";
size_t actual_size = strlen(string);
ssize_t ret_size = StringReplace(string, actual_size + 1,
"no_such_pattern", "x");
assert_int_equal(ret_size, 0);
assert_string_equal(string, "sasza szedl sucha szosa");
}
static void test_string_replace_many_percentages(void)
{
char string[29] = "%%%%%%%%%%%%%%";
size_t actual_size = sizeof(string);
ssize_t ret_size = StringReplace(string, actual_size,
"%", "%%");
assert_int_equal(ret_size, actual_size - 1);
assert_string_equal(string, "%%%%%%%%%%%%%%%%%%%%%%%%%%%%");
}
static void test_string_replace_n(void)
{
char buf[11] = "1,2,3,4\0\0\0"; /* strlen(buf) == 7 */
ssize_t ret = StringReplaceN(buf, sizeof(buf), ",", "__", 2);
assert_int_equal(ret, 7 + 2);
assert_string_equal(buf, "1__2__3,4");
/* nothing should happen (n == 0) */
ret = StringReplaceN(buf, sizeof(buf), ",", "__", 0);
assert_int_equal(ret, 0);
assert_string_equal(buf, "1__2__3,4");
/* one replacement possible */
ret = StringReplaceN(buf, sizeof(buf), ",", "__", 2);
assert_int_equal(ret, 7 + 3);
assert_string_equal(buf, "1__2__3__4");
/* nothing should happen (n == 0) */
ret = StringReplaceN(buf, sizeof(buf), ",", "__", 0);
assert_int_equal(ret, 0);
assert_string_equal(buf, "1__2__3__4");
/* nothing should happen (nothing to replace) */
ret = StringReplaceN(buf, sizeof(buf), ",", "__", 5);
assert_int_equal(ret, 0);
assert_string_equal(buf, "1__2__3__4");
}
/****************************************************************************/
static void test_concatenate(void)
{
char *new_string = StringConcatenate(2, "snookie", "sitch");
assert_string_equal(new_string, "snookiesitch");
free(new_string);
new_string = StringConcatenate(4, "a", NULL, "c", "d");
assert_string_equal(new_string, "acd");
free(new_string);
new_string = StringConcatenate(3, "a", "b", "c", "d");
assert_string_equal(new_string, "abc");
free(new_string);
new_string = StringConcatenate(1, "stuff");
assert_string_equal(new_string, "stuff");
free(new_string);
new_string = StringConcatenate(0, NULL);
assert_false(new_string);
}
static void test_substring_overshoot(void)
{
char *new_string = StringSubstring("abcdef", 6, 0, 10);
assert_string_equal(new_string, "abcdef");
free(new_string);
}
static void test_substring_positive(void)
{
char *new_string = StringSubstring("abcdef", 6, 2, 3);
assert_string_equal(new_string, "cde");
free(new_string);
}
static void test_substring_negative_length(void)
{
char *new_string = StringSubstring("abcdef", 6, 2, -1);
assert_string_equal(new_string, "cde");
free(new_string);
}
static void test_substring_negative(void)
{
char *new_string = StringSubstring("abcdef", 6, -3, -1);
assert_string_equal(new_string, "de");
free(new_string);
}
static void test_substring_evil(void)
{
char *new_string = StringSubstring("abcdef", 6, 4, -4);
assert_int_equal(new_string, NULL);
}
static void test_string_to_long(void)
{
// Basic usage:
assert_int_equal(StringToLongExitOnError("0"), 0);
assert_int_equal(StringToLongExitOnError("-0"), 0);
assert_int_equal(StringToLongExitOnError("+0"), 0);
assert_int_equal(StringToLongExitOnError("123"), 123);
assert_int_equal(StringToLongExitOnError("+123"), 123);
// WARNING: Some platforms have 32-bit long, 2,147,483,647 is LONG_MAX
assert_int_equal(StringToLongExitOnError("2147483647"), 2147483647);
assert_int_equal(StringToLongExitOnError("1987654320"), 1987654320);
// Negative numbers:
assert_int_equal((int)StringToLongExitOnError("-1"), -1);
assert_int_equal( StringToLongExitOnError("-1"), (long)-1);
assert_int_equal((int)StringToLongExitOnError("-1"), -1);
assert_int_equal( StringToLongExitOnError("-1"), (long)-1);
// Leading spaces:
assert_int_equal(StringToLongExitOnError(" 0") , 0);
assert_int_equal(StringToLongExitOnError(" 123"), 123);
assert_int_equal(StringToLongExitOnError(" -123"), (long)-123);
assert_int_equal(StringToLongExitOnError(" 0"), 0);
assert_int_equal(StringToLongExitOnError(" 123"), 123);
assert_int_equal(StringToLongExitOnError(" -123"), (long)-123);
// Trailing spaces:
assert_int_equal(StringToLongExitOnError("0 "), 0);
assert_int_equal(StringToLongExitOnError("789 "), 789);
assert_int_equal(StringToLongExitOnError("-789 "), (long)-789);
assert_int_equal(StringToLongExitOnError("0 "), 0);
assert_int_equal(StringToLongExitOnError("789 "), 789);
assert_int_equal(StringToLongExitOnError("-789 "), (long)-789);
// More spaces:
assert_int_equal(StringToLongExitOnError(" 0 "), 0);
assert_int_equal(StringToLongExitOnError(" -0 "), 0);
assert_int_equal(StringToLongExitOnError(" 456 "), 456);
// Space separated numbers:
assert_int_equal(StringToLongExitOnError(" 456 9 "), 456);
assert_int_equal(StringToLongExitOnError("1 0"), 1);
}
static void test_string_to_long_default(void)
{
assert_int_equal(StringToLongDefaultOnError("0",10), 0);
assert_int_equal(StringToLongDefaultOnError(" ",10), 10);
assert_int_equal(StringToLongDefaultOnError("error",123), 123);
assert_int_equal(StringToLongDefaultOnError("-error",-123), (long)-123);
}
static void test_string_to_long_errors(void)
{
// A succesful call to StringToLong should return 0:
long target = 0;
assert_int_equal(StringToLong("1234", &target), 0);
assert_int_equal(target, 1234);
// Test that invalid inputs give error return code:
assert_int_not_equal(StringToLong("", &target), 0);
assert_int_not_equal(StringToLong(" ", &target), 0);
assert_int_not_equal(StringToLong("error", &target), 0);
assert_int_not_equal(StringToLong("-error", &target), 0);
assert_int_not_equal(StringToLong("ffff", &target), 0);
assert_int_not_equal(StringToLong("1d", &target), 0);
assert_int_not_equal(StringToLong("56789d", &target), 0);
assert_int_equal(StringToLong("9999999999999999999999999999999",
&target),
ERANGE);
assert_int_equal(StringToLong(" 999999999999999999999999999999",
&target),
ERANGE);
assert_int_equal(StringToLong("-999999999999999999999999999999",
&target),
ERANGE);
// Test that error logging function can be called:
LogStringToLongError("-999999999999999999999999999999", "string_lib_test",
ERANGE);
// Check that target is unmodified after errors:
assert_int_equal(target, 1234);
}
static void test_string_to_long_unsafe(void)
{
assert_int_equal(StringToLongUnsafe("0"), 0);
assert_int_equal(StringToLongUnsafe("1"), 1);
assert_int_equal(StringToLongUnsafe(" 0"), 0);
assert_int_equal(StringToLongUnsafe(" 1"), 1);
assert_int_equal(StringToLongUnsafe("-1"), (long)-1);
assert_int_equal(StringToLongUnsafe(" -1"), (long)-1);
assert_int_equal(StringToLongUnsafe(" -987"), (long)-987);
assert_int_equal(StringToLongUnsafe("1987654320"), 1987654320);
assert_int_equal(StringToLongUnsafe(" 1987654320"), 1987654320);
assert_int_equal(StringToLongUnsafe(" -1987654320"), (long)-1987654320);
// Weird edge case:
assert_int_equal(StringToLongUnsafe(""), 0);
}
// StringToLongExitOnError should replace StringToLongUnsafe:
#define assert_string_to_long_unsafe(x)\
{\
assert_int_equal(StringToLongExitOnError(x), StringToLongUnsafe(x));\
}
static void test_string_to_long_compatibility(void)
{
// All these inputs should give same result for new and old function:
assert_string_to_long_unsafe("0");
assert_string_to_long_unsafe("-1");
assert_string_to_long_unsafe("-0");
assert_string_to_long_unsafe(" -0");
assert_string_to_long_unsafe("1");
assert_string_to_long_unsafe("123");
assert_string_to_long_unsafe("1987654320");
assert_string_to_long_unsafe(" 1987654320");
// Old function (StringToLongUnsafe) does not allow trailing whitespace
}
#define ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(str, value_out, expected) \
assert_int_equal(StringDecimalToLong(str, &value_out), 0); \
assert_int_equal(value_out, expected)
static void test_string_decimal_to_long(void)
{
long value_out;
// Basic usage:
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("0.0", value_out, 0);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("-0.0", value_out, 0);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("+0.0", value_out, 0);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("123.0", value_out, 123);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("+123.0", value_out, 123);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("-123.0", value_out, (long) -123);
// Leading spaces:
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" 0.0", value_out, 0);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" 123.0", value_out, 123);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" -123.0", value_out, (long) -123);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" 0.0", value_out, 0); // 12 is max accepted int length
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" 123.0", value_out, 123);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" -123.0", value_out, (long) -123);
// Trailing spaces:
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("9.0 ", value_out, 9);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("789.0 ", value_out, 789);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("-789.0 ", value_out, (long) -789);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("9.0 ", value_out, 9);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("789.0 ", value_out, 789);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("-789.0 ", value_out, (long) -789);
// More spaces:
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" 0.0 ", value_out, 0);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" -0.0 ", value_out, 0);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" 123.0 ", value_out, 123);
// Space separated numbers:
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG(" 123.456 78 9 ", value_out, 123);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("123.0 45", value_out, 123);
// Edge case: it doesnt matter what is after the decimal point
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("789.0b", value_out, 789);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("123.blah", value_out, 123);
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("456.", value_out, 456);
}
static void test_string_decimal_to_long_errors(void)
{
// Successful call returns 0
long value_out;
ASSERT_INT_EQUAL_STRING_DECIMAL_TO_LONG("1234.5678", value_out, 1234);
assert_int_not_equal(StringDecimalToLong("", &value_out), 0);
assert_int_not_equal(StringDecimalToLong(" ", &value_out), 0);
assert_int_not_equal(StringDecimalToLong("error", &value_out), 0);
assert_int_not_equal(StringDecimalToLong("-error", &value_out), 0);
assert_int_not_equal(StringDecimalToLong("ffff", &value_out), 0);
assert_int_equal(StringDecimalToLong("999999999999999999999999999999.9", &value_out),
-84);
assert_int_equal(StringDecimalToLong(" 999999999999999999999999999999.9", &value_out),
-84);
assert_int_equal(StringDecimalToLong("-999999999999999999999999999999.9", &value_out),
-84);
// value_out should be unmodified after errors
assert_int_equal(value_out, 1234);
}
static void test_string_to_ulong(void)
{
// Basic usage:
assert_int_equal(StringToUlongExitOnError("0"), 0);
assert_int_equal(StringToUlongExitOnError("-0"), 0);
assert_int_equal(StringToUlongExitOnError("+0"), 0);
assert_int_equal(StringToUlongExitOnError("123"), 123);
assert_int_equal(StringToUlongExitOnError("+123"), 123);
// WARNING: Some platforms have 32-bit unsigned long, 4Â 294Â 967Â 295 is ULONG_MAX
assert_int_equal(StringToUlongExitOnError("2147483647"), 2147483647);
assert_int_equal(StringToUlongExitOnError("1987654320"), 1987654320);
// Leading spaces:
assert_int_equal(StringToUlongExitOnError(" 0") , 0);
assert_int_equal(StringToUlongExitOnError(" 123"), 123);
assert_int_equal(StringToUlongExitOnError(" -0"), 0);
assert_int_equal(StringToUlongExitOnError(" 0"), 0);
assert_int_equal(StringToUlongExitOnError(" 123"), 123);
assert_int_equal(StringToUlongExitOnError(" -0"), 0);
// Trailing spaces:
assert_int_equal(StringToUlongExitOnError("0 "), 0);
assert_int_equal(StringToUlongExitOnError("789 "), 789);
assert_int_equal(StringToUlongExitOnError("-0 "), 0);
assert_int_equal(StringToUlongExitOnError("0 "), 0);
assert_int_equal(StringToUlongExitOnError("789 "), 789);
assert_int_equal(StringToUlongExitOnError("+789 "), 789);
// More spaces:
assert_int_equal(StringToUlongExitOnError(" 0 "), 0);
assert_int_equal(StringToUlongExitOnError(" -0 "), 0);
assert_int_equal(StringToUlongExitOnError(" 456 "), 456);
// Space separated numbers:
assert_int_equal(StringToUlongExitOnError(" 456 9 "), 456);
assert_int_equal(StringToUlongExitOnError("1 0"), 1);
}
static void test_string_to_ulong_default(void)
{
assert_int_equal(StringToUlongDefaultOnError("0",10), 0);
assert_int_equal(StringToUlongDefaultOnError(" ",10), 10);
assert_int_equal(StringToUlongDefaultOnError("error",123), 123);
assert_int_equal(StringToUlongDefaultOnError("-123",0), 0);
}
static void test_string_to_ulong_errors(void)
{
// A succesful call to StringToLong should return 0:
long target = 0;
assert_int_equal(StringToUlong("1234", &target), 0);
assert_int_equal(target, 1234);
// Test that invalid inputs give error return code:
assert_int_not_equal(StringToUlong("", &target), 0);
assert_int_not_equal(StringToUlong(" ", &target), 0);
assert_int_not_equal(StringToUlong("error", &target), 0);
assert_int_not_equal(StringToUlong("-error", &target), 0);
assert_int_not_equal(StringToUlong("ffff", &target), 0);
assert_int_not_equal(StringToUlong("1d", &target), 0);
assert_int_not_equal(StringToUlong("56789d", &target), 0);
assert_int_equal(StringToUlong("9999999999999999999999999999999",
&target),
ERANGE);
assert_int_equal(StringToUlong(" 999999999999999999999999999999",
&target),
ERANGE);
assert_int_equal(StringToUlong("-1",
&target),
ERANGE);
// Test that error logging function can be called:
LogStringToLongError("-999999999999999999999999999999", "string_lib_test",
ERANGE);
// Check that target is unmodified after errors:
assert_int_equal(target, 1234);
}
static void test_string_to_int64(void)
{
assert_int_equal(StringToInt64ExitOnError("0"), 0);
assert_int_equal(StringToInt64ExitOnError("-0"), 0);
assert_int_equal(StringToInt64ExitOnError("+0"), 0);
assert_int_equal(StringToInt64ExitOnError("123"), 123);
assert_int_equal(StringToInt64ExitOnError("+123"), 123);
assert_int_equal(StringToInt64ExitOnError("9999999999"), 9999999999);
assert_int_equal(StringToInt64ExitOnError("-9999999999"), -9999999999);
assert_int_equal(StringToInt64ExitOnError("1234 "), 1234);
assert_int_equal(StringToInt64ExitOnError("1234\n"), 1234);
assert_int_equal(StringToInt64DefaultOnError("123", -1), 123);
assert_int_equal(StringToInt64DefaultOnError("9999999999", 0), 9999999999);
assert_int_equal(StringToInt64DefaultOnError("-9999999999", 0), -9999999999);
assert_int_equal(StringToInt64DefaultOnError("", 456), 456);
assert_int_equal(StringToInt64DefaultOnError(" ", 456), 456);
assert_int_equal(StringToInt64DefaultOnError("\n", 456), 456);
assert_int_equal(StringToInt64DefaultOnError("a", 456), 456);
assert_int_equal(StringToInt64DefaultOnError("abc", 456), 456);
assert_int_equal(StringToInt64DefaultOnError("k", 456), 456);
{
// Paranoid test, ensure value is not cast to smaller type:
int error_code;
int64_t out;
error_code = StringToInt64("9223372036854775807", &out);
assert_int_equal(error_code, 0);
assert_true(out == 9223372036854775807);
error_code = StringToInt64("-9223372036854775808", &out);
assert_int_equal(error_code, 0);
// https://stackoverflow.com/a/60323339 :
assert_true(out == -9223372036854775807 - 1);
}
{
// Error cases:
// Give bad address - function should not read/write to it
int error_code;
error_code = StringToInt64("", NULL + 1);
assert_true(error_code != 0);
error_code = StringToInt64(" ", NULL + 1);
assert_true(error_code != 0);
error_code = StringToInt64("-", NULL + 1);
assert_true(error_code != 0);
error_code = StringToInt64("\n", NULL + 1);
assert_true(error_code != 0);
error_code = StringToInt64("[]", NULL + 1);
assert_true(error_code != 0);
error_code = StringToInt64("{}", NULL + 1);
assert_true(error_code != 0);
error_code = StringToInt64("\"\"", NULL + 1);
assert_true(error_code != 0);
error_code = StringToInt64("e", NULL + 1);
assert_true(error_code != 0);
error_code = StringToInt64("1234abc", NULL + 1);
assert_true(error_code != 0);
}
}
static void test_string_from_long(void)
{
char *result = StringFromLong(123456789);
assert_string_equal("123456789", result);
free(result);
result = StringFromLong(-123456789);
assert_string_equal("-123456789", result);
free(result);
}
static void test_string_to_double(void)
{
assert_true(1234.1234 == StringToDouble("1234.1234"));
}
static void test_string_from_double(void)
{
char *result = StringFromDouble(1234.1234);
assert_string_equal("1234.12", result);
free(result);
}
static void test_safe_compare(void)
{
// Strings which are equal:
assert_true(StringSafeCompare(NULL, NULL) == 0);
assert_true(StringSafeCompare("", "") == 0);
assert_true(StringSafeCompare("a", "a") == 0);
assert_true(StringSafeCompare("abc", "abc") == 0);
assert_true(StringSafeCompare("Hello, world!", "Hello, world!") == 0);
// Strings which are not equal:
assert_true(StringSafeCompare("abc", "abC") != 0);
assert_true(StringSafeCompare("a", "b") != 0);
// Test ordering of strings (correct sign):
assert_true(StringSafeCompare(NULL, "a") <= -1);
assert_true(StringSafeCompare("", "a") <= -1);
assert_true(StringSafeCompare("a", NULL) >= 1);
assert_true(StringSafeCompare("a", "") >= 1);
assert_true(StringSafeCompare("albatross", "bear") <= -1);
assert_true(StringSafeCompare("lynx", "chicken") >= 1);
}
static void test_safe_equal(void)
{
assert_true(StringEqual(NULL, NULL));
assert_true(StringEqual("a", "a"));
assert_true(StringEqual("abcdefghijklmnopqrstuvwxyz", "abcdefghijklmnopqrstuvwxyz"));
assert_true(StringEqual("0123456789", "0123456789"));
assert_true(StringEqual("CamelCase", "CamelCase"));
assert_true(StringEqual("(){}[]<>", "(){}[]<>"));
assert_true(StringEqual("+-*/%%^", "+-*/%%^"));
assert_false(StringEqual("", NULL));
assert_false(StringEqual(NULL, ""));
assert_false(StringEqual("a", "b"));
assert_false(StringEqual("a", "A"));
assert_false(StringEqual("abc def", "abc deF"));
}
static void test_safe_compare_ignore_case(void)
{
// Strings which are equal:
assert_true(StringSafeCompare_IgnoreCase(NULL, NULL) == 0);
assert_true(StringSafeCompare_IgnoreCase("", "") == 0);
assert_true(StringSafeCompare_IgnoreCase("a", "a") == 0);
assert_true(StringSafeCompare_IgnoreCase("abc", "abc") == 0);
assert_true(StringSafeCompare_IgnoreCase("Hello, world!", "Hello, world!") == 0);
// Strings with only case differences:
assert_true(StringSafeCompare_IgnoreCase("abc", "abC") == 0);
assert_true(StringSafeCompare_IgnoreCase("a", "A") == 0);
assert_true(StringSafeCompare_IgnoreCase("HELLO, WORLD!", "Hello, world!") == 0);
assert_true(StringSafeCompare_IgnoreCase("HELLO, WORLD!", "hello, world!") == 0);
// Test ordering of strings (correct sign):
assert_true(StringSafeCompare_IgnoreCase(NULL, "a") <= -1);
assert_true(StringSafeCompare_IgnoreCase("", "a") <= -1);
assert_true(StringSafeCompare_IgnoreCase("a", NULL) >= 1);
assert_true(StringSafeCompare_IgnoreCase("a", "") >= 1);
assert_true(StringSafeCompare_IgnoreCase("albatross", "bear") <= -1);
assert_true(StringSafeCompare_IgnoreCase("lynx", "chicken") >= 1);
// Cases where StringSafeCompare and StringSafeCompare_IgnoreCase should be the same:
assert_int_equal(StringSafeCompare("a", "b"), StringSafeCompare_IgnoreCase("a", "b"));
assert_int_equal(StringSafeCompare("a", "b"), StringSafeCompare_IgnoreCase("A", "B"));
assert_int_equal(StringSafeCompare("A", "B"), StringSafeCompare_IgnoreCase("a", "b"));
assert_int_equal(StringSafeCompare("bbc", "bbd"), StringSafeCompare_IgnoreCase("BBC", "bbd"));
assert_int_equal(StringSafeCompare("bbc", "bbd"), StringSafeCompare_IgnoreCase("BBC", "BBd"));
}
static void test_safe_equal_ignore_case(void)
{
assert_true(StringEqual_IgnoreCase(NULL, NULL));
assert_true(StringEqual_IgnoreCase("a", "a"));
assert_true(StringEqual_IgnoreCase("a", "A"));
assert_true(StringEqual_IgnoreCase(hi_alphabet, lo_alphabet));
assert_true(StringEqual_IgnoreCase("0123456789", "0123456789"));
assert_true(StringEqual_IgnoreCase("CamelCase", "camelcase"));
assert_true(StringEqual_IgnoreCase("(){}[]<>", "(){}[]<>"));
assert_true(StringEqual_IgnoreCase("+-*/%%^", "+-*/%%^"));
assert_true(StringEqual_IgnoreCase("abc def", "abc deF"));
assert_false(StringEqual_IgnoreCase("", NULL));
assert_false(StringEqual_IgnoreCase(NULL, ""));
assert_false(StringEqual_IgnoreCase("a", "b"));
}
static void test_safe_equal_n(void)
{
assert_true(StringEqualN("abcd", "abcX", 3));
assert_true(StringEqualN_IgnoreCase("abcd", "ABCX", 3));
assert_false(StringEqualN("abcd", "abXX", 3));
assert_false(StringEqualN_IgnoreCase("abcd", "ABXX", 3));
assert_true(StringEqualN("123abc", "123abc", 1000));
assert_true(StringEqualN_IgnoreCase("123abc", "123ABC", 1000));
}
static void test_is_string_in_array(void)
{
const char *array[5] = {"one", "two", "three", "four", "five"};
assert_true(IsStringInArray("one", array, 5));
assert_true(IsStringInArray("two", array, 5));
assert_true(IsStringInArray("three", array, 5));
assert_true(IsStringInArray("four", array, 5));
assert_true(IsStringInArray("five", array, 5));
assert_false(IsStringInArray("fire", array, 5));
assert_false(IsStringInArray("five", array, 3));
const char **new_array = calloc(3, sizeof(char*));
new_array[0] = "one";
new_array[1] = "two";
new_array[2] = "three";
assert_true(IsStringInArray("one", new_array, 3));
assert_true(IsStringInArray("two", new_array, 3));
assert_true(IsStringInArray("three", new_array, 3));
assert_false(IsStringInArray("fire", array, 3));
assert_false(IsStringInArray("three", array, 2));
free(new_array);
}
static void test_encode_base64(void)
{
#ifdef WITH_OPENSSL
{
char *res = StringEncodeBase64("", 0);
assert_string_equal("", res);
free(res);
}
{
char *res = StringEncodeBase64("a", 1);
assert_string_equal("YQ==", res);
free(res);
}
{
char *res = StringEncodeBase64("aa", 2);
assert_string_equal("YWE=", res);
free(res);
}
{
char *res = StringEncodeBase64("aaa", 3);
assert_string_equal("YWFh", res);
free(res);
}
{
char *res = StringEncodeBase64("aaaa", 4);
assert_string_equal("YWFhYQ==", res);
free(res);
}
{
char *res = StringEncodeBase64("snookie", 7);
assert_string_equal("c25vb2tpZQ==", res);
free(res);
}
{
char *res = StringEncodeBase64("test", 4);
assert_string_equal("dGVzdA==", res);
free(res);
}
// valgrind leaks should be due to crypto one-time allocations
#endif // WITH_OPENSSL
}
static void test_escape_char_copy(void)
{
char *in1 = "my test with no escape";
char *out1 = EscapeCharCopy(in1, '7', '\\');
assert_string_equal(out1, in1);
free(out1);
char *in2 = "my test with 'some' escape";
char *out2 = EscapeCharCopy(in2, '\'', '\\');
assert_string_equal(out2, "my test with \\'some\\' escape");
free(out2);
char *in3 = "my test with 7some7";
char *out3 = EscapeCharCopy(in3, '7', '\\');
assert_string_equal(out3, "my test with \\7some\\7");
free(out3);
char *in4 = "\"my\" test with 7some7";
char *out4 = EscapeCharCopy(in4, '\"', '\\');
assert_string_equal(out4, "\\\"my\\\" test with 7some7");
free(out4);
char *in5 = "\"my test with 7some7\"";
char *out5 = EscapeCharCopy(in5, '\"', '\\');
assert_string_equal(out5, "\\\"my test with 7some7\\\"");
free(out5);
}
static void test_chop_no_spaces(void)
{
char s[] = "abc";
Chop(s, CF_EXPANDSIZE);
assert_string_equal("abc", s);
}
static void test_chop_single_space(void)
{
char s[] = "abc ";
Chop(s, CF_EXPANDSIZE);
assert_string_equal("abc", s);
}
static void test_chop_two_spaces(void)
{
char s[] = "abc ";
Chop(s, CF_EXPANDSIZE);
assert_string_equal("abc", s);
}
static void test_chop_empty(void)
{
char s[] = "";
Chop(s, CF_EXPANDSIZE);
assert_string_equal("", s);
}
static void test_chop_empty_single_space(void)
{
char s[] = " ";
Chop(s, CF_EXPANDSIZE);
assert_string_equal("", s);
}
static void test_chop_empty_two_spaces(void)
{
char s[] = " ";
Chop(s, CF_EXPANDSIZE);
assert_string_equal("", s);
}
static void test_trim_crlf(void)
{
{
char *const data = xstrdup("\r\n");
const size_t new_length = TrimCSVLineCRLF(data);
assert_string_equal(data, "");
assert_int_equal(new_length, 0);
free(data);
}
{
char *const data = xstrdup("\r\n\r\n");
const size_t new_length = TrimCSVLineCRLF(data);
assert_string_equal(data, "\r\n");
assert_int_equal(new_length, 2);
free(data);
}
{
char *const data = xstrdup(",");
const size_t new_length = TrimCSVLineCRLF(data);
assert_string_equal(data, ",");
assert_int_equal(new_length, 1);
free(data);
}
{
char *const data = xstrdup(",\r\n");
const size_t new_length = TrimCSVLineCRLF(data);
assert_string_equal(data, ",");
assert_int_equal(new_length, 1);
free(data);
}
{
char *const data = xstrdup("a,b,c,d,\" \"\r\n");
const size_t new_length = TrimCSVLineCRLF(data);
assert_string_equal(data, "a,b,c,d,\" \"");
assert_int_equal(new_length, strlen(data));
free(data);
}
{
char *const data = xstrdup(" ,\r\n");
const size_t new_length = TrimCSVLineCRLF(data);
assert_string_equal(data, " ,");
assert_int_equal(new_length, strlen(data));
free(data);
}
{
const char *const original = ",\r\n";
char *const a = xstrdup(original);
char *const b = xstrdup(original);
const size_t a_len = TrimCSVLineCRLF(a);
const size_t b_len = TrimCSVLineCRLF(b);
assert_string_equal(a, ",");
assert_string_equal(b, ",");
assert_int_equal(a_len, b_len);
const size_t bb_len = TrimCSVLineCRLF(b);
assert_int_equal(b_len, bb_len);
assert_string_equal(b, ",");
free(a);
free(b);
}
// Test strict version, which has assertions for empty strings and spaces:
{
char *const data = xstrdup(",\r\n");
const size_t new_length = TrimCSVLineCRLFStrict(data);
assert_string_equal(data, ",");
assert_int_equal(new_length, 1);
free(data);
}
{
char *const data = xstrdup(",");
const size_t new_length = TrimCSVLineCRLFStrict(data);
assert_string_equal(data, ",");
assert_int_equal(new_length, 1);
free(data);
}
{
char *const data = xstrdup("'\r\n',\r\n");
const size_t new_length = TrimCSVLineCRLFStrict(data);
assert_string_equal(data, "'\r\n',");
assert_int_equal(new_length, strlen(data));
free(data);
}
{
char *const data = xstrdup("a,b,c,d,\" \"\r\n");
const size_t new_length = TrimCSVLineCRLFStrict(data);
assert_string_equal(data, "a,b,c,d,\" \"");
assert_int_equal(new_length, strlen(data));
free(data);
}
{
char *const data = xstrdup("'\r\n',\r\n");
const size_t new_length = TrimCSVLineCRLFStrict(data);
assert_string_equal(data, "'\r\n',");
assert_int_equal(new_length, strlen(data));
free(data);
}
}
static void test_close_hole(void)
{
char *test_string = xstrdup("test");
StringCloseHole(test_string, 0, 0);
assert_string_equal(test_string, "test");
StringCloseHole(test_string, 4, 4);
assert_string_equal(test_string, "test");
size_t length = strlen(test_string);
StringCloseHole(test_string, length - 1, length);
assert_string_equal(test_string, "tes");
StringCloseHole(test_string, 0, 1);
assert_string_equal(test_string, "es");
StringCloseHole(test_string, 1, 2);
assert_string_equal(test_string, "e");
StringCloseHole(test_string, 0, 1);
assert_string_equal(test_string, "");
free(test_string);
}
static void test_ends_with(void)
{
assert_true(StringEndsWith("file.json", ".json"));
assert_true(StringEndsWith("file.json", "file.json"));
assert_false(StringEndsWith(".json", "file"));
assert_false(StringEndsWith("a", "aa"));
}
char *test_stringvformat_sup(const char *s, ...)
{
va_list ap;
va_start(ap, s);
char *fmted = StringVFormat(s, ap);
va_end(ap);
return fmted;
}
static void test_stringvformat(void)
{
char *s = test_stringvformat_sup("%s%d", "abc", 42);
assert_string_equal(s, "abc42");
free(s);
}
static void test_stringformat(void)
{
char *s = StringFormat("%d%s%d", 1, "a", 2);
assert_string_equal(s, "1a2");
free(s);
}
static void test_string_copy(void)
{
char a[0 + 1];
char b[1 + 1];
char c[2 + 1];
char non_terminated[3];
const size_t str_len = 3;
const size_t buf_size = str_len + 1;
char d[buf_size];
char e[buf_size];
char f[buf_size];
char g[buf_size];
char h[buf_size];
// Non terminated string source:
non_terminated[0] = '3';
non_terminated[1] = '4';
non_terminated[2] = '5';
// Returns 3 since it was truncated to a string of length 2:
// (The original was at least 3 bytes long and did not fit).
assert_int_equal(3, StringCopy(non_terminated, d, 3));
assert_string_equal(d, "34");
// Too long string source (returns buf_size, NUL terminates and truncates):
assert_int_equal(buf_size, StringCopy("longstring", d, buf_size));
assert_string_equal(d, "lon");
assert_int_equal(0, StringCopy("", a, 1));
assert_int_equal(1, StringCopy("A", b, 2));
assert_int_equal(2, StringCopy("BC", c, 3));
assert_int_equal(3, StringCopy("DEF", d, buf_size));
assert_int_equal(4, StringCopy("GHIJ", e, buf_size));
assert_int_equal(4, StringCopy("KLMNO", f, buf_size));
assert_int_equal(4, StringCopy("PQRSTU", g, buf_size));
assert_int_equal(4, StringCopy("VWXYZ 1", h, buf_size));
assert_string_equal(a, "");
assert_string_equal(b, "A");
assert_string_equal(c, "BC");
assert_string_equal(d, "DEF");
assert_string_equal(e, "GHI");
assert_string_equal(f, "KLM");
assert_string_equal(g, "PQR");
assert_string_equal(h, "VWX");
assert_int_equal(1, StringCopy(d, a, 1)); // Truncated, 1 NUL byte written
assert_int_equal(2, StringCopy(d, b, 2)); // Truncated, 2 bytes written
assert_int_equal(3, StringCopy(d, c, 3)); // Truncated, 3 bytes written
// src == dst isn't allowed, have to skip d
assert_int_equal(3, StringCopy(d, e, buf_size));
assert_int_equal(3, StringCopy(d, f, buf_size));
assert_int_equal(3, StringCopy(d, g, buf_size));
assert_int_equal(3, StringCopy(d, h, buf_size));
assert_string_equal(a, "");
assert_string_equal(b, "D");
assert_string_equal(c, "DE");
assert_string_equal(d, "DEF");
assert_string_equal(e, "DEF");
assert_string_equal(f, "DEF");
assert_string_equal(g, "DEF");
assert_string_equal(h, "DEF");
// Let's also try a longer string:
int length = strlen(lo_alphabet);
char buf[1024];
assert_int_equal(length, StringCopy(lo_alphabet, buf, 1024));
assert_string_equal(buf, lo_alphabet);
// Let's check that we haven't corrupted the stack somehow:
assert_true(non_terminated[0] == '3');
assert_true(non_terminated[1] == '4');
assert_true(non_terminated[2] == '5');
assert_string_equal(d, "DEF");
assert_int_equal(3, StringCopy(non_terminated, d, 3));
assert_string_equal(d, "34");
// Let's check that we don't write out of specified maximum
char ones[2] = {'1', '1'};
assert_int_equal(0, StringCopy("", ones, 1));
assert_true(ones[0] == '\0');
assert_true(ones[1] == '1');
}
static void test_stringscanfcapped(void)
{
char buf[20];
char sp[30];
strcpy(sp,"");
StringNotMatchingSetCapped(sp,20,"\n",buf);
assert_string_equal(buf, "");
strcpy(sp,"\n");
StringNotMatchingSetCapped(sp,20,"\n",buf);
assert_string_equal(buf, "");
strcpy(sp,"\n2345678901234567890abcdefghi");
StringNotMatchingSetCapped(sp,20,"\n",buf);
assert_string_equal(buf, "");
strcpy(sp,"12345678901234567890abcdefghi");
StringNotMatchingSetCapped(sp,20,"\n",buf);
assert_string_equal(buf, "1234567890123456789");
strcpy(sp,"12345678901234567890abcde\nghi");
StringNotMatchingSetCapped(sp,20,"\n",buf);
assert_string_equal(buf, "1234567890123456789");
strcpy(sp,"123456789012345\n7890abcdefghi");
StringNotMatchingSetCapped(sp,20,"\n",buf);
assert_string_equal(buf, "123456789012345");
}
static void test_PathAppend(void)
{
char dst[10];
bool ret;
{ /* fits */
dst[0] = '\0';
ret = PathAppend(dst, sizeof(dst), "blah", '/');
assert_string_equal(dst, "/blah");
assert_true(ret);
}
{ /* SAME, but string already has separator */
strcpy(dst, "/");
ret = PathAppend(dst, sizeof(dst), "blah", '/');
assert_string_equal(dst, "/blah");
assert_true(ret);
}
{ /* trailing separator */
dst[0] = '\0';
ret = PathAppend(dst, sizeof(dst), "blah/", '/');
assert_string_equal(dst, "/blah/");
assert_true(ret);
}
{ /* SAME, but string already has separator ahead */
strcpy(dst, "/");
ret = PathAppend(dst, sizeof(dst), "blah/", '/');
assert_string_equal(dst, "/blah/");
assert_true(ret);
}
{ /* barely fits */
dst[0] = '\0';
ret = PathAppend(dst, 6, "blah", '/');
assert_string_equal(dst, "/blah");
assert_true(ret);
}
{ /* SAME, but string already has separator */
strcpy(dst, "/");
ret = PathAppend(dst, 6, "blah", '/');
assert_string_equal(dst, "/blah");
assert_true(ret);
}
{ /* barely not fits (off by one), do nothing */
dst[0] = '\0';
ret = PathAppend(dst, 5, "blah", '/');
assert_string_equal(dst, "");
assert_false(ret);
}
{ /* SAME, but string already has separator */
strcpy(dst, "/");
ret = PathAppend(dst, 5, "blah", '/');
assert_string_equal(dst, "/");
assert_false(ret);
}
{ /* overflow, do nothing */
dst[0] = '\0';
ret = PathAppend(dst, 2, "blah", '/');
assert_string_equal(dst, "");
assert_false(ret);
}
{ /* SAME, but string already has separator */
strcpy(dst, "/");
ret = PathAppend(dst, 2, "blah", '/');
assert_string_equal(dst, "/");
assert_false(ret);
}
}
static void test_StrCat(void)
{
char dst[10];
size_t dst_len;
{
dst[0] = '\0';
dst_len = 0;
StrCat(dst, sizeof(dst), &dst_len, "blah", 0);
assert_string_equal(dst, "blah");
assert_int_equal(dst_len, 4);
StrCat(dst, sizeof(dst), &dst_len, "", 0);
assert_string_equal(dst, "blah");
assert_int_equal(dst_len, 4);
StrCat(dst, sizeof(dst), &dst_len, " ", 0);
assert_string_equal(dst, "blah ");
assert_int_equal(dst_len, 5);
StrCat(dst, sizeof(dst), &dst_len, "blue", 0);
assert_string_equal(dst, "blah blue");
assert_int_equal(dst_len, 9);
/* Append one OVERFLOWing character. */
StrCat(dst, sizeof(dst), &dst_len, "1", 0);
/* It should protect against overflow. */
assert_string_equal(dst, "blah blue");
/* But the length indicates the needed length. */
assert_int_equal(dst_len, 10);
}
{ /* The string to append is not '\0'-terminated */
const char *src = "blah blue";
dst[0] = '\0';
dst_len = 0;
StrCat(dst, sizeof(dst), &dst_len, src, 4);
assert_string_equal(dst, "blah");
assert_int_equal(dst_len, 4);
StrCat(dst, sizeof(dst), &dst_len, src, 4);
assert_string_equal(dst, "blahblah");
assert_int_equal(dst_len, 8);
StrCat(dst, sizeof(dst), &dst_len, src, 2);
assert_string_equal(dst, "blahblahb"); /* overflow */
assert_int_equal(dst_len, 10);
}
{
dst[0] = '\0';
dst_len = 0;
StrCat(dst, 4, &dst_len, "blah", 0);
assert_string_equal(dst, "bla");
/* Overflow so dst_len indicates the needed length. */
assert_int_equal(dst_len, 4);
StrCat(dst, 4, &dst_len, "", 0);
assert_string_equal(dst, "bla");
assert_int_equal(dst_len, 4);
StrCat(dst, 4, &dst_len, "blue", 0);
assert_string_equal(dst, "bla");
assert_int_equal(dst_len, 8);
}
{ /* SAME but pass NULL as dst_len */
dst[0] = '\0';
StrCat(dst, 4, NULL, "blah", 0);
assert_string_equal(dst, "bla");
StrCat(dst, 4, NULL, "", 0);
assert_string_equal(dst, "bla");
StrCat(dst, 4, NULL, "blue", 0);
assert_string_equal(dst, "bla");
}
{ /* Do not reset dst but reset only dst_len. */
dst_len = 0;
StrCat(dst, sizeof(dst), &dst_len, "1", 0);
assert_string_equal(dst, "1");
assert_int_equal(dst_len, 1);
}
}
static void test_StrCatDelim(void)
{
char dst[10];
size_t dst_len;
{ /* Simple appends, we don't care about truncation. */
dst[0] = '\0';
StrCatDelim(dst, sizeof(dst), NULL, "blah", ',');
StrCatDelim(dst, sizeof(dst), NULL, "blah", ',');
assert_string_equal(dst, "blah,blah");
StrCatDelim(dst, sizeof(dst), NULL, "blah", ',');
assert_string_equal(dst, "blah,blah");
StrCatDelim(dst, sizeof(dst), NULL, "1", ',');
assert_string_equal(dst, "blah,blah");
}
{ /* SAME, but check truncation. */
dst[0] = '\0';
dst_len = 0;
StrCatDelim(dst, sizeof(dst), &dst_len, "blah", ',');
assert_int_equal(dst_len, 4);
StrCatDelim(dst, sizeof(dst), &dst_len, "blah", ',');
assert_string_equal(dst, "blah,blah");
assert_int_equal(dst_len, 9);
StrCatDelim(dst, sizeof(dst), &dst_len, "blah", ',');
assert_string_equal(dst, "blah,blah");
assert_int_equal(dst_len, 14); /* needed length */
StrCatDelim(dst, sizeof(dst), &dst_len, "1", ',');
assert_string_equal(dst, "blah,blah");
assert_int_equal(dst_len, 16);
}
{ /* Only the comma fits. */
strcpy(dst, "12345678");
StrCatDelim(dst, sizeof(dst), NULL, "1", ',');
assert_string_equal(dst, "12345678");
}
{ /* SAME, but check truncation. */
strcpy(dst, "12345678");
dst_len = 8;
StrCatDelim(dst, sizeof(dst), &dst_len, "1", ',');
assert_string_equal(dst, "12345678");
assert_int_equal(dst_len, 10); /* 10 is the needed length */
}
}
static void test_StringMatchesOption(void)
{
assert_true(StringMatchesOption("-i", "--info", "-i"));
assert_false(StringMatchesOption("-i", "--info", "-I"));
assert_true(StringMatchesOption("--info", "--inform", "-I"));
assert_false(StringMatchesOption("--inform-me", "--info", "-I"));
assert_true(StringMatchesOption("--client", "--clients", "-C"));
assert_true(StringMatchesOption("--hub", "--hubs", "-H"));
assert_true(StringMatchesOption("--host", "--hosts", "-H"));
}
static void test_StringFind(void)
{
static const char *const str = "Hello CFEngine";
const size_t len = strlen(str);
assert_int_equal(StringFind(str, "C", 0, len), 6l);
assert_int_equal(StringFind(str, "C", 7, len), -1l);
assert_int_equal(StringFind(str, "C", 6, len), 6l);
assert_int_equal(StringFind(str, "C", 6, 6), -1l);
assert_int_equal(StringFind(str, "C", 6, 7), 6l);
assert_int_equal(StringFind(str, "FC", 0, len), -1l);
assert_int_equal(StringFind(str, "CF", 0, len), 6l);
assert_int_equal(StringFind(str, "H", 0, 0), -1l);
assert_int_equal(StringFind(str, "H", 0, 1), 0l);
assert_int_equal(StringFind(str, "e", len - 1, len), len - 1l);
assert_int_equal(StringFind(str, "e", len - 1, len - 1), -1l);
assert_int_equal(StringFind(str, "Hello CFEngine in the house", 0, 1), -1l);
assert_int_equal(StringFind(str, "CF", 0, 9999), 6l);
assert_int_equal(StringFind(str, "CF", 8888, 9999), -1l);
assert_int_equal(StringFind(str, "CF", 8888, 0), -1l);
}
int main()
{
PRINT_TEST_BANNER();
const UnitTest tests[] =
{
unit_test(test_get_token),
unit_test(test_mix_case_tolower),
unit_test(test_empty_tolower),
unit_test(test_weird_chars_tolower),
unit_test(test_alphabet_tolower),
unit_test(test_hi_alphabet_tolower),
unit_test(test_inplace_tolower),
unit_test(test_mix_case_toupper),
unit_test(test_empty_toupper),
unit_test(test_weird_chars_toupper),
unit_test(test_alphabet_toupper),
unit_test(test_hi_alphabet_toupper),
unit_test(test_inplace_toupper),
unit_test(test_replace_empty_pattern),
unit_test(test_replace_empty_replacement),
unit_test(test_long_search),
unit_test(test_replace_eq_size),
unit_test(test_replace_more_size),
unit_test(test_replace_less_size),
unit_test(test_no_replace),
unit_test(test_string_replace_empty_replacement),
unit_test(test_string_replace_eq_size),
unit_test(test_string_replace_buf_too_small),
unit_test(test_string_replace_smaller),
unit_test(test_string_replace_none),
unit_test(test_string_replace_many_percentages),
unit_test(test_string_replace_n),
unit_test(test_concatenate),
unit_test(test_substring_overshoot),
unit_test(test_substring_positive),
unit_test(test_substring_negative_length),
unit_test(test_substring_negative),
unit_test(test_substring_evil),
unit_test(test_string_to_long),
unit_test(test_string_to_long_default),
unit_test(test_string_to_long_errors),
unit_test(test_string_to_long_unsafe),
unit_test(test_string_to_long_compatibility),
unit_test(test_string_to_ulong),
unit_test(test_string_to_ulong_default),
unit_test(test_string_to_ulong_errors),
unit_test(test_string_to_int64),
unit_test(test_string_from_long),
unit_test(test_string_to_double),
unit_test(test_string_from_double),
unit_test(test_string_decimal_to_long),
unit_test(test_string_decimal_to_long_errors),
unit_test(test_safe_compare),
unit_test(test_safe_equal),
unit_test(test_safe_compare_ignore_case),
unit_test(test_safe_equal_ignore_case),
unit_test(test_safe_equal_n),
unit_test(test_is_string_in_array),
unit_test(test_encode_base64),
unit_test(test_escape_char_copy),
unit_test(test_chop_no_spaces),
unit_test(test_chop_single_space),
unit_test(test_chop_two_spaces),
unit_test(test_chop_empty),
unit_test(test_chop_empty_single_space),
unit_test(test_chop_empty_two_spaces),
unit_test(test_trim_crlf),
unit_test(test_close_hole),
unit_test(test_ends_with),
unit_test(test_stringformat),
unit_test(test_stringvformat),
unit_test(test_string_copy),
unit_test(test_stringscanfcapped),
unit_test(test_PathAppend),
unit_test(test_StrCat),
unit_test(test_StrCatDelim),
unit_test(test_StringMatchesOption),
unit_test(test_StringFind),
};
return run_tests(tests);
}
|