summaryrefslogtreecommitdiff
path: root/test/funopen.c
blob: 2b34f7e6c3318f6d30ec0d6ffad9a464fa54763c (plain)
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
/*
 * Copyright © 2013 Guillem Jover <guillem@hadrons.org>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <assert.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>

#define ARRAY_SIZE 100
#define TEST_SIZE 50

struct test_cookie {
	char array[ARRAY_SIZE];
	int index;
};

static int
test_readfn(void *cookie, char *buf, int size)
{
	struct test_cookie *tc = cookie;
	int left_size = sizeof(tc->array) - tc->index;

	if (left_size < 0)
		size = 0;
	else if (left_size < size)
		size = left_size;

	if (size > 0) {
		memcpy(buf, tc->array + tc->index, size);
		tc->index += size;
	}

	return size;
}

static int
test_writefn(void *cookie, const char *buf, int size)
{
	struct test_cookie *tc = cookie;
	int left_size = sizeof(tc->array) - tc->index;

	if (left_size < 0)
		size = 0;
	else if (left_size < size)
		size = left_size;

	if (size > 0) {
		memcpy(tc->array + tc->index, buf, size);
		tc->index += size;
	}

	return size;
}

static off_t
test_seekfn(void *cookie, off_t offset, int whence)
{
	struct test_cookie *tc = cookie;

	switch (whence) {
	case SEEK_SET:
		tc->index = offset;
		break;
	case SEEK_CUR:
		tc->index += offset;
		break;
	case SEEK_END:
		tc->index = sizeof(tc->array) + offset;
		break;
	}

	return tc->index;
}

static int
test_closefn(void *cookie)
{
	struct test_cookie *tc = cookie;

	memset(tc->array, 0x7f, sizeof(tc->array));

	return 0;
}

int
main(int argc, char **argv)
{
	struct test_cookie tc;
	char data[ARRAY_SIZE];
	FILE *fp;
	size_t i;

	/* Test invalid hooks. */
	fp = funopen(&tc, NULL, NULL, NULL, NULL);
	assert(fp == NULL);
	assert(errno == EINVAL);

	/* Test read-only file. */
	tc.index = 0;
	for (i = 0; i < sizeof(tc.array); i++)
		tc.array[i] = i;

	fp = fropen(&tc, test_readfn);
	assert(fp);

	assert(fread(data, 1, TEST_SIZE, fp) == TEST_SIZE);
	assert(memcmp(tc.array, data, TEST_SIZE) == 0);

	assert(fwrite(data, 1, TEST_SIZE, fp) == 0);

	assert(fclose(fp) == 0);

	/* Test write-only file. */
	memset(&tc, 0, sizeof(tc));

	fp = fwopen(&tc, test_writefn);
	assert(fp);

	setvbuf(fp, NULL, _IONBF, 0);

	assert(fwrite(data, 1, TEST_SIZE, fp) == TEST_SIZE);
	assert(memcmp(tc.array, data, TEST_SIZE) == 0);

	assert(fread(data, 1, TEST_SIZE, fp) == 0);

	assert(fclose(fp) == 0);

	/* Test seekable file. */
	memset(&tc, 0, sizeof(tc));

	fp = funopen(&tc, test_readfn, test_writefn, test_seekfn, NULL);
	assert(fp);

	setvbuf(fp, NULL, _IONBF, 0);

	assert(fwrite(data, 1, TEST_SIZE, fp) == TEST_SIZE);
	assert(fseek(fp, 0L, SEEK_SET) == 0);
	assert(fwrite(data, 1, ARRAY_SIZE, fp) == ARRAY_SIZE);
	assert(memcmp(tc.array, data, ARRAY_SIZE) == 0);

	assert(fread(data, 1, TEST_SIZE, fp) == 0);

	assert(fclose(fp) == 0);

	/* Test close hook. */
	memset(&tc, 0, sizeof(tc));

	fp = funopen(&tc, test_readfn, test_writefn, NULL, test_closefn);
	assert(fclose(fp) == 0);

	for (i = 0; i < sizeof(tc.array); i++)
		assert(tc.array[i] == 0x7f);

	return 0;
}