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
|
// $Id: OS_Test.cpp 93542 2011-03-13 14:05:46Z olli $
// ============================================================================
//
// = LIBRARY
// tests
//
// = DESCRIPTION
// This simple test exercises and illustrates use of OS wrapper functions.
//
// = AUTHOR
// Steve Huston <shuston@riverace.com>
//
// ============================================================================
#include "test_config.h"
#include "ace/ACE.h"
//FUZZ: disable check_for_include_OS_h
#include "ace/OS.h"
//FUZZ: enable check_for_include_OS_h
#include "ace/OS_NS_math.h"
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_strings.h"
#include "ace/OS_NS_stdlib.h"
#include "ace/OS_NS_sys_time.h"
#include "ace/OS_NS_time.h"
#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_sys_stat.h"
#include "ace/OS_NS_unistd.h"
#include "ace/OS_NS_errno.h"
#include "ace/OS_NS_ctype.h"
#include "ace/OS_NS_netdb.h"
#undef THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
#define THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL(X) \
((X) \
? static_cast<void>(0) \
: ACE_VERSIONED_NAMESPACE_NAME::__ace_assert(__FILE__, __LINE__, ACE_TEXT_CHAR_TO_TCHAR (#X)))
// Test ACE_OS::access() to be sure a file's existence is correctly noted.
int
access_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing access method\n")));
int test_status = 0;
int status = ACE_OS::access (ACE_TEXT ("missing_file.txt"), F_OK);
if (status == -1)
{
if (errno == ENOTSUP)
ACE_ERROR_RETURN ((LM_INFO,
ACE_TEXT ("ACE_OS::access() not supported\n")),
0);
}
else
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Missing file noted as present.\n")));
test_status = -1;
}
return test_status;
}
// Test ACE_OS::rename to be sure the files come and go as expected.
int
rename_test (void)
{
#if defined (ACE_VXWORKS)
// On VxWorks only some filesystem drivers support rename
// and as we do not know which is used, skip the test here
ACE_ERROR_RETURN ((LM_INFO,
ACE_TEXT ("rename not supported on this platform\n")),
0);
#else
ACE_TCHAR old_file[MAXPATHLEN];
ACE_TCHAR new_file[MAXPATHLEN];
ACE_OS::strcpy (old_file, ACE_TEXT ("rename_test_old"));
ACE_OS::strcpy (new_file, ACE_TEXT ("rename_test_new"));
// Test 1. Rename old to new when new already exists.
// To set up, create two files, old and new. Both get opened and truncated
// in case they're left over from a previous run. The first one (old) gets
// something written in it so it's non-zero length - this is how the rename
// is verified.
FILE *f = ACE_OS::fopen (old_file, ACE_TEXT ("w+"));
if (f == 0)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%s: %p\n"),
old_file,
ACE_TEXT ("fopen")),
-1);
// Write something in the old_file so it has non-zero length
ACE_OS::fputs (ACE_TEXT ("this is a test\n"), f);
ACE_OS::fclose (f);
f = ACE_OS::fopen (new_file, ACE_TEXT ("w+"));
if (f == 0)
{
ACE_OS::unlink (old_file);
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%s: %p\n"),
new_file,
ACE_TEXT ("fopen")),
-1);
}
ACE_OS::fclose (f);
#if defined (ACE_WIN32) && defined (ACE_LACKS_WIN32_MOVEFILEEX) || defined (ACE_HAS_WINCE)
// Can't rename if new_file exists already.
ACE_OS::unlink (new_file);
#endif
if (ACE_OS::rename (old_file, new_file) != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("rename test 1")));
ACE_OS::unlink (old_file);
ACE_OS::unlink (new_file);
return -1;
}
// Verify that the old file was really renamed.
ACE_stat checking;
int result = 0;
if (ACE_OS::stat (new_file, &checking) == -1 || checking.st_size == 0)
{
result = -1;
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("Rename test 1: new_file not correct\n")));
}
if (ACE_OS::stat (old_file, &checking) == 0)
{
result = -1;
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("Rename test 1: old_file still there\n")));
}
if (result == 0)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Rename when dest. exists: success\n")));
// Now test 2 - rename when the new file does not exist. If test 1 worked,
// the old_file is now new_file and there is no old_file.
if (ACE_OS::rename (new_file, old_file) != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("rename test 2")));
ACE_OS::unlink (old_file);
ACE_OS::unlink (new_file);
return -1;
}
if (ACE_OS::stat (old_file, &checking) == -1 || checking.st_size == 0)
{
result = -1;
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("Rename test 2: new_file not correct\n")));
}
else if (ACE_OS::stat (new_file, &checking) == 0)
{
result = -1;
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("Rename test 2: old_file still there\n")));
}
else
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Rename when dest. gone: success\n")));
ACE_OS::unlink (new_file);
ACE_OS::unlink (old_file);
// Test 3: It should fail... there are no files.
if (ACE_OS::rename (old_file, new_file) == -1)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Rename test 3 should bomb, and did.\n")));
else
{
result = -1;
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("Rename expected fail, but succeeded\n")));
}
return result;
#endif /* ACE_VXWORKS */
}
//
int
string_emulation_test (void)
{
{
// ========================================================================
// Test memchr
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing memchr\n")));
const char *memchr1 = "abcdefghijklmnopqrstuvwxyz";
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::memchr (static_cast<const void *> (0),
'a',
0) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::memchr (memchr1, 'a', sizeof (memchr1)) != 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::memchr (memchr1, '1', sizeof (memchr1)) == 0);
// ========================================================================
// Test strchr
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strchr\n")));
const char *strchr1 = "abcdefghijkabcdefghijk";
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (*ACE_OS::strchr (strchr1, 'h') == 'h');
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strchr (strchr1, 'h') == strchr1 + 7);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strchr (strchr1, '1') == 0);
// ========================================================================
// Test strrchr
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strrchr\n")));
const char *strrchr1 = "abcdefghijkabcdefghijk";
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (*ACE_OS::strrchr (strrchr1, 'h') == 'h');
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strrchr (strrchr1, 'h') == strrchr1 + 18);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strrchr (strrchr1, '1') == 0);
// ========================================================================
// Test strcspn
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strcspn\n")));
const char *strcspn1 = "abcdefghijkabcdefghijk";
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcspn (strcspn1, "d") == 3);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcspn (strcspn1, "abcdefghijk") == 0);
// ========================================================================
// Test strcasecmp
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strcasecmp\n")));
const char *strcasecmp1 = "stringf";
const char *strcasecmp2 = "stringfe"; // An extra character
const char *strcasecmp3 = "stringg"; // The last letter is higher
const char *strcasecmp4 = "STRINGF"; // Different case
const char *strcasecmp5 = "stringe"; // The last letter is lower
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp1) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp2) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp3) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp4) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp5) > 0);
// ========================================================================
// Test strtok_r
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strtok_r\n")));
char strtok_r1[] = "A string of tokens";
char *strtok_r2;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::strtok_r (strtok_r1,
" ",
&strtok_r2),
"A") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::strtok_r (0,
" ",
&strtok_r2),
"string") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::strtok_r (0,
" ",
&strtok_r2),
"of") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::strtok_r (0,
" ",
&strtok_r2),
"tokens") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strtok_r (0, " ", &strtok_r2) == 0);
// ========================================================================
// Test itoa
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing itoa\n")));
char itoa1[33];
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (42, itoa1, 2),
"101010") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (42, itoa1, 3),
"1120") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (42, itoa1, 16),
"2a") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (8, itoa1, 10),
"8") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (-8, itoa1, 10),
"-8") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (20345, itoa1, 10),
"20345") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (-20345, itoa1, 10),
"-20345") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (4566733, itoa1, 10),
"4566733") == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (-4566733, itoa1, 10),
"-4566733") == 0);
}
#if defined (ACE_HAS_WCHAR)
{
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test itoa (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing itoa (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
wchar_t itow1[33];
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (42, itow1, 2),
ACE_TEXT_WIDE ("101010")) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (42, itow1, 3),
ACE_TEXT_WIDE ("1120")) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::itoa (42, itow1, 16),
ACE_TEXT_WIDE ("2a")) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strcmp (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strcmp (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strcmp1 = ACE_TEXT_WIDE ("stringf");
const wchar_t *strcmp2 = ACE_TEXT_WIDE ("stringfe");
const wchar_t *strcmp3 = ACE_TEXT_WIDE ("stringg");
const wchar_t *strcmp4 = ACE_TEXT_WIDE ("STRINGF");
const wchar_t *strcmp5 = ACE_TEXT_WIDE ("stringe");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strcmp1, strcmp1) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strcmp1, strcmp2) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strcmp1, strcmp3) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strcmp1, strcmp4) != 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strcmp1, strcmp5) > 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strcpy (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strcpy (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strcpy1 = ACE_TEXT_WIDE ("abcdefghijklmnopqrstuvwxyz");
wchar_t strcpy2[27];
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strcpy (strcpy2, strcpy1),
strcpy1) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strcpy2, strcpy1) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strcat (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strcat (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strcat1 = ACE_TEXT_WIDE ("abcdefghijklmnopqrstuvwxyz");
wchar_t strcat2[27] = ACE_TEXT_WIDE ("abcdefghijkl");
const wchar_t *strcat3 = ACE_TEXT_WIDE ("mnopqrstuvwxyz");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strcat (strcat2, strcat3),
strcat1) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strcat2, strcat1) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strncat (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strncat (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strncat1 = ACE_TEXT_WIDE ("abcdefghijklmnopqrstuvwxyz");
wchar_t strncat2[27] = ACE_TEXT_WIDE ("abcdefghijkl");
const wchar_t *strncat3 = ACE_TEXT_WIDE ("mnopqrstuvwxyzabc");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strncat (strncat2, strncat3, 14),
strncat1) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strncat2, strncat1) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strspn (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strspn (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strspn1 = ACE_TEXT_WIDE ("abcdefghijkabcdefghijk");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strspn (strspn1,
ACE_TEXT_WIDE ("abcdf")) == 4);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strspn (strspn1,
ACE_TEXT_WIDE ("mno")) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strchr (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strchr (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strchr1 = ACE_TEXT_WIDE ("abcdefghijkabcdefghijk");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (*ACE_OS::strchr (strchr1, ACE_TEXT_WIDE ('h'))
== ACE_TEXT_WIDE ('h'));
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strchr (strchr1, ACE_TEXT_WIDE ('h'))
== strchr1 + 7);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strchr (strchr1, ACE_TEXT_WIDE ('1')) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strstr (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strstr (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strstr1 = ACE_TEXT_WIDE ("abcdefghijkabcdefghijk");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strncmp (
ACE_OS::strstr (strstr1, ACE_TEXT_WIDE ("def")),
ACE_TEXT_WIDE ("def"),
3)
== 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strstr (strstr1,
ACE_TEXT_WIDE ("mno")) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strlen (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strlen (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strlen1 = ACE_TEXT_WIDE ("");
const wchar_t *strlen2 = ACE_TEXT_WIDE ("12345");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strlen (strlen1) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strlen (strlen2) == 5);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strpbrk (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strpbrk (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strpbrk1 = ACE_TEXT_WIDE ("abcdefghijkabcdefghijk");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strpbrk (strpbrk1, ACE_TEXT_WIDE ("ijkb"))
== strpbrk1 + 1);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strpbrk (strpbrk1,
ACE_TEXT_WIDE ("mno")) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strrchr (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strrchr (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strrchr1 = ACE_TEXT_WIDE ("abcdefghijkabcdefghijk");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (*ACE_OS::strrchr (strrchr1, ACE_TEXT_WIDE ('h'))
== ACE_TEXT_WIDE ('h'));
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strrchr (strrchr1, ACE_TEXT_WIDE ('h'))
== strrchr1 + 18);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strrchr (strrchr1, ACE_TEXT_WIDE ('1'))
== 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strcasecmp (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strcasecmp (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strcasecmp1 = ACE_TEXT_WIDE ("stringf");
const wchar_t *strcasecmp2 = ACE_TEXT_WIDE ("stringfe");
const wchar_t *strcasecmp3 = ACE_TEXT_WIDE ("stringg");
const wchar_t *strcasecmp4 = ACE_TEXT_WIDE ("STRINGF");
const wchar_t *strcasecmp5 = ACE_TEXT_WIDE ("stringe");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp1) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp2) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp3) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp4) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcasecmp (strcasecmp1, strcasecmp5) > 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strncasecmp (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strncasecmp (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strncasecmp1 = ACE_TEXT_WIDE ("stringf");
const wchar_t *strncasecmp2 = ACE_TEXT_WIDE ("stringfe");
const wchar_t *strncasecmp3 = ACE_TEXT_WIDE ("stringg");
const wchar_t *strncasecmp4 = ACE_TEXT_WIDE ("STRINGF");
const wchar_t *strncasecmp5 = ACE_TEXT_WIDE ("stringe");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncasecmp (strncasecmp1, strncasecmp2, 7) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncasecmp (strncasecmp1, strncasecmp2, 8) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncasecmp (strncasecmp1, strncasecmp3, 7) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncasecmp (strncasecmp1, strncasecmp4, 7) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncasecmp (strncasecmp1, strncasecmp5, 7) > 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strncmp (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strncmp (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
const wchar_t *strncmp1 = ACE_TEXT_WIDE ("stringf");
const wchar_t *strncmp2 = ACE_TEXT_WIDE ("stringfe");
const wchar_t *strncmp3 = ACE_TEXT_WIDE ("stringg");
const wchar_t *strncmp4 = ACE_TEXT_WIDE ("STRINGF");
const wchar_t *strncmp5 = ACE_TEXT_WIDE ("stringe");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strncmp (strncmp1, strncmp2, 7) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strncmp (strncmp1, strncmp2, 8) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strncmp (strncmp1, strncmp3, 7) < 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strncmp (strncmp1, strncmp4, 7) != 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strncmp (strncmp1, strncmp5, 7) > 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strncpy (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strncpy (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
wchar_t strncpy1[] = ACE_TEXT_WIDE ("abcdefghijklmnopqrstuvwxyzabc");
wchar_t strncpy2[27];
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncmp (ACE_OS::strncpy (strncpy2,
strncpy1,
26),
strncpy1,
26) == 0);
strncpy1[26] = 0;
strncpy2[26] = 0;
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strncpy2, strncpy1) == 0);
//FUZZ: disable check_for_lack_ACE_OS
// ========================================================================
// Test strtok (wchar_t version)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing strtok (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
wchar_t strtok_r1[] = ACE_TEXT_WIDE ("A string of tokens");
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::strtok (strtok_r1,
ACE_TEXT_WIDE (" ")),
ACE_TEXT_WIDE ("A")) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::strtok (0,
ACE_TEXT_WIDE (" ")),
ACE_TEXT_WIDE ("string") ) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::strtok (0,
ACE_TEXT_WIDE (" ")),
ACE_TEXT_WIDE ("of") ) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (ACE_OS::strtok (0,
ACE_TEXT_WIDE (" ")),
ACE_TEXT_WIDE ("tokens") ) == 0);
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strtok (0, ACE_TEXT_WIDE (" ")) == 0);
}
#endif /* ACE_HAS_WCHAR */
return 0;
}
// Test ACE_OS::snprintf
int
snprintf_test (void)
{
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing snprintf\n")));
int error_count = 0;
const int BUFFER_SIZE = 4;
char buf[2*BUFFER_SIZE];
int retval;
ACE_OS::memset(buf, 0xab, 2*BUFFER_SIZE);
retval = ACE_OS::snprintf (buf, BUFFER_SIZE, "%d", 123);
if (retval != 3)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("[1] ACE_OS::snprintf() returns %d, should be 3\n"),
retval));
++error_count;
}
ACE_OS::memset(buf, 0xab, 2*BUFFER_SIZE);
retval = ACE_OS::snprintf (buf, BUFFER_SIZE, "%d", 1234);
// HP-UX has broken vsnprintf
#if !defined (HPUX)
if (retval != 4)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("[2] ACE_OS::snprintf() returns %d, should be 4\n"),
retval));
++error_count;
}
#endif /* !HPUX */
if (buf[3] != 0)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("[3] ACE_OS::snprintf() doesn't terminate string correctly\n")));
++error_count;
}
else if (ACE_OS::strcmp(buf, "123") != 0)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("[4] ACE_OS::snprintf() incorrect output\n")));
++error_count;
}
ACE_OS::memset(buf, 0xab, 2*BUFFER_SIZE);
retval = ACE_OS::snprintf (buf, BUFFER_SIZE, "%d", 12345);
if (retval != 5)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("[5] ACE_OS::snprintf() returns %d, should be 5\n"),
retval));
++error_count;
}
else if (buf[3] != 0)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("[6] ACE_OS::snprintf() doesn't terminate string correctly\n")));
++error_count;
}
else if (ACE_OS::strcmp(buf, "123") != 0)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("[6] ACE_OS::snprintf() incorrect output\n")));
++error_count;
}
return error_count;
}
static int
getpwnam_r_test (void)
{
int result = 0;
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing getpwnam_r\n")));
struct passwd pwd;
struct passwd *pwd_ptr;
char buf[1024];
const char* login = getlogin ();
if (login == 0)
login = "root";
if (ACE_OS::getpwnam_r (login,
&pwd,
buf,
sizeof (buf),
&pwd_ptr) != 0)
{
result = 1;
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("getpwnam_r() failed\n")));
}
else
{
ACE_DEBUG ((LM_DEBUG, ACE_TEXT (" User '%s' has uid=%d and gid=%d\n"),
pwd_ptr->pw_name, pwd_ptr->pw_uid, pwd_ptr->pw_gid));
}
#endif
return result;
}
static int
ctime_r_test (void)
{
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Testing ctime_r\n")));
int result = 0;
// test 'normal' buffer
ACE_TCHAR buf[27];
buf[26] = 'Z';
ACE_Time_Value cur_time =
ACE_OS::gettimeofday ();
time_t secs = cur_time.sec ();
if (ACE_OS::ctime_r (&secs, buf, 26) == 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"),
ACE_TEXT ("ctime_r with 26 bytes")));
result = -1;
}
else if (buf[0] == '\0')
{
result = -1;
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Truncated input buffer\n")));
}
else if (buf[26] != 'Z')
{
result = -1;
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Wrote past end of input buffer\n")));
}
// test small buffer - should not do anything unless 3rd arg is at least 26.
if (result == 0)
{
ACE_TCHAR bufcheck[27];
ACE_OS::strcpy (bufcheck, buf);
if (ACE_OS::ctime_r (&secs, buf, 10) != 0)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("ctime_r with short len returned %s\n"),
buf));
result = -1;
}
else if (errno != ERANGE)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("ctime_r short; wrong error")));
result = -1;
}
// Make sure it didn't scribble
else if (ACE_OS::strcmp (buf, bufcheck) != 0)
{
result = -1;
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("ctime_r short; got %s, expected %s\n"),
buf, bufcheck));
}
}
return result;
}
int
string_strsncpy_test (void)
{
{
//FUZZ: disable check_for_lack_ACE_OS
// Test strsncpy (char version)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing strsncpy (char version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
char strsncpy1[] = "abcdefghijklmnopqrstuvwxyzabc";
char strsncpy2[36];
// strsncpy() where the max. length doesn't matter
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
36),
strsncpy1) == 0);
// strsncpy() where the max length does matter
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncmp (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
26),
strsncpy1,
25) == 0);
// strsncpy1 and strsncpy2 are different size --> not equal
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strsncpy2, strsncpy1) != 0);
// max. length == 2 --> 1 char available
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncmp (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
2),
strsncpy1,
1) == 0);
// max length == 1 --> empty string
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strlen (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
1)) == 0);
// just preparation for the next assert
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
36),
strsncpy1) == 0);
// A tricky one, if the max. length == 0 --> do nothing
// so the strsncpy2 shouldn't change
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strsncpy (strsncpy2,
"test",
0),
strsncpy1) == 0);
// If src == dst --> truncate dst if needed!
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncmp (ACE_OS::strsncpy (strsncpy2,
strsncpy2,
10),
strsncpy1,
9) == 0);
// size should be 9 (+ '\0' char)
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL(ACE_OS::strlen(strsncpy2) == 9);
}
#if defined (ACE_HAS_WCHAR)
{
//FUZZ: disable check_for_lack_ACE_OS
// Test strsncpy (wchar_t version)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing strsncpy (wchar_t version)\n")));
//FUZZ: enable check_for_lack_ACE_OS
wchar_t strsncpy1[] = ACE_TEXT_WIDE ("abcdefghijklmnopqrstuvwxyzabc");
wchar_t strsncpy2[36];
// strsncpy() where the max. length doesn't matter
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
36),
strsncpy1) == 0);
// strsncpy() where the max length does matter
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncmp (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
26),
strsncpy1,
25) == 0);
// strsncpy1 and strsncpy2 are different size --> not equal
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL (ACE_OS::strcmp (strsncpy2, strsncpy1) != 0);
// max. length == 2 --> 1 char available
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncmp (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
2),
strsncpy1,
1) == 0);
// max length == 1 --> empty string
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strlen (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
1)) == 0);
// just preparation for the next assert
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strsncpy (strsncpy2,
strsncpy1,
36),
strsncpy1) == 0);
// A tricky one, if the max. length == 0 --> do nothing
// so the strsncpy2 shouldn't change
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strcmp (ACE_OS::strsncpy (strsncpy2,
ACE_TEXT_WIDE
("test"),
0),
strsncpy1) == 0);
// If src == dst --> truncate dst if needed!
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
(ACE_OS::strncmp (ACE_OS::strsncpy (strsncpy2,
strsncpy2,
10),
strsncpy1,
9) == 0);
// size should be 9 (+ '\0' char)
THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL(ACE_OS::strlen(strsncpy2) == 9);
}
#endif /* ACE_HAS_WCHAR */
return 0;
}
// Test conversion between narrow and wide chars.
int
string_convert_test (void)
{
#if defined (ACE_HAS_WCHAR)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing narrow/wide string conversion\n")));
int result = 0;
const char *test1_n = "abcdefg";
const wchar_t *test1_w = ACE_TEXT_WIDE ("abcdefg");
const char *test2_n = "\xe9\xe8\xe0\xf9\xea";
const wchar_t *test2_w = ACE_TEXT_WIDE ("\xe9\xe8\xe0\xf9\xea");
wchar_t str_w[10];
char str_n[10];
ACE_OS::strcpy (str_w, ACE_Ascii_To_Wide (test1_n).wchar_rep ());
if (0 != ACE_OS::strcmp (test1_w, str_w))
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Simple narrow->wide failed: ")
ACE_TEXT ("Expected \"%W\"; Got \"%W\"\n"), test1_w, str_w));
result = 1;
}
ACE_OS::strcpy (str_n, ACE_Wide_To_Ascii (test1_w).char_rep ());
if (0 != ACE_OS::strcmp (test1_n, str_n))
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Simple wide->narrow failed: ")
ACE_TEXT ("Expected \"%C\"; Got \"%C\"\n"), test1_n, str_n));
result = 1;
}
ACE_OS::strcpy (str_w, ACE_Ascii_To_Wide (test2_n).wchar_rep ());
if (0 != ACE_OS::strcmp (test2_w, str_w))
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Complex narrow->wide failed: ")
ACE_TEXT ("Expected \"%W\"; Got \"%W\"\n"), test2_w, str_w));
result = 1;
}
ACE_OS::strcpy (str_n, ACE_Wide_To_Ascii (test2_w).char_rep ());
if (0 != ACE_OS::strcmp (test2_n, str_n))
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Complex wide->narrow failed: ")
ACE_TEXT ("Expected \"%C\"; Got \"%C\"\n"), test2_n, str_n));
result = 1;
}
return result;
#else
return 0;
#endif /* ACE_HAS_WCHAR */
}
// Test ACE_OS::strsignal()
int
strsignal_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing strsignal method\n")));
int test_status = 0;
const char* result = 0;
for (int i=-1; i < (ACE_NSIG + 1); ++i)
{
result = ACE_OS::strsignal (i);
if (result == 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("strsignal returned null\n")));
test_status = 1;
}
else
{
ACE_DEBUG ((LM_DEBUG, ACE_TEXT (" Sig #%d: %C\n"), i, result));
}
}
return test_status;
}
// Test the methods for getting cpu info
int
cpu_info_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing cpu info methods\n")));
long number_processors = ACE_OS::num_processors();
long number_processors_online = ACE_OS::num_processors_online();
if (number_processors == -1)
{
ACE_ERROR ((LM_INFO,
ACE_TEXT ("number of processors not supported on ")
ACE_TEXT ("this platform\n")));
}
else
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("This system has %d processors\n"),
number_processors));
}
if (number_processors_online == -1)
{
ACE_ERROR ((LM_INFO,
ACE_TEXT ("number of processors online not supported on ")
ACE_TEXT ("this platform\n")));
}
else
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("This system has %d processors online\n"),
number_processors_online));
}
if ((number_processors_online != -1 && number_processors != -1) &&
number_processors_online > number_processors)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%d online processors; should be <= %d\n"),
number_processors_online,
number_processors),
-1);
return 0;
}
int
last_error_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing last_error method\n")));
ACE_OS::last_error (ETIME);
int const l_error = ACE_OS::last_error ();
if (l_error != ETIME)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Last error returned %d instead of ETIME"),
l_error));
return 1;
}
ACE_OS::last_error (0);
return 0;
}
int
pagesize_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing getpagesize method\n")));
long const pagesize = ACE_OS::getpagesize ();
if (pagesize <= 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, pagesize should return a value bigger ")
ACE_TEXT ("then zero, it returned %d\n"), pagesize));
return 1;
}
else
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Pagesize returned %d\n"),
pagesize));
}
return 0;
}
int
ace_ctype_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing ace ctype methods\n")));
int retval = 0;
int result = ACE_OS::ace_isprint (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isprint should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isblank (ACE_TEXT('\t'));
if (result == 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isblank should return != 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isblank (ACE_TEXT(' '));
if (result == 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isblank should return != 0 for space ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isalpha (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isalpha should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isupper (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isupper should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_islower (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_islower should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isdigit (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isdigit should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isxdigit (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isxdigit should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isspace (ACE_TEXT('\t'));
if (result == 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isspace should return != 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_ispunct (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_ispunct should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isalnum (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isalnum should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isgraph (ACE_TEXT('\t'));
if (result != 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isgraph should return 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_iscntrl (ACE_TEXT('\t'));
if (result == 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_iscntrl should return != 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
result = ACE_OS::ace_isascii (ACE_TEXT('\t'));
if (result == 0)
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Error, ace_isascii should return != 0 for tab ")
ACE_TEXT ("but it returned %d\n"), result));
++retval;
}
return 0;
}
int
ceilf_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing ceilf method\n")));
float values[] = {-2.5, -1.5, 1.5, 2.5};
float results[] = {-2.0, -1.0, 2.0, 3.0};
float result = 0.0;
int error_count = 0;
for (size_t i = 0 ; i < sizeof (values) / sizeof (float) ; i++)
{
result = ACE_OS::ceil (values [i]);
if (ACE::is_inequal(result, results[i]))
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("ceilf error: input %.1F, output %1F, expected %1F\n"),
values [i],
result,
results [i]));
++error_count;
}
}
return error_count;
}
int
floorf_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing floorf method\n")));
float values[] = {-2.5, -1.5, 1.5, 2.5};
float results[] = {-3.0, -2.0, 1.0, 2.0};
float result = 0.0;
int error_count = 0;
for (size_t i = 0 ; i < sizeof (values) / sizeof (float) ; i++)
{
result = ACE_OS::floor (values [i]);
if (ACE::is_inequal(result, results[i]))
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("floorf error: input %.1F, output %1F, expected %1F\n"),
values [i], result, results [i]));
++error_count;
}
}
return error_count;
}
int
ceil_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing ceil method\n")));
double values[] = {-2.5, -1.5, 1.5, 2.5};
double results[] = {-2.0, -1.0, 2.0, 3.0};
double result = 0.0;
int error_count = 0;
for (size_t i = 0 ; i < sizeof (values) / sizeof (double) ; i++)
{
result = ACE_OS::ceil (values [i]);
if (ACE::is_inequal(result, results[i]))
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("ceil error: input %.1F, output %1F, expected %1F\n"),
values [i],
result,
results [i]));
++error_count;
}
}
return error_count;
}
int
floor_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing floor method\n")));
double values[] = {-2.5, -1.5, 1.5, 2.5};
double results[] = {-3.0, -2.0, 1.0, 2.0};
double result = 0.0;
int error_count = 0;
for (size_t i = 0 ; i < sizeof (values) / sizeof (double) ; i++)
{
result = ACE_OS::floor (values [i]);
if (ACE::is_inequal(result, results[i]))
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("floor error: input %.1F, output %1F, expected %1F\n"),
values [i],
result,
results [i]));
++error_count;
}
}
return error_count;
}
int
ceill_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing ceill method\n")));
long double values[] = {-2.5, -1.5, 1.5, 2.5};
long double results[] = {-2.0, -1.0, 2.0, 3.0};
long double result = 0.0;
int error_count = 0;
for (size_t i = 0 ; i < sizeof (values) / sizeof (long double) ; i++)
{
result = ACE_OS::ceil (values [i]);
if (ACE::is_inequal(result, results[i]))
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("ceil error: input %.1F, output %1F, expected %1F\n"),
values [i],
result,
results [i]));
++error_count;
}
}
return error_count;
}
int
floorl_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing floorl method\n")));
long double values[] = {-2.5, -1.5, 1.5, 2.5};
long double results[] = {-3.0, -2.0, 1.0, 2.0};
long double result = 0.0;
int error_count = 0;
for (size_t i = 0 ; i < sizeof (values) / sizeof (long double) ; i++)
{
result = ACE_OS::floor (values [i]);
if (ACE::is_inequal(result, results[i]))
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("floor error: input %.1F, output %1F, expected %1F\n"),
values [i], result, results [i]));
++error_count;
}
}
return error_count;
}
int
log2_test (void)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Testing log2 method\n")));
double values[] = {1.0, 2.0, 4.0, 8.0, 1048576.0};
int const results[] = {0, 1, 2, 3, 20};
int result = 0;
int error_count = 0;
for (size_t i = 0 ; i < sizeof (values) / sizeof (double) ; i++)
{
result = static_cast<int> (ACE_OS::log2 (values [i]) + 0.5);
if (result != results [i])
{
ACE_ERROR ((LM_ERROR, ACE_TEXT ("Log2 error: input %.1F, output %d, expected %d\n"), values [i], result, results [i]));
++error_count;
}
}
return error_count;
}
int
run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("OS_Test"));
int status = 0;
int result;
if ((result = access_test ()) != 0)
status = result;
if ((result = rename_test ()) != 0)
status = result;
if ((result = string_emulation_test ()) != 0)
status = result;
#if !defined (ACE_LACKS_VSNPRINTF) || defined (ACE_HAS_TRIO)
if ((result = snprintf_test ()) != 0)
status = result;
#endif /* !ACE_LACKS_VSNPRINTF || ACE_HAS_TRIO */
if ((result = getpwnam_r_test ()) != 0)
status = result;
if ((result = ctime_r_test ()) != 0)
status = result;
if ((result = string_strsncpy_test ()) != 0)
status = result;
if ((result = strsignal_test ()) != 0)
status = result;
if ((result = cpu_info_test ()) != 0)
status = result;
if ((result = pagesize_test ()) != 0)
status = result;
if ((result = ceilf_test ()) != 0)
status = result;
if ((result = floorf_test ()) != 0)
status = result;
if ((result = ceil_test ()) != 0)
status = result;
if ((result = floor_test ()) != 0)
status = result;
if ((result = ceill_test ()) != 0)
status = result;
if ((result = floorl_test ()) != 0)
status = result;
if ((result = log2_test ()) != 0)
status = result;
if ((result = last_error_test ()) != 0)
status = result;
if ((result = ace_ctype_test ()) != 0)
status = result;
ACE_END_TEST;
return status;
}
#undef THIS_IS_NOT_AN_ASSERT_IT_IS_A_NON_DEBUG_TEST_AS_WELL
|