-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransport_test.go
175 lines (157 loc) · 4.35 KB
/
transport_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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package requests
import (
"context"
"io"
"net"
"net/http"
"net/http/httptest"
"net/url"
"strings"
"testing"
"time"
)
func Test_Setup(t *testing.T) {
var setups []string
var setup = func(stage, step string) func(next http.RoundTripper) http.RoundTripper {
return func(next http.RoundTripper) http.RoundTripper {
return RoundTripperFunc(func(req *http.Request) (*http.Response, error) {
setups = append(setups, strings.Join([]string{stage, step, "start"}, "-"))
resp, err := next.RoundTrip(req)
setups = append(setups, strings.Join([]string{stage, step, "end"}, "-"))
return resp, err
})
}
}
var wants = []string{
"session-step1-start", "session-step2-start", "request-step1-start", "request-step2-start",
"request-step2-end", "request-step1-end", "session-step2-end", "session-step1-end",
}
var ss = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, _ = io.Copy(w, r.Body)
}))
sess := New(Setup(setup("session", "step1"), setup("session", "step2")))
for m := 0; m < 4; m++ {
setups = setups[:0]
resp, err := sess.DoRequest(context.Background(), URL(ss.URL), Body(`{"Hello":"World"}`), Setup(setup("request", "step1"), setup("request", "step2")))
t.Logf("resp=%s, err=%v", resp.Content.String(), err)
if len(setups) != len(wants) {
t.Error("len(setups)!= len(setups)")
return
}
for i := 0; i < len(setups); i++ {
if setups[i] != wants[i] {
t.Errorf("setups=%v, wants=%v", setups[i], wants[i])
return
}
t.Logf("setups=%v, wants=%v", setups[i], wants[i])
}
}
}
func TestWarpRoundTripper(t *testing.T) {
// 测试装饰器链
var order []string
rt1 := RoundTripperFunc(func(r *http.Request) (*http.Response, error) {
order = append(order, "rt1")
return &http.Response{StatusCode: 200}, nil
})
rt2 := WarpRoundTripper(rt1)(http.DefaultTransport)
_, err := rt2.RoundTrip(&http.Request{})
if err != nil {
t.Fatal(err)
}
if len(order) != 1 || order[0] != "rt1" {
t.Error("装饰器执行顺序错误")
}
}
func TestNewTransport(t *testing.T) {
tests := []struct {
name string
opts []Option
test func(*testing.T, *http.Transport)
}{
{
name: "Unix套接字",
opts: []Option{URL("unix:///tmp/test.sock")},
test: func(t *testing.T, tr *http.Transport) {
_, err := tr.DialContext(context.Background(), "unix", "/tmp/test.sock")
if err == nil {
t.Error("期望Unix套接字连接失败")
}
},
},
{
name: "本地地址绑定",
opts: []Option{LocalAddr(&net.TCPAddr{IP: net.ParseIP("127.0.0.1"), Port: 0})},
test: func(t *testing.T, tr *http.Transport) {
conn, err := tr.DialContext(context.Background(), "tcp", "example.com:80")
if err == nil {
conn.Close()
}
},
},
{
name: "TLS配置",
opts: []Option{Verify(false)},
test: func(t *testing.T, tr *http.Transport) {
if tr.TLSClientConfig.InsecureSkipVerify != true {
t.Error("TLS验证配置错误")
}
},
},
{
name: "连接池配置",
opts: []Option{MaxConns(100)},
test: func(t *testing.T, tr *http.Transport) {
if tr.MaxIdleConns != 100 || tr.MaxIdleConnsPerHost != 100 {
t.Error("连接池配置错误")
}
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tr := newTransport(tt.opts...)
tt.test(t, tr)
})
}
}
func TestTransportWithRealServer(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
time.Sleep(10 * time.Millisecond) // 模拟处理延迟
w.Write([]byte("ok"))
}))
defer server.Close()
tr := newTransport(
Timeout(100*time.Millisecond),
MaxConns(10),
Verify(false),
)
client := &http.Client{Transport: tr}
// 并发测试
for i := 0; i < 10; i++ {
go func() {
resp, err := client.Get(server.URL)
if err != nil {
t.Error(err)
return
}
defer resp.Body.Close()
}()
}
time.Sleep(200 * time.Millisecond)
}
func TestTransportProxy(t *testing.T) {
proxyServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("proxy response"))
}))
defer proxyServer.Close()
tr := newTransport(Proxy(proxyServer.URL))
// 验证代理设置是否生效
proxyURL, err := tr.Proxy(&http.Request{URL: &url.URL{Scheme: "http", Host: "example.com"}})
if err != nil {
t.Fatal(err)
}
if proxyURL == nil {
t.Error("代理未正确设置")
}
}