-
Notifications
You must be signed in to change notification settings - Fork 0
/
httpfs_test.go
297 lines (234 loc) · 5.53 KB
/
httpfs_test.go
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
package httpfs
import (
"fmt"
"net"
"net/http"
"testing"
)
// leaving this many files open is supposed to trigger os error.
const MANYFILES = 1025
// start local httpfs server, and use http://address/ as WD
func init() {
l, err := net.Listen("tcp", ":12345")
if err != nil {
panic(err)
}
addr := "http://" + l.Addr().String()
SetWD(addr)
RegisterHandlers()
fmt.Println("serving httpfs:", addr)
go func() {
if err := http.Serve(l, nil); err != nil {
panic(err)
}
}()
}
func TestMkdirRemove(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustPass(t, Mkdir("testdata"))
mustFail(t, Mkdir("testdata"))
// test for closing files (internally)
for i := 0; i < MANYFILES; i++ {
mustPass(t, Remove("testdata"))
mustPass(t, Mkdir("testdata"))
}
}
func TestMkdir(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustFail(t, Mkdir("testdata/bla/bla"))
mustPass(t, Mkdir("testdata/"))
mustPass(t, Mkdir("testdata/bla"))
mustPass(t, Mkdir("testdata/bla/bla"))
}
func TestTouch(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustFail(t, Touch("testdata/file"))
mustPass(t, Mkdir("testdata/"))
mustPass(t, Touch("testdata/file"))
// test for closing files (internally)
for i := 0; i < MANYFILES; i++ {
mustPass(t, Touch("testdata/file"))
}
}
func TestReaddir(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
s := func(s []string, e error) error { return e }
mustFail(t, s(ReadDir("testdata")))
// test for closing files (internally)
for i := 0; i < MANYFILES; i++ {
mustFail(t, s(ReadDir("testdata")))
}
mustPass(t, Mkdir("testdata/"))
mustPass(t, Touch("testdata/file1"))
mustPass(t, Touch("testdata/file2"))
mustPass(t, Touch("testdata/file3"))
ls, err := ReadDir("testdata")
if err != nil {
t.Error(err)
}
if len(ls) != 3 {
t.Fail()
}
// test for closing files (internally)
for i := 0; i < MANYFILES; i++ {
mustPass(t, s(ReadDir("testdata")))
}
}
func TestRemove(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustPass(t, Remove("testdata"))
// test for closing files (internally)
for i := 0; i < MANYFILES; i++ {
mustPass(t, Remove("testdata"))
}
}
func TestAppendRead(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustPass(t, Mkdir("testdata"))
data := []byte("hello httpfs\n")
mustFail(t, Append("testdata/file", data)) // file does not exist yet
mustPass(t, Touch("testdata/file"))
for i := 0; i < MANYFILES; i++ {
mustPass(t, Append("testdata/file", data))
}
b, errR := Read("testdata/file")
if errR != nil {
t.Error(errR)
}
if len(b) != (MANYFILES)*len(data) {
t.Error(len(b), (MANYFILES+1)*len(data))
}
}
func TestConcurrentWrite(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustPass(t, Mkdir("testdata"))
mustPass(t, Touch("testdata/file"))
f1 := MustCreate("testdata/file")
f2 := MustCreate("testdata/file")
fmt.Fprintln(f1, "a")
mustPass(t, f1.Flush())
fmt.Fprintln(f2, "a")
mustFail(t, f2.Flush())
for i := 0; i < MANYFILES; i++ {
fmt.Fprintln(f1, "a")
mustPass(t, f1.Flush())
fmt.Fprintln(f2, "a")
mustFail(t, f2.Flush())
}
}
func TestAppendSize(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustPass(t, Mkdir("testdata"))
data := []byte("hello httpfs\n")
mustFail(t, AppendSize("testdata/file", data, 0)) // file does not exist yet
mustFail(t, AppendSize("testdata/file", data, 1)) // file does not exist yet
mustPass(t, Touch("testdata/file"))
for i := 0; i < MANYFILES; i++ {
mustPass(t, AppendSize("testdata/file", data, int64(i)*int64(len(data))))
}
b, errR := Read("testdata/file")
if errR != nil {
t.Error(errR)
}
if len(b) != (MANYFILES)*len(data) {
t.Error(len(b), (MANYFILES+1)*len(data))
}
}
func TestAppendSizeBad(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustPass(t, Mkdir("testdata"))
mustPass(t, Touch("testdata/file"))
data := []byte("hello httpfs\n")
for i := 0; i < MANYFILES; i++ {
mustFail(t, AppendSize("testdata/file", data, 3)) // bad size
}
}
func TestPutRead(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustPass(t, Mkdir("testdata"))
data := []byte("hello httpfs\n")
// must pass if file does not yet exist
for i := 0; i < MANYFILES; i++ {
mustPass(t, Put("testdata/file", data))
}
b, errR := Read("testdata/file")
if errR != nil {
t.Error(errR)
}
if len(b) != len(data) {
t.Error(len(b), (MANYFILES+1)*len(data))
}
}
func TestReaderWriter(t *testing.T) {
Remove("testdata")
defer Remove("testdata")
mustPass(t, Mkdir("testdata"))
// open file for reading when it's not yet there
{
out, errO := Open("testdata/file")
if errO == nil {
t.Fail()
}
if out != nil {
t.Fail()
}
}
for i := 0; i < MANYFILES; i++ {
// create and write to file
{
out, errO := Create("testdata/file")
if errO != nil {
t.Fail()
}
if out == nil {
t.Fail()
}
_, errW := fmt.Fprintln(out, "hello_httpfs")
if errW != nil {
t.Fail()
}
mustPass(t, out.Close())
}
// open file for reading and check content
{
f, errO := Open("testdata/file")
if errO != nil {
t.Fail()
}
if f == nil {
t.Fail()
}
var str string
_, err := fmt.Fscan(f, &str)
if err != nil {
t.Error(err)
}
if str != "hello_httpfs" {
t.Error(str)
}
if i == 0 {
mustPass(t, f.Close()) // it's not needed to close the file
}
}
}
}
func mustPass(t *testing.T, err error) {
if err != nil {
t.Fatal(err)
}
}
func mustFail(t *testing.T, err error) {
if err == nil {
t.Fatal("did not get error")
}
}