-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter_test.go
279 lines (241 loc) · 5.87 KB
/
router_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 harpy_test
import (
"context"
"encoding/json"
. "github.com/dogmatiq/harpy"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("type Router", func() {
var (
request Request
router *Router
)
BeforeEach(func() {
request = Request{
Version: "2.0",
ID: json.RawMessage(`123`),
Method: "<method>",
Parameters: json.RawMessage(`[1, 2, 3]`),
}
})
Describe("func NewRouter()", func() {
It("unmarshals parameters based on the type in the route (via WithRoute())", func() {
called := false
router = NewRouter(
WithRoute(
"<method>",
func(ctx context.Context, params []int) (any, error) {
called = true
Expect(params).To(Equal([]int{1, 2, 3}))
return nil, nil
},
),
)
router.Call(context.Background(), request)
Expect(called).To(BeTrue())
})
It("supports unmarshal options (via WithRoute())", func() {
called := false
request.Parameters = json.RawMessage(`{"Value": 123, "Unknown": 456}`)
type Params struct {
Value int
}
router = NewRouter(
WithRoute(
"<method>",
func(ctx context.Context, params Params) (any, error) {
called = true
Expect(params).To(Equal(Params{Value: 123}))
return nil, nil
},
AllowUnknownFields(true),
),
)
router.Call(context.Background(), request)
Expect(called).To(BeTrue())
})
It("allows calls to handlers that don't return a result (via NoResult())", func() {
called := false
router = NewRouter(
WithRoute(
"<method>",
NoResult(func(ctx context.Context, params []int) error {
called = true
Expect(params).To(Equal([]int{1, 2, 3}))
return nil
}),
),
)
router.Call(context.Background(), request)
Expect(called).To(BeTrue())
})
It("returns an error response if the parameters can not be unpacked", func() {
router = NewRouter(
WithRoute(
"<method>",
func(ctx context.Context, params []string) (any, error) {
panic("unexpected call")
},
),
)
res := router.Call(context.Background(), request)
var errorRes ErrorResponse
Expect(res).To(BeAssignableToTypeOf(errorRes))
errorRes = res.(ErrorResponse)
errorRes.ServerError = nil // remove for comparison
Expect(errorRes).To(Equal(ErrorResponse{
Version: `2.0`,
RequestID: json.RawMessage(`123`),
Error: ErrorInfo{
Code: InvalidParametersCode,
Message: "json: cannot unmarshal number into Go value of type string",
},
}))
})
It("panics if two routes refer to the same method", func() {
Expect(func() {
NewRouter(
WithRoute(
"<method>",
func(context.Context, []int) (any, error) {
panic("not implemented")
},
),
WithRoute(
"<method>",
func(context.Context, []int) (any, error) {
panic("not implemented")
},
),
)
}).To(PanicWith("duplicate route for '<method>' method"))
})
})
Describe("func Call()", func() {
When("there is a route for the method", func() {
It("calls the associated handler", func() {
called := false
router = NewRouter(
WithUntypedRoute(
"<method>",
func(
_ context.Context,
req Request,
) (any, error) {
called = true
Expect(req).To(Equal(req))
return nil, nil
},
),
)
router.Call(context.Background(), request)
Expect(called).To(BeTrue())
})
When("the handler succeeds", func() {
var result any
BeforeEach(func() {
result = 456
router = NewRouter(
WithUntypedRoute(
"<method>",
func(
context.Context,
Request,
) (any, error) {
return result, nil
},
),
)
})
It("returns a success response that contains the marshaled result", func() {
res := router.Call(context.Background(), request)
Expect(res).To(Equal(SuccessResponse{
Version: `2.0`,
RequestID: json.RawMessage(`123`),
Result: json.RawMessage(`456`),
}))
})
})
When("the handler returns an error", func() {
var err error
BeforeEach(func() {
err = NewError(789, WithMessage("<error>"))
router = NewRouter(
WithUntypedRoute(
"<method>",
func(
context.Context,
Request,
) (any, error) {
return nil, err
},
),
)
})
It("returns an error response", func() {
res := router.Call(context.Background(), request)
Expect(res).To(Equal(ErrorResponse{
Version: `2.0`,
RequestID: json.RawMessage(`123`),
Error: ErrorInfo{
Code: 789,
Message: "<error>",
},
}))
})
})
})
When("there is no route for the method", func() {
BeforeEach(func() {
router = NewRouter()
})
It("returns an error response", func() {
res := router.Call(context.Background(), request)
Expect(res).To(Equal(ErrorResponse{
Version: `2.0`,
RequestID: json.RawMessage(`123`),
Error: ErrorInfo{
Code: MethodNotFoundCode,
Message: "method not found",
},
}))
})
})
})
Describe("func Notify()", func() {
BeforeEach(func() {
request.ID = nil
})
When("when there is a route for the method", func() {
It("calls the associated handler", func() {
called := false
router = NewRouter(
WithUntypedRoute(
"<method>",
func(
_ context.Context,
req Request,
) (any, error) {
called = true
Expect(req).To(Equal(req))
return nil, nil
},
),
)
router.Notify(context.Background(), request)
Expect(called).To(BeTrue())
})
})
When("there is no route for the method", func() {
BeforeEach(func() {
router = NewRouter()
})
It("ignores the request", func() {
Expect(func() {
router.Notify(context.Background(), request)
}).NotTo(Panic())
})
})
})
})