rt-thread-official/examples/utest/testcases/posix/stdio_h/functions/fwrite_tc.c

46 lines
890 B
C
Raw Normal View History

2022-07-04 10:20:04 +08:00
#include <stdio.h>
#include <string.h>
static int fwrite_entry(void)
{
FILE *stream;
char test_data[] = "1a2bxx";
char gets[sizeof(test_data)] = {0};
size_t size = 0;
int ret = 0;
stream = fopen("fopen_file.txt","w");
if (stream == NULL)
{
perror("fopen fail");
ret = -1;
goto __exit;
}
fwrite(test_data, sizeof(test_data), 1,stream);
fclose(stream);
stream = fopen("fopen_file.txt","r");
fgets(gets, sizeof(gets), stream);
if(strcmp(test_data, gets))
{
printf("%s\n",gets);
ret = -1;
}
__exit:
fclose(stream);
return ret;
}
#include <utest.h>
static void test_fwrite(void)
{
uassert_int_equal(fwrite_entry(), 0);
}
static void testcase(void)
{
UTEST_UNIT_RUN(test_fwrite);
}
UTEST_TC_EXPORT(testcase, "rtt_posix_testcase.stdio_h."__FILE__, RT_NULL, RT_NULL, 10);