forked from Shopify/toxiproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy_test.go
215 lines (177 loc) · 5.09 KB
/
proxy_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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package toxiproxy_test
import (
"bytes"
"encoding/hex"
"io"
"net"
"testing"
"time"
"github.com/sirupsen/logrus"
"github.com/Shopify/toxiproxy/v2"
"github.com/Shopify/toxiproxy/v2/testhelper"
)
func init() {
logrus.SetLevel(logrus.FatalLevel)
}
func TestProxySimpleMessage(t *testing.T) {
WithTCPProxy(t, func(conn net.Conn, response chan []byte, proxy *toxiproxy.Proxy) {
msg := []byte("hello world")
_, err := conn.Write(msg)
if err != nil {
t.Error("Failed writing to TCP server", err)
}
err = conn.Close()
if err != nil {
t.Error("Failed to close TCP connection", err)
}
resp := <-response
if !bytes.Equal(resp, msg) {
t.Error("Server didn't read correct bytes from client", resp)
}
})
}
func TestProxyToDownUpstream(t *testing.T) {
proxy := NewTestProxy("test", "localhost:20009")
proxy.Start()
conn := AssertProxyUp(t, proxy.Listen, true)
// Check to make sure the connection is closed
conn.SetReadDeadline(time.Now().Add(500 * time.Millisecond))
_, err := conn.Read(make([]byte, 1))
if err != io.EOF {
t.Error("Proxy did not close connection when upstream down", err)
}
proxy.Stop()
}
func TestProxyBigMessage(t *testing.T) {
WithTCPProxy(t, func(conn net.Conn, response chan []byte, proxy *toxiproxy.Proxy) {
buf := make([]byte, 32*1024)
msg := make([]byte, len(buf)*2)
hex.Encode(msg, buf)
_, err := conn.Write(msg)
if err != nil {
t.Error("Failed writing to TCP server", err)
}
err = conn.Close()
if err != nil {
t.Error("Failed to close TCP connection", err)
}
resp := <-response
if !bytes.Equal(resp, msg) {
t.Error("Server didn't read correct bytes from client", resp)
}
})
}
func TestProxyTwoPartMessage(t *testing.T) {
WithTCPProxy(t, func(conn net.Conn, response chan []byte, proxy *toxiproxy.Proxy) {
msg1 := []byte("hello world")
msg2 := []byte("hello world")
_, err := conn.Write(msg1)
if err != nil {
t.Error("Failed writing to TCP server", err)
}
_, err = conn.Write(msg2)
if err != nil {
t.Error("Failed writing to TCP server", err)
}
err = conn.Close()
if err != nil {
t.Error("Failed to close TCP connection", err)
}
msg1 = append(msg1, msg2...)
resp := <-response
if !bytes.Equal(resp, msg1) {
t.Error("Server didn't read correct bytes from client", resp)
}
})
}
func TestClosingProxyMultipleTimes(t *testing.T) {
WithTCPProxy(t, func(conn net.Conn, response chan []byte, proxy *toxiproxy.Proxy) {
proxy.Stop()
proxy.Stop()
proxy.Stop()
})
}
func TestStartTwoProxiesOnSameAddress(t *testing.T) {
WithTCPProxy(t, func(conn net.Conn, response chan []byte, proxy *toxiproxy.Proxy) {
proxy2 := NewTestProxy("proxy_2", "localhost:3306")
proxy2.Listen = proxy.Listen
if err := proxy2.Start(); err == nil {
t.Fatal("Expected an err back from start")
}
})
}
func TestStopProxyBeforeStarting(t *testing.T) {
testhelper.WithTCPServer(t, func(upstream string, response chan []byte) {
proxy := NewTestProxy("test", upstream)
AssertProxyUp(t, proxy.Listen, false)
proxy.Stop()
err := proxy.Start()
if err != nil {
t.Error("Proxy failed to start", err)
}
err = proxy.Start()
if err != toxiproxy.ErrProxyAlreadyStarted {
t.Error("Proxy did not fail to start when already started", err)
}
AssertProxyUp(t, proxy.Listen, true)
proxy.Stop()
AssertProxyUp(t, proxy.Listen, false)
})
}
func TestProxyUpdate(t *testing.T) {
testhelper.WithTCPServer(t, func(upstream string, response chan []byte) {
proxy := NewTestProxy("test", upstream)
err := proxy.Start()
if err != nil {
t.Error("Proxy failed to start", err)
}
AssertProxyUp(t, proxy.Listen, true)
before := proxy.Listen
input := &toxiproxy.Proxy{Listen: "localhost:0", Upstream: proxy.Upstream, Enabled: true}
err = proxy.Update(input)
if err != nil {
t.Error("Failed to update proxy", err)
}
if proxy.Listen == before || proxy.Listen == input.Listen {
t.Errorf("Proxy update didn't change listen address: %s to %s", before, proxy.Listen)
}
AssertProxyUp(t, proxy.Listen, true)
input.Listen = proxy.Listen
err = proxy.Update(input)
if err != nil {
t.Error("Failed to update proxy", err)
}
AssertProxyUp(t, proxy.Listen, true)
input.Enabled = false
err = proxy.Update(input)
if err != nil {
t.Error("Failed to update proxy", err)
}
AssertProxyUp(t, proxy.Listen, false)
})
}
func TestRestartFailedToStartProxy(t *testing.T) {
testhelper.WithTCPServer(t, func(upstream string, response chan []byte) {
proxy := NewTestProxy("test", upstream)
conflict := NewTestProxy("test2", upstream)
err := conflict.Start()
if err != nil {
t.Error("Proxy failed to start", err)
}
AssertProxyUp(t, conflict.Listen, true)
proxy.Listen = conflict.Listen
err = proxy.Start()
if err == nil || err == toxiproxy.ErrProxyAlreadyStarted {
t.Error("Proxy started when it should have conflicted")
}
conflict.Stop()
AssertProxyUp(t, conflict.Listen, false)
err = proxy.Start()
if err != nil {
t.Error("Proxy failed to start after conflict went away", err)
}
AssertProxyUp(t, proxy.Listen, true)
proxy.Stop()
AssertProxyUp(t, proxy.Listen, false)
})
}