forked from rclone/gofakes3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gofakes3_internal_test.go
92 lines (81 loc) · 1.76 KB
/
gofakes3_internal_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
package gofakes3
import (
"bytes"
"fmt"
"log"
"net/http"
"net/http/httptest"
"testing"
xml "github.com/alist-org/gofakes3/xml"
)
func TestHttpError(t *testing.T) {
var g GoFakeS3
rq := httptest.NewRequest("GET", "/", nil)
rs := httptest.NewRecorder()
g.httpError(rs, rq, ErrNoSuchBucket)
if rs.Code != 404 {
t.Fatal()
}
if rs.Body.Len() == 0 {
t.Fatal()
}
var resp ErrorResponse
if err := xml.Unmarshal(rs.Body.Bytes(), &resp); err != nil {
t.Fatal(err)
}
if resp.Code != ErrNoSuchBucket {
t.Fatal()
}
}
func TestHttpErrorWriteFailure(t *testing.T) {
var buf bytes.Buffer
std := log.New(&buf, "", 0)
logger := StdLog(std)
var g = GoFakeS3{
log: logger,
}
rq := httptest.NewRequest("GET", "/", nil)
rs := httptest.NewRecorder()
g.httpError(&failingResponseWriter{rs}, rq, ErrNoSuchBucket)
if rs.Code != 404 {
t.Fatal()
}
if rs.Body.Len() != 0 {
t.Fatal()
}
if buf.String() != "ERR nope\n" {
t.Fatal()
}
}
func TestHostBucketMiddleware(t *testing.T) {
for _, tc := range []struct {
in string
host string
out string
}{
{"/", "foo", "/foo"},
{"/", "mybucket.localhost", "/mybucket"},
{"/object", "mybucket.localhost", "/mybucket/object"},
} {
t.Run("", func(t *testing.T) {
var g GoFakeS3
g.log = DiscardLog()
inner := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != tc.out {
t.Fatal(r.URL.Path, "!=", tc.out)
}
})
handler := g.hostBucketMiddleware(inner)
rq := httptest.NewRequest("GET", tc.in, nil)
rq.Host = tc.host
rs := httptest.NewRecorder()
handler.ServeHTTP(rs, rq)
})
}
}
type failingResponseWriter struct {
*httptest.ResponseRecorder
}
func (w *failingResponseWriter) Write(buf []byte) (n int, err error) {
return 0, fmt.Errorf("nope")
}