-
Notifications
You must be signed in to change notification settings - Fork 0
/
serve_test.go
59 lines (46 loc) · 1.18 KB
/
serve_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
package main
import (
"net/http"
"net/http/httptest"
"testing"
)
func TestDefaults(t *testing.T) {
handler := http.FileServer(FileSystem{
fs: http.Dir("."),
index: "index.html",
})
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusOK {
t.Errorf("handler returned wrong status code: got %v want %v",
status, http.StatusOK)
}
if rr.Body.String() != "<p>hello world</p>" {
t.Errorf("handler returned wrong body: got %v want %v",
rr.Body.String(), "<p>hello world</p>")
}
}
func TestRewrite(t *testing.T) {
handler := http.FileServer(FileSystem{
fs: http.Dir("."),
index: "index.html",
})
req, err := http.NewRequest("GET", "/virtual/path", nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusOK {
t.Errorf("handler returned wrong status code: got %v want %v",
status, http.StatusOK)
}
if rr.Body.String() != "<p>hello world</p>" {
t.Errorf("handler returned wrong body: got %v want %v",
rr.Body.String(), "<p>hello world</p>")
}
}