-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatic_test.go
More file actions
241 lines (220 loc) · 5.92 KB
/
static_test.go
File metadata and controls
241 lines (220 loc) · 5.92 KB
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
package static
import (
"fmt"
"io"
"io/ioutil"
"net/http"
"net/http/httptest"
"os"
"testing"
)
type testStruct struct {
flag int // 0 | FDirList | FDirRedirect | FIgnoreEmptyExt
gzip bool // Accept-Encoding: gzip,deflate,sdch
length int // size of read Response.Body
path string // URL.Path
redirect string // redirect URL.Path
}
/**
root
│ index.html
│ index.html.gz
├───empty
├───gz
│ index.html.gz
└───src
index.html
*/
var testData = []testStruct{
// not exists
{0, true, 0, "/no", ""},
{0, true, 0, "/no/", ""},
{0, true, 0, "/no.htm", ""},
{0, false, 0, "/no", ""},
{0, false, 0, "/no/", ""},
{0, false, 0, "/no.html", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 0, "/no", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 0, "/no/", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 0, "/no.js", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
false, 0, "/no", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
false, 0, "/no/", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
false, 0, "/no.css", ""},
// empty directory
{0, true, 0, "/empty", ""},
{0, true, 0, "/empty/", ""},
{0, false, 0, "/empty", ""},
{0, false, 0, "/empty/", ""},
// directory list, 34 bytes
// <pre> <a href="../">..</a> </pre>
{FDirList, true, 34, "/empty", ""},
{FDirList, true, 34, "/empty/", ""},
{FDirRedirect, true, 0, "/empty?foo=bar&bar=baz", "/empty/?foo=bar&bar=baz"},
{FIgnoreEmptyExt, true, 0, "/empty", ""},
{FDirList | FDirRedirect, true, 34, "/empty", ""},
{FDirList | FDirRedirect, true, 34, "/empty/", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect, true, 0, "/empty", ""},
// root ...
// source and gzip precompression files
{0, true, 6, "/", ""},
{0, true, 6, "/index.html", "/"},
{0, true, 40, "/index.html.gz", ""},
{0, false, 6, "/", ""},
{0, false, 6, "/index.html", "/"},
{0, false, 40, "/index.html.gz", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 6, "/", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 6, "/index.html", "/"},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 40, "/index.html.gz", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
false, 6, "/", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
false, 6, "/index.html", "/"},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
false, 40, "/index.html.gz", ""},
// gzip precompression file only
{0, true, 0, "/gz", ""},
{0, true, 6, "/gz/", ""},
{0, false, 0, "/gz", ""},
{0, false, 0, "/gz/", ""},
// directory list, 76 bytes
// <pre> <a href="../">..</a> <a href="index.html.gz">index.html.gz</a> </pre>
{FDirList,
true, 76, "/gz", ""},
{FDirRedirect,
true, 6, "/gz", "/gz/"},
{FDirList | FDirRedirect,
true, 76, "/gz", ""},
{FIgnoreEmptyExt,
true, 0, "/gz", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 0, "/gz", ""},
{FIgnoreEmptyExt,
true, 6, "/gz/", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 6, "/gz/", ""},
{FDirList,
false, 76, "/gz", ""},
{FDirRedirect,
false, 0, "/gz", "/gz/"},
{FDirList | FDirRedirect,
false, 76, "/gz", ""},
{FIgnoreEmptyExt,
false, 0, "/gz", ""},
{FIgnoreEmptyExt | FDirList,
false, 0, "/gz", ""},
{FIgnoreEmptyExt | FDirList,
false, 76, "/gz/", ""},
// source file only
{0, true, 0, "/src", ""},
{0, true, 6, "/src/", ""},
{0, false, 0, "/src", ""},
{0, false, 6, "/src/", ""},
// directory list, 70 bytes
// <pre> <a href="../">..</a> <a href="index.html">index.html</a> </pre>
{FDirList,
true, 70, "/src", ""},
{FDirRedirect,
true, 6, "/src", "/src/"},
{FDirList | FDirRedirect,
true, 70, "/src", ""},
{FIgnoreEmptyExt,
true, 0, "/src", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 0, "/src", ""},
{FIgnoreEmptyExt,
true, 6, "/src/", ""},
{FIgnoreEmptyExt | FDirList | FDirRedirect,
true, 6, "/src/", ""},
{FDirList,
false, 70, "/src", ""},
{FDirRedirect,
false, 6, "/src", "/src/"},
{FDirList | FDirRedirect,
false, 70, "/src", ""},
{FIgnoreEmptyExt,
false, 0, "/src", ""},
{FIgnoreEmptyExt | FDirList,
false, 0, "/src", ""},
{FIgnoreEmptyExt | FDirList,
false, 6, "/src/", ""},
}
func TestStatic(t *testing.T) {
dir, _ := os.Getwd()
dir = dir + "/testdata"
var handler func(res http.ResponseWriter, req *http.Request, dir http.Dir)
var gzip bool
var c *http.Client
var lastreq, referer *http.Request
var via []*http.Request
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
if gzip {
req.Header.Set("Accept-Encoding", "gzip,deflate,sdch")
} else {
req.Header.Del("Accept-Encoding")
}
lastreq = req
handler(w, req, http.Dir(dir))
}))
defer ts.Close()
c = &http.Client{CheckRedirect: func(req *http.Request, vias []*http.Request) error {
via = vias
referer = req
return nil
}}
for _, tt := range testData {
gzip = tt.gzip
via = []*http.Request{}
referer = nil
handler = Handler(tt.flag)
req, _ := http.NewRequest("GET", ts.URL+tt.path, nil)
res, err := c.Do(req)
if err != nil {
t.Fatal(err, tt)
}
res.Request = lastreq
if tt.redirect == "" {
// 200
if len(via) != 0 || referer != nil {
show(res)
t.Fatal(len(via), referer == nil, tt)
}
} else {
// 301
if len(via) != 1 || referer == nil {
show(res)
t.Fatal(len(via), referer == nil, tt)
}
if lastreq.RequestURI != tt.redirect {
show(res)
t.Fatal(tt)
}
}
n, err := io.Copy(ioutil.Discard, res.Body)
if err != nil || int(n) != tt.length ||
tt.length == 40 && res.Header.Get("Content-Encoding") != "" {
show(res)
t.Fatal(err, n, tt)
}
}
}
func show(res *http.Response) {
fmt.Println("----------Request.Header----------")
fmt.Println("URI", res.Request.RequestURI)
for k, v := range res.Request.Header {
fmt.Println(k, v)
}
fmt.Println("\n--------Response.Header---------")
fmt.Println(res.Status)
fmt.Println("ContentLength", res.ContentLength)
for k, v := range res.Header {
fmt.Println(k, v)
}
}