This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_test.go
308 lines (232 loc) · 8.06 KB
/
app_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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
package detour
import (
"errors"
"net/http"
"strings"
)
///////////////////////////////////////////////////////////////
type Controller struct{}
func (*Controller) HandleBasicInputModel(model *BlankBasicInputModel) Renderer {
return &ControllerResponse{Body: model.Content}
}
func (*Controller) HandleBindingInputModel(model *BindingInputModel) Renderer {
return &ControllerResponse{Body: model.Content}
}
func (*Controller) HandleInputModelWithContextField(model *ContextInputModel) Renderer {
return &ControllerResponse{Body: model.Context.Value("Key").(string)}
}
func (*Controller) HandleBindingFailsInputModel(*BindingFailsInputModel) Renderer {
panic("We shouldn't reach this point because the binding failed.")
}
func (*Controller) HandleBindingFailsCustomStatusCodeInputModel(*BindingFailsWithCustomStatusCodeInputModel) Renderer {
panic("We shouldn't reach this point because the binding failed.")
}
func (*Controller) HandleBindingEmptyErrorsInputModel(*BindingEmptyErrorsInputModel) Renderer {
return &ControllerResponse{}
}
func (*Controller) HandleBindingFailsInputModelWithDiagnostics(*BindingFailsInputModelWithDiagnostics) Renderer {
panic("We shouldn't reach this point because the binding failed.")
}
func (*Controller) HandleBindingFailsInputModelWithDiagnosticErrors(*BindingFailsInputModelWithDiagnosticErrors) Renderer {
panic("We shouldn't reach this point because the binding failed.")
}
func (*Controller) HandleBindingSucceedsInputModelWithEmptyDiagnosticErrors(model *BindingEmptyDiagnosticErrorsInputModel) Renderer {
return &ControllerResponse{Body: model.Content}
}
func (*Controller) HandleFailedBindingFromJSON(model *FailedBindingFromJSON) Renderer {
return &ControllerResponse{Body: model.Content}
}
func (*Controller) HandleBindingFromJSON(model *BindingFromJSON) Renderer {
return &ControllerResponse{Body: model.FromBody + model.FromHeader}
}
func (*Controller) HandleBindingFromJSONDisabled(model *BindingFromJSONDisabled) Renderer {
return &ControllerResponse{Body: model.FromBody + model.FromHeader}
}
func (*Controller) HandleSanitizingInputModel(model *SanitizingInputModel) Renderer {
return &ControllerResponse{Body: model.Content}
}
func (*Controller) HandleValidatingInputModel(model *ValidatingInputModel) Renderer {
return &ControllerResponse{Body: model.Content}
}
func (*Controller) HandleValidatingEmptyErrors(model *ValidatingEmptyErrorsInputModel) Renderer {
return &ControllerResponse{Body: model.Content}
}
func (*Controller) HandleValidatingEmptyDiagnosticErrors(model *ValidatingEmptyDiagnosticErrorsInputModel) Renderer {
return &ControllerResponse{Body: model.Content}
}
func (*Controller) HandleValidatingFailsInputModel(*ValidatingFailsInputModel) Renderer {
panic("We shouldn't reach this point because the validation failed.")
}
func (*Controller) HandleValidatingFailsWithCustomStatusCode(*ValidatingFailsWithCustomStatusCodeInputModel) Renderer {
panic("We shouldn't reach this point because the validation failed.")
}
func (*Controller) HandleFinalError(*FinalErrorInputModel) Renderer {
panic("We should't reach this point because the Error method returned true.")
}
func (*Controller) HandleNoFinalError(*NoFinalErrorInputModel) Renderer {
return nil
}
func (*Controller) HandleNilResponseInputModel(*NilResponseInputModel) Renderer {
return nil
}
func (*Controller) HandleNoInputModel() Renderer {
return nil
}
///////////////////////////////////////////////////////////////
type BlankBasicInputModel struct {
Content string
}
func NewBlankBasicInputModel() interface{} {
return &BlankBasicInputModel{Content: "BasicInputModel"}
}
/////
type BindingInputModel struct {
Content string
}
func (this *BindingInputModel) Bind(request *http.Request) error {
this.Content = request.Form.Get("binding")
return nil
}
/////
type ContextInputModel struct {
ContextBinder
}
/////
type BindingEmptyErrorsInputModel struct {
}
func (this *BindingEmptyErrorsInputModel) Bind(*http.Request) error {
var errors Errors
return errors
}
/////
type BindingFailsInputModel struct{}
func (this *BindingFailsInputModel) Bind(*http.Request) error {
var errors Errors
errors = errors.Append(NewBindingValidationError("BindingFailsInputModel"))
return errors
}
/////
type BindingFailsWithCustomStatusCodeInputModel struct{}
func (this *BindingFailsWithCustomStatusCodeInputModel) Bind(*http.Request) error {
var errors Errors
errors = errors.Append(&InputError{HTTPStatusCode: http.StatusTeapot})
return errors
}
/////
type BindingFailsInputModelWithDiagnostics struct{}
func (this *BindingFailsInputModelWithDiagnostics) Bind(*http.Request) error {
return NewDiagnosticError("BindingFailsInputModel")
}
/////
type BindingFailsInputModelWithDiagnosticErrors struct{}
func (this *BindingFailsInputModelWithDiagnosticErrors) Bind(*http.Request) error {
var err DiagnosticErrors
err = err.Append(errors.New("BindingFailsInputModel"))
return err
}
/////
type BindingEmptyDiagnosticErrorsInputModel struct {
Content string
errs DiagnosticErrors
}
func (this *BindingEmptyDiagnosticErrorsInputModel) Bind(*http.Request) (err error) {
this.Content = "BindingEmptyDiagnosticErrorsInputModel"
return this.errs
}
/////
type FailedBindingFromJSON struct {
Content string
}
/////
type BindingFromJSON struct {
FromBody string `json:"content"`
FromHeader string `json:"-"`
}
func (this *BindingFromJSON) BindJSON() bool { return true }
func (this *BindingFromJSON) Bind(request *http.Request) error {
this.FromHeader = request.Header.Get("binding")
return nil
}
/////
type BindingFromJSONDisabled struct {
FromBody string `json:"content"`
FromHeader string `json:"-"`
}
func (this *BindingFromJSONDisabled) BindJSON() bool { return false }
func (this *BindingFromJSONDisabled) Bind(request *http.Request) error {
this.FromHeader = request.Header.Get("binding")
return nil
}
/////
type SanitizingInputModel struct {
Content string
}
func (this *SanitizingInputModel) Bind(request *http.Request) error {
this.Content = request.Form.Get("binding")
return nil
}
func (this *SanitizingInputModel) Sanitize() {
this.Content = strings.ToUpper(strings.Replace(this.Content, "Binding", "Sanitizing", 1))
}
/////
type ValidatingInputModel struct {
Content string
}
func (this *ValidatingInputModel) Bind(*http.Request) error {
return nil
}
func (this *ValidatingInputModel) Validate() error {
this.Content = "ValidatingInputModel"
return nil
}
/////
type ValidatingFailsInputModel struct{}
func (this *ValidatingFailsInputModel) Validate() error {
var errors Errors
errors = errors.Append(NewBindingValidationError("ValidatingFailsInputModel"))
return errors
}
/////
type ValidatingFailsWithCustomStatusCodeInputModel struct{}
func (this *ValidatingFailsWithCustomStatusCodeInputModel) Validate() error {
return &DiagnosticError{HTTPStatusCode: http.StatusTeapot}
}
/////
type ValidatingEmptyErrorsInputModel struct{ Content string }
func (this *ValidatingEmptyErrorsInputModel) Validate() error {
this.Content = "ValidatingEmptyErrorsInputModel"
var errors Errors
return errors
}
/////
type ValidatingEmptyDiagnosticErrorsInputModel struct{ Content string }
func (this *ValidatingEmptyDiagnosticErrorsInputModel) Validate() error {
this.Content = "ValidatingEmptyDiagnosticErrorsInputModel"
var errors DiagnosticErrors
return errors
}
/////
type FinalErrorInputModel struct{}
func (this *FinalErrorInputModel) Error() bool { return true }
/////
type NoFinalErrorInputModel struct{}
func (this *NoFinalErrorInputModel) Error() bool { return false }
/////
type NilResponseInputModel struct{}
////////////////////////////////////////////////////////////////
type ControllerResponse struct {
Body string
}
func (this *ControllerResponse) Render(response http.ResponseWriter, _ *http.Request) {
http.Error(response, "Just handled: "+this.Body, http.StatusOK)
}
////////////////////////////////////////////////////////////////
type BindingValidationError struct {
Problem string
}
func NewBindingValidationError(problem string) *BindingValidationError {
return &BindingValidationError{Problem: problem}
}
func (this *BindingValidationError) Error() string {
return this.Problem
}