forked from rurban/safeclib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_fscanf_s.c
196 lines (157 loc) · 4.21 KB
/
test_fscanf_s.c
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
/*------------------------------------------------------------------
* test_fscanf_s
* File 'io/fscanf_s.c'
* Lines executed:86.96% of 23
*
*------------------------------------------------------------------
*/
#include "test_private.h"
#include "safe_str_lib.h"
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
#ifdef HAVE_FSCANF_S
# define HAVE_NATIVE 1
#else
# define HAVE_NATIVE 0
#endif
#include "test_msvcrt.h"
#define LEN ( 128 )
static char str1[LEN];
static char str2[LEN];
#define TMP "tmpscanf"
static FILE* stream = NULL;
void stuff_stream(const char *dest);
int test_fscanf_s (void);
void stuff_stream(const char *dest)
{
if (!stream)
stream = fopen(TMP, "w+");
else
rewind(stream);
fprintf(stream, "%s\n", dest);
rewind(stream);
}
int test_fscanf_s (void)
{
errno_t rc;
int32_t ind;
size_t len1;
size_t len2;
size_t len3;
int errs = 0;
/*--------------------------------------------------*/
print_msvcrt(use_msvcrt);
#ifndef HAVE_CT_BOS_OVR
EXPECT_BOS("empty stream")
rc = fscanf_s(NULL, "");
init_msvcrt(errno == ESNULLP, &use_msvcrt);
ERREOF_MSVC(ESNULLP,EINVAL);
stuff_stream("1");
EXPECT_BOS("empty fmt")
rc = fscanf_s(stream, NULL);
ERREOF_MSVC(ESNULLP,EINVAL);
#endif
/* TODO: should error */
#if 0
stuff_stream("1");
rc = fscanf_s(stream, "%s", NULL);
ERREOF_MSVC(ESNULLP,EINVAL);
#endif
/*--------------------------------------------------*/
stuff_stream(" 24");
rc = fscanf_s(stream, "%s %%n", str2, LEN);
#ifdef BSD_LIKE
if (rc != -1) { /* BSD's return -1 on %%n */
printf("%s %u wrong fscanf(\"\",L\"%%n\"): %d\n",
__FUNCTION__, __LINE__, (int)rc);
}
#else
if (rc != 1) {
printf("flapping tests - abort\n");
return errs;
}
ERR(1);
ERRNO(0);
#endif
stuff_stream(" 24");
rc = fscanf_s(stream, " %d", &len1);
ERR(1);
ERRNO(0);
if ((int)len1 != 24) {
debug_printf("%s %u wrong arg: %d\n",
__FUNCTION__, __LINE__, (int)len1);
errs++;
}
/*--------------------------------------------------*/
strcpy(str1, "aaaaaaaaaa");
stuff_stream(str1);
rc = fscanf_s(stream, "%s", str2, LEN);
if (rc != 1) {
printf("flapping tests - abort\n");
return errs;
}
ERR(1)
len2 = strlen(str2);
len3 = strlen(str1);
if (len3 != len2) {
#ifdef DEBUG
len1 = strlen(str1);
#endif
debug_printf("%s %u lengths wrong: %d %d %d \n",
__FUNCTION__, __LINE__, (int)len1, (int)len2, (int)len3);
errs++;
}
/*--------------------------------------------------*/
stuff_stream("keep it simple");
rc = fscanf_s(stream, "%s", str2, LEN);
ERR(1);
EXPSTR(str2, "keep");
/*--------------------------------------------------*/
strcpy(str1, "qqweqq");
stuff_stream(str1);
rc = fscanf_s(stream, "%s", str2);
NOERR();
EXPSTR(str2, str1);
/*--------------------------------------------------*/
/* overlapping works fine on darwin, different on linux glibc */
/*
strcpy(str1, "12345678901234567890");
rc = fscanf_s(stream, "%s", &str1[7]);
ERR(1);
EXPSTR(str1, "123456712345678901234567890");
strcpy(str1, "123456789");
rc = fscanf_s(stream, "%s", &str1[8]);
ERR(1);
EXPSTR(str1, "12345678123456789");
*/
/*--------------------------------------------------*/
stuff_stream(" 24");
rc = fscanf_s(stream, "%s %n", str2, LEN, &ind);
ERREOF(EINVAL);
/*--------------------------------------------------*/
str1[0] = '\0';
stuff_stream(str1);
rc = fscanf_s(stream, "%s", str2, LEN);
if (rc != 1) {
printf("flapping tests - abort\n");
return errs;
}
ERR(1); /* unspecified behaviour */
/*EXPNULL(str2) TODO. Got "eep" */
/*--------------------------------------------------*/
fclose(stream);
#if 0
strcpy(str1, "qqweqq");
stuff_stream(str1);
/* would block reading */
rc = fscanf_s(stream, "%s", str2, LEN);
#endif
/*--------------------------------------------------*/
unlink(TMP);
return (errs);
}
int main (void)
{
return (test_fscanf_s());
}