-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_test.go
147 lines (130 loc) · 3.08 KB
/
server_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
package main
import (
"bytes"
"flag"
"io/ioutil"
"net/http"
"net/http/httptest"
"net/url"
"os"
"strings"
"testing"
)
func TestMain(m *testing.M) {
flag.Parse()
// main()
os.Exit(m.Run())
}
func TestNotfoundHandler(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(NotfoundHandler))
defer ts.Close()
resp, err := http.Get(ts.URL)
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode, ts.URL)
}
func TestTopHandler(t *testing.T) {
// TODO assertion
ts := httptest.NewServer(http.HandlerFunc(TopHandler))
defer ts.Close()
resp, err := http.Get(ts.URL)
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode, ts.URL)
body := []byte("foo=bar")
resp, err = http.Post(ts.URL, "text/html", bytes.NewReader(body))
if err != nil {
t.Error("Cannot send POST request")
}
t.Log(resp.StatusCode, ts.URL)
request, err := http.NewRequest("PUT", ts.URL, bytes.NewReader(body))
if err != nil {
t.Error("Cannot create PUT request")
}
resp, err = http.DefaultClient.Do(request)
if err != nil {
t.Error("Cannot send PUT request")
}
t.Log(resp.StatusCode, ts.URL)
request, err = http.NewRequest("DELETE", ts.URL, bytes.NewReader(body))
if err != nil {
t.Error("Cannot create DELETE request")
}
resp, err = http.DefaultClient.Do(request)
if err != nil {
t.Error("Cannot send DELETE request")
}
t.Log(resp.StatusCode, ts.URL)
}
func TestHandleGet(t *testing.T) {
URL := url.URL{}
URL.RawQuery = "param1=p1"
HandleGet(&URL)
}
func TestHandlePost(t *testing.T) {
r := strings.NewReader("foo=bar")
readCloser := ioutil.NopCloser(r)
request := http.Request{
Method: "POST",
Host: "localhost",
Body: readCloser,
}
HandlePost(&request)
}
func TestHandlePut(t *testing.T) {
HandlePut()
}
func TestHandleDelete(t *testing.T) {
HandleDelete()
}
func TestInfoHandler(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(InfoHandler))
defer ts.Close()
resp, err := http.Get(ts.URL)
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode, ts.URL)
}
func TestFileHandler(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(FileHandler))
defer ts.Close()
resp, err := http.Get(ts.URL)
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode, ts.URL)
}
func TestRedirectHandler(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(RedirectHandler))
defer ts.Close()
resp, err := http.Get(ts.URL)
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode, ts.URL)
}
func TestServeHTTP(t *testing.T) {
resp, err := http.Get("http://localhost:8000/")
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode)
resp, err = http.Get("http://localhost:8000/redirect")
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode)
resp, err = http.Get("http://localhost:8000/info.html")
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode)
resp, err = http.Get("http://localhost:8000/favicon.ico")
if err != nil {
t.Error("Cannot send GET request")
}
t.Log(resp.StatusCode)
}