-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests/posix: add testcase for fmemopen(3)
- Loading branch information
Showing
2 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
#ifndef _GNU_SOURCE | ||
#define _GNU_SOURCE | ||
#endif | ||
|
||
#include <assert.h> | ||
#include <errno.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
|
||
#define BUFFER0_SIZE 0x1000 | ||
#define BUFFER1 "Hello world" | ||
#define BUFFER1_SIZE (sizeof(BUFFER1)) | ||
|
||
int main() { | ||
/* test seek with mode "r" */ | ||
FILE *f = fmemopen(NULL, BUFFER0_SIZE, "r"); | ||
assert(f); | ||
|
||
int ret = fseek(f, 0, SEEK_END); | ||
assert(!ret); | ||
long pos = ftell(f); | ||
fprintf(stderr, "pos = %ld\n", pos); | ||
assert(pos == BUFFER0_SIZE); | ||
|
||
fclose(f); | ||
|
||
/* test seek with mode "w" */ | ||
f = fmemopen(NULL, BUFFER0_SIZE, "w"); | ||
assert(f); | ||
|
||
assert(!fseek(f, 0, SEEK_END)); | ||
pos = ftell(f); | ||
assert(pos == 0); | ||
|
||
fclose(f); | ||
|
||
/* test seek with mode "a" and a NULL buffer */ | ||
f = fmemopen(NULL, BUFFER0_SIZE, "a"); | ||
assert(f); | ||
|
||
assert(!fseek(f, 0, SEEK_END)); | ||
pos = ftell(f); | ||
assert(pos == 0); | ||
|
||
fclose(f); | ||
|
||
/* test seek with mode "a" and a buffer containing a '\0' */ | ||
f = fmemopen(BUFFER1, BUFFER1_SIZE, "a"); | ||
assert(f); | ||
|
||
assert(!fseek(f, 0, SEEK_END)); | ||
pos = ftell(f); | ||
assert(pos == (long) (BUFFER1_SIZE - 1)); | ||
|
||
fclose(f); | ||
|
||
/* test seek with mode "a" and a buffer not containing a '\0' */ | ||
f = fmemopen(BUFFER1, BUFFER1_SIZE - 2, "a"); | ||
assert(f); | ||
|
||
assert(!fseek(f, 0, SEEK_END)); | ||
pos = ftell(f); | ||
assert(pos == (long) (BUFFER1_SIZE - 2)); | ||
|
||
fclose(f); | ||
|
||
f = fmemopen(BUFFER1, BUFFER1_SIZE, "r"); | ||
assert(f); | ||
|
||
assert(!fseek(f, 0, SEEK_SET)); | ||
|
||
char buf[BUFFER1_SIZE]; | ||
int read = fread(buf, 1, BUFFER1_SIZE - 2, f); | ||
assert(read == BUFFER1_SIZE - 2); | ||
assert(!strncmp(BUFFER1, buf, BUFFER1_SIZE - 2)); | ||
|
||
fseek(f, 0, SEEK_END); | ||
|
||
read = fread(buf, 1, 2, f); | ||
assert(read == 0); | ||
assert(feof(f)); | ||
|
||
fclose(f); | ||
|
||
/* Open a buffer for read+write */ | ||
char *buf1 = strdup(BUFFER1); | ||
f = fmemopen(buf1, BUFFER1_SIZE, "w+"); | ||
assert(f); | ||
assert(strlen(BUFFER1) == BUFFER1_SIZE - 1); | ||
|
||
/* seek to somewhere in the middle of the buffer */ | ||
fseek(f, BUFFER1_SIZE - 5, SEEK_SET); | ||
/* write as much data to it as possible */ | ||
read = fwrite(BUFFER1, 1, 9, f); | ||
rewind(f); | ||
|
||
/* seek the the same position in the middle of the buffer */ | ||
ret = fseek(f, BUFFER1_SIZE - 5, SEEK_SET); | ||
assert(!ret); | ||
memset(buf, 0, BUFFER1_SIZE); | ||
/* read what we just wrote */ | ||
read = fread(buf, 1, 5, f); | ||
/* check that the write got correctly truncated */ | ||
assert(!strncmp(BUFFER1, buf, 4) && strlen(buf) == 4); | ||
|
||
fclose(f); | ||
free(buf1); | ||
|
||
return 0; | ||
} |