-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathdebug_test.go
279 lines (254 loc) · 8.37 KB
/
debug_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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
package proxy
import (
"bytes"
"errors"
"io"
"net/http"
"testing"
"github.com/zalando/skipper/eskip"
)
func takePt(n int) *int { return &n }
func TestDebug(t *testing.T) {
for _, ti := range []struct {
msg string
in debugInfo
expect debugDocument
}{{
"empty debug info",
debugInfo{},
debugDocument{},
}, {
"full doc",
debugInfo{
route: &eskip.Route{
Id: "testRoute",
Path: "/hello",
Backend: "https://www.example.org",
Predicates: []*eskip.Predicate{{Name: "Test", Args: []interface{}{3.14, "hello"}}},
Filters: []*eskip.Filter{
{Name: "filter0", Args: []interface{}{float64(3.1415), "argvalue"}},
{Name: "filter1", Args: []interface{}{float64(-42), `ap"argvalue`}}}},
incoming: &http.Request{
Method: "OPTIONS",
RequestURI: "/testuri",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header": []string{"test-header-value"}},
Host: "test.example.org",
RemoteAddr: "::1",
Body: io.NopCloser(bytes.NewBufferString("incoming body content"))},
outgoing: &http.Request{
Method: "HEAD",
RequestURI: "/testuri2",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header-2": []string{"test-header-value-2"}},
Host: "www.example.org",
Body: io.NopCloser(bytes.NewBufferString("outgoing body content"))},
response: &http.Response{
StatusCode: http.StatusTeapot,
Header: http.Header{"X-Test-Response-Header": []string{"test-response-header-value"}},
Body: io.NopCloser(bytes.NewBufferString("response body"))}},
debugDocument{
RouteId: "testRoute",
Route: (&eskip.Route{
Path: "/hello", Backend: "https://www.example.org",
Predicates: []*eskip.Predicate{{Name: "Test", Args: []interface{}{3.14, "hello"}}},
Filters: []*eskip.Filter{
{Name: "filter0", Args: []interface{}{float64(3.1415), "argvalue"}},
{Name: "filter1", Args: []interface{}{float64(-42), `ap"argvalue`}}}}).String(),
Predicates: []*eskip.Predicate{{Name: "Test", Args: []interface{}{3.14, "hello"}}},
Filters: []*eskip.Filter{
{Name: "filter0", Args: []interface{}{float64(3.1415), "argvalue"}},
{Name: "filter1", Args: []interface{}{float64(-42), `ap"argvalue`}}},
Incoming: &debugRequest{
Method: "OPTIONS",
Uri: "/testuri",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header": []string{"test-header-value"}},
Host: "test.example.org",
RemoteAddress: "::1"},
Outgoing: &debugRequest{
Method: "HEAD",
Uri: "/testuri2",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header-2": []string{"test-header-value-2"}},
Host: "www.example.org"},
ResponseMod: &debugResponseMod{
Status: takePt(http.StatusTeapot),
Header: http.Header{"X-Test-Response-Header": []string{"test-response-header-value"}}},
RequestBody: "outgoing body content",
ResponseModBody: "response body"},
}, {
"route not found",
debugInfo{
incoming: &http.Request{
Method: "OPTIONS",
RequestURI: "/testuri",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header": []string{"test-header-value"}},
Host: "test.example.org",
RemoteAddr: "::1",
Body: io.NopCloser(bytes.NewBufferString("incoming body content"))},
response: &http.Response{StatusCode: http.StatusNotFound}},
debugDocument{
Incoming: &debugRequest{
Method: "OPTIONS",
Uri: "/testuri",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header": []string{"test-header-value"}},
Host: "test.example.org",
RemoteAddress: "::1"},
ResponseMod: &debugResponseMod{
Status: takePt(http.StatusNotFound)},
RequestBody: "incoming body content"},
}, {
"incoming body when no outgoing",
debugInfo{
incoming: &http.Request{
Method: "OPTIONS",
RequestURI: "/testuri",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header": []string{"test-header-value"}},
Host: "test.example.org",
RemoteAddr: "::1",
Body: io.NopCloser(bytes.NewBufferString("incoming body content"))}},
debugDocument{
Incoming: &debugRequest{
Method: "OPTIONS",
Uri: "/testuri",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header": []string{"test-header-value"}},
Host: "test.example.org",
RemoteAddress: "::1"},
RequestBody: "incoming body content"},
}, {
"no request body",
debugInfo{
incoming: &http.Request{
Method: "OPTIONS",
RequestURI: "/testuri",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header": []string{"test-header-value"}},
Host: "test.example.org",
RemoteAddr: "::1"}},
debugDocument{
Incoming: &debugRequest{
Method: "OPTIONS",
Uri: "/testuri",
Proto: "HTTP/1.1",
Header: http.Header{"X-Test-Header": []string{"test-header-value"}},
Host: "test.example.org",
RemoteAddress: "::1"}},
}, {
"no response",
debugInfo{response: &http.Response{Header: http.Header{}}},
debugDocument{},
}, {
"response when status",
debugInfo{
response: &http.Response{
StatusCode: http.StatusTeapot,
Header: http.Header{}}},
debugDocument{ResponseMod: &debugResponseMod{Status: takePt(http.StatusTeapot)}},
}, {
"response when header",
debugInfo{
response: &http.Response{
Header: http.Header{"X-Test-Header": []string{"header-value"}}}},
debugDocument{
ResponseMod: &debugResponseMod{
Header: http.Header{"X-Test-Header": []string{"header-value"}}}},
}, {
"no response body",
debugInfo{
response: &http.Response{
StatusCode: http.StatusTeapot}},
debugDocument{
ResponseMod: &debugResponseMod{
Status: takePt(http.StatusTeapot)}},
}, {
"error",
debugInfo{
err: errors.New("test error"),
},
debugDocument{
ProxyError: "test error",
},
}} {
compareStrings := func(smsg string, got, expect []string) {
if len(got) != len(expect) {
t.Error(ti.msg, smsg, "conversion failed")
return
}
for i, v := range got {
if v != expect[i] {
t.Error(ti.msg, "failed to convert filter panics")
}
}
}
compareHeader := func(got, expect http.Header) {
if len(got) != len(expect) {
t.Error(ti.msg, "failed to convert header")
return
}
for k, v := range got {
compareStrings("header", v, expect[k])
}
}
compareRequest := func(got, expect *debugRequest) {
if got == nil && expect != nil || got != nil && expect == nil {
t.Error(ti.msg, "failed to convert incoming request")
return
}
if got == nil {
return
}
if got.Method != expect.Method {
t.Error(ti.msg, "failed to convert method")
}
if got.Uri != expect.Uri {
t.Error(ti.msg, "failed to convert request uri")
}
if got.Proto != expect.Proto {
t.Error(ti.msg, "failed to convert request proto")
}
compareHeader(got.Header, expect.Header)
if got.Host != expect.Host {
t.Error(ti.msg, "failed to convert request host")
}
if got.RemoteAddress != expect.RemoteAddress {
t.Error(ti.msg, "failed to convert remote address")
}
}
got := convertDebugInfo(&ti.in)
if got.RouteId != ti.expect.RouteId {
t.Error(ti.msg, "failed to convert route id")
}
if got.Route != ti.expect.Route {
t.Error(ti.msg, "failed to convert route")
}
compareRequest(got.Incoming, ti.expect.Incoming)
compareRequest(got.Outgoing, ti.expect.Outgoing)
if got.ResponseMod == nil && ti.expect.ResponseMod != nil ||
got.ResponseMod != nil && ti.expect.ResponseMod == nil {
t.Error(ti.msg, "failed to convert response diff")
continue
}
if got.ResponseMod != nil {
if got.ResponseMod.Status == nil && ti.expect.ResponseMod.Status != nil ||
got.ResponseMod.Status != nil && ti.expect.ResponseMod.Status == nil ||
got.ResponseMod.Status != nil && *got.ResponseMod.Status != *ti.expect.ResponseMod.Status {
t.Error(ti.msg, "failed to convert response modification")
}
compareHeader(got.ResponseMod.Header, ti.expect.ResponseMod.Header)
}
if got.RequestBody != ti.expect.RequestBody {
t.Error(ti.msg, "failed to convert request body")
}
if got.ResponseModBody != ti.expect.ResponseModBody {
t.Error(ti.msg, "failed to convert response mod body")
}
if got.ProxyError != ti.expect.ProxyError {
t.Error(ti.msg, "failed to convert proxy error")
}
}
}