-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimplehttp_test.go
108 lines (83 loc) · 1.91 KB
/
simplehttp_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
package simplehttp
import (
"net/http"
"reflect"
"testing"
)
func TestMethodAdded(t *testing.T) {
httpRequest := CreateHttpRequest("")
setMethodTests := []struct {
TestDesc string
Wants string
MethodName string
}{
{
TestDesc: "set POST",
Wants: http.MethodPost,
MethodName: "Post",
},
{
TestDesc: "set DELETE",
Wants: http.MethodDelete,
MethodName: "Delete",
},
{
TestDesc: "set GET",
Wants: http.MethodGet,
MethodName: "Get",
},
{
TestDesc: "set PUT",
Wants: http.MethodPut,
MethodName: "Put",
},
}
for _, test := range setMethodTests {
t.Run(test.TestDesc, func(t *testing.T) {
method := reflect.ValueOf(&httpRequest).MethodByName(test.MethodName)
if !method.IsValid() {
t.Errorf("method %s is not valid", test.MethodName)
return
}
method.Call([]reflect.Value{})
if httpRequest.method != test.Wants {
t.Error("method not set properly")
return
}
})
}
}
func TestAddHeader(t *testing.T) {
httpRequest := CreateHttpRequest("")
httpRequest.AddHeader("some_header_name", "some_header_value")
if httpRequest.headers.Get("some_header_name") != "some_header_value" {
t.Error("header not added")
return
}
}
func TestUrl(t *testing.T) {
httpRequest := CreateHttpRequest("https://google.com")
if httpRequest.url != "https://google.com" {
t.Error("request didn't initialize url correctly")
return
}
httpRequest.Url("https://weather.com")
if httpRequest.url != "https://weather.com" {
t.Error("url not set properly")
return
}
}
func TestBody(t *testing.T) {
httpRequest := CreateHttpRequest("")
if httpRequest.body != nil {
t.Error("request didn't initialize body correctly")
return
}
httpRequest.Body([]byte("some_body"))
buf := make([]byte, len("some_body"))
httpRequest.body.Read(buf)
if string(buf) != "some_body" {
t.Error("body not set properly")
return
}
}