This repository has been archived by the owner on Jun 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttptest_test.go
130 lines (114 loc) · 3.23 KB
/
httptest_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
package httptest
import (
"net/http"
"net/http/httptest"
"strings"
"testing"
)
func badHandler(w http.ResponseWriter, r *http.Request) {
http.Error(w, "not a regular name or password", http.StatusBadRequest)
}
func okHandler(w http.ResponseWriter, r *http.Request) {
http.Error(w, "not a regular name or password", http.StatusOK)
}
func headerHandler(w http.ResponseWriter, r *http.Request) {
r.ParseMultipartForm(0)
for name := range r.Form {
w.Header().Set(name, r.FormValue(name))
}
}
func contentHandler(w http.ResponseWriter, r *http.Request) {
r.ParseMultipartForm(0)
content := ""
for name := range r.Form {
content += name
content += r.FormValue(name)
}
w.Write([]byte(content))
}
func TestCheckCode(t *testing.T) {
New("/bad", badHandler, t).Do().CheckCode(http.StatusBadRequest)
New("/ok", okHandler, t).Do().CheckCode(http.StatusOK)
}
func TestCheckHeader(t *testing.T) {
New("/dump", headerHandler, t).
Post().
AddParams("name", "value1").
AddParams("nam22", "value3").
Do().
CheckCode(http.StatusOK).
CheckHeader("name", "value1").
CheckHeader("nam22", "value3")
}
func TestBodyContains(t *testing.T) {
New("/content", contentHandler, t).
Post().
AddParams("name", "value1").
AddParams("nam22", "value3").
Do().
CheckCode(http.StatusOK).
CheckBodyContains("nam22").
CheckBodyContains("value3")
}
func TestResponseRecorder(t *testing.T) {
var rr *httptest.ResponseRecorder
rr = New("/content", contentHandler, t).
Get().
AddParams("name", "value1").
AddParams("nam22", "value3").
Do().
GetResponseRecorder()
if rr.Code != http.StatusOK {
t.Errorf("error while get response code: want [%d], got [%d]", http.StatusOK, rr.Code)
}
if !strings.Contains(rr.Body.String(), "nam22") {
t.Errorf("error while get body, want [%s], got none", "nam22")
}
rr = New("/dump", headerHandler, t).
Get().
AddParams("name", "value1").
AddParams("nam22", "value3").
Do().
GetResponseRecorder()
if rr.Header().Get("nam22") != "value3" {
t.Errorf("want header [%s] to equal: [%s], but got: [%s]", "nam22", "value3", rr.Header().Get("nam22"))
}
rr = New("/content", contentHandler, t).
Post().
AddParams("name", "value1").
AddParams("nam22", "value3").
Do().
GetResponseRecorder()
if rr.Code != http.StatusOK {
t.Errorf("error while get response code: want [%d], got [%d]", http.StatusOK, rr.Code)
}
if !strings.Contains(rr.Body.String(), "nam22") {
t.Errorf("error while get body, want [%s], got none", "nam22")
}
rr = New("/dump", headerHandler, t).
Post().
AddParams("name", "value1").
AddParams("nam22", "value3").
Do().
GetResponseRecorder()
if rr.Header().Get("nam22") != "value3" {
t.Errorf("want header [%s] to equal: [%s], but got: [%s]", "nam22", "value3", rr.Header().Get("nam22"))
}
}
func cookieHandler(w http.ResponseWriter, r *http.Request) {
cookie, _ := r.Cookie("testcookiename")
w.Write([]byte(cookie.Value))
}
func TestCookie(t *testing.T) {
cookie := &http.Cookie{Name: "testcookiename", Value: "testcookievalue", Path: "/", MaxAge: 86400}
New("/", cookieHandler, t).
Get().
AddCookies(cookie).
Do().
CheckBodyContains("testcookievalue")
New("/", cookieHandler, t).
Post().
AddCookies(cookie).
Do().
CheckBodyContains("testcookievalue")
}