-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhihttp_test.go
145 lines (126 loc) · 3.47 KB
/
hihttp_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
package hhttp
import (
"context"
"net/http"
"testing"
"time"
)
func TestGet(t *testing.T) {
// 设置全局超时时间
Load(
WithTimeout(time.Second),
WithRetryCount(1),
WithRetryWait(time.Second),
WithRetryError(func(ctx context.Context, r *Request) error {
return nil
}),
)
res, err := New().Get(context.Background(), "http://127.0.0.1:8080", NewQueryParam(""))
if err != nil {
t.Error(1, err)
}
// 设置当前次请求的超时时间
res, err = New(WithTimeout(3*time.Second)).Get(context.Background(), "http://127.0.0.1:8080")
if err != nil {
t.Error(2, err)
}
// 不设置当前次请求的超时时间,则使用默认的全局超时时间,
// 也就是SetClient(WithTimeout(time.Second))设置的
res, err = New().
SetHeader("token", "1234567890").
SetCookies(&http.Cookie{
Name: "token",
Value: "abcdefg",
}).
Get(context.Background(), "http://127.0.0.1:8080")
if err != nil {
t.Error(3, err)
}
// end
t.Log(4, string(res.Body))
}
func TestPost(t *testing.T) {
// 发送一个post请求
res, err := New().Post(context.Background(), "http://127.0.0.1:8080/test/login", NewWWWFormPayload(map[string]interface{}{
"username": "jankin",
}))
if err != nil {
t.Error(err)
}
t.Log(string(res.Body))
//
// New().Post(context.Background(), "http://127.0.0.1:8080/test/login", NewFormPayload(map[string]interface{}{
// "user_name": "yumontime", "password": "123123",
// }))
// New().SetHeader(SerializationType, SerializationTypeJSON)
}
func TestPut(t *testing.T) {
r := New().SetCookies()
res, err := r.Put(context.Background(), "http://127.0.0.1:8080/test_http_method", NewFormPayload(map[string]interface{}{
"name": "jankin",
}))
if err != nil {
t.Error(err)
}
t.Log(string(res.Body))
}
func TestDelete(t *testing.T) {
res, err := New().Delete(context.Background(), "http://127.0.0.1:8080/test_http_method", NewMapParams(map[string]interface{}{
"name": "jankin",
}))
if err != nil {
t.Error(err)
}
t.Log(string(res.BodyString()))
}
func TestPatch(t *testing.T) {
res, err := New().Patch(context.Background(), "http://127.0.0.1:8080/test_http_method", NewFormPayload(map[string]interface{}{
"name": "jankin",
}))
if err != nil {
t.Error(err)
}
t.Log(string(res.Body))
}
func TestGET(t *testing.T) {
res, err := New().Get(context.Background(), "http://127.0.0.1:8080/test_http_method", NewKVParam("name", "jankin"))
if err != nil {
t.Error(err)
}
t.Log(string(res.Body))
}
// TestTimeout 请求超时
func TestTimeout(t *testing.T) {
urlStr := "http://127.0.0.1:8080/hello"
// 1. 使用WithTimeout()方法来实现超时控制
ctx := context.Background()
res1, err := New().SetTimeout(time.Minute).Get(ctx, urlStr)
if err != nil {
t.Error(err)
}
t.Log(string(res1.Body))
// 2. 将传入的ctx本身设置上超时时间
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
defer cancel()
res2, err := New().Get(ctx, urlStr)
if err != nil {
t.Error(err)
}
t.Log(string(res2.Body))
}
// TestRetry 重试
func TestRetry(t *testing.T) {
urlStr := "https://127.0.0.1:8080"
// 直接使用
// 请求失败后会再次进行重试请求
ctx := context.Background()
st := time.Now().Unix()
res1, err := New(WithRetryCount(1), WithTimeout(3*time.Second)).Get(ctx, urlStr)
if err != nil {
t.Error(err)
}
en := time.Now().Unix()
t.Log(string(res1.Body), en-st)
// 如果无需重试,3秒后超时,则en-st = 3
// 如果重试1次,3秒后超时,重试又3秒,因此en-st=6
}