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
|
/*------------------------------------------------------------------
* test_strset_s
* File 'strset_s.c'
* Lines executed:93.75% of 16
*
*------------------------------------------------------------------
*/
#include "test_private.h"
#include "safe_str_lib.h"
#define LEN (128)
int main(void) {
errno_t rc;
rsize_t max_len;
char str1[LEN];
int value = 0;
int len;
uint32_t j;
int errs = 0;
/*--------------------------------------------------*/
#ifndef HAVE_CT_BOS_OVR
EXPECT_BOS("empty dest")
rc = strset_s(NULL, 5, value);
ERR(ESNULLP)
EXPECT_BOS("empty dest or dmax")
rc = strset_s(str1, 0, 0);
ERR(ESZEROL)
EXPECT_BOS("dest overflow")
rc = strset_s(str1, RSIZE_MAX_STR + 1, 0);
ERR(ESLEMAX);
#ifdef HAVE___BUILTIN_OBJECT_SIZE
EXPECT_BOS("dest overflow")
rc = strset_s(str1, LEN + 1, 0);
ERR(EOVERFLOW)
#endif
EXPECT_BOS("value overflow >255")
rc = strset_s(str1, LEN, 256);
ERR(ESLEMAX);
#endif
/*--------------------------------------------------*/
strcpy(str1, "abc");
value = 20;
max_len = 1;
rc = strset_s(str1, max_len, value);
ERR(EOK)
for (j = 0; j < max_len; j++) {
if (str1[j] != (char)value) {
debug_printf("%s %u Error rc=%u \n", __FUNCTION__, __LINE__, rc);
errs++;
}
}
/*--------------------------------------------------*/
strcpy(str1, "abc");
value = 0;
max_len = 2;
rc = strset_s(str1, max_len, value);
ERR(EOK)
for (j = 0; j < max_len; j++) {
if (str1[j] != (char)value) {
debug_printf("%s %u Error rc=%u \n", __FUNCTION__, __LINE__, rc);
errs++;
}
}
/*--------------------------------------------------*/
strcpy(str1, "abc");
max_len = 3;
rc = strset_s(str1, max_len, value);
ERR(EOK)
for (j = 0; j < max_len; j++) {
if (str1[j] != (char)value) {
debug_printf("%s %u Error rc=%u \n", __FUNCTION__, __LINE__, rc);
errs++;
}
}
/*--------------------------------------------------*/
strcpy(str1, "abc");
max_len = 4;
rc = strset_s(str1, max_len, value);
ERR(EOK)
for (j = 0; j < max_len; j++) {
if (str1[j] != (char)value) {
debug_printf("%s %u Error rc=%u \n", __FUNCTION__, __LINE__, rc);
errs++;
}
}
CHECK_SLACK(&str1[3], 1);
/*--------------------------------------------------*/
strcpy(str1, "abc");
max_len = 5;
rc = strset_s(str1, max_len, value);
ERR(EOK)
for (j = 0; j < 3; j++) {
if (str1[j] != (char)value) {
debug_printf("%s %u Error rc=%u \n", __FUNCTION__, __LINE__, rc);
errs++;
}
}
CHECK_SLACK(&str1[3], 2);
/*--------------------------------------------------*/
strcpy(str1, "abc");
max_len = LEN;
rc = strset_s(str1, max_len, value);
ERR(EOK)
for (j = 0; j < 3; j++) {
if (str1[j] != (char)value) {
debug_printf("%s %u Error rc=%u \n", __FUNCTION__, __LINE__, rc);
errs++;
}
}
CHECK_SLACK(&str1[3], LEN - 3);
/*--------------------------------------------------*/
strcpy(str1, "Now is the time for all data to be zeroed");
len = strlen(str1);
max_len = strlen("Now is the ");
rc = strset_s(str1, max_len, 0);
ERR(EOK)
if (strcmp(&str1[max_len], "time for all data to be zeroed")) {
debug_printf("%s %u ERROR --%s-- \n", __FUNCTION__, __LINE__,
&str1[max_len]);
errs++;
}
CHECK_SLACK(&str1[len], LEN - len);
/*--------------------------------------------------*/
return (errs);
}
|