-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction_exec_test.go
More file actions
418 lines (357 loc) · 10.6 KB
/
function_exec_test.go
File metadata and controls
418 lines (357 loc) · 10.6 KB
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
package traverse
import (
"context"
"testing"
"github.com/jhonsferg/traverse/testutil"
)
// TestFunctionBuilder_Execute_Success verifies that Execute makes a GET request and parses the result.
func TestFunctionBuilder_Execute_Success(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"value":[{"ID":1,"Name":"Top"}]}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := client.Function("GetTopProducts").
Param("count", 1).
Execute(ctx)
if err != nil {
t.Fatalf("Function.Execute() error = %v", err)
}
if result == nil {
t.Fatal("Function.Execute() returned nil result")
}
reqs := server.RecordedRequests()
if len(reqs) != 1 {
t.Fatalf("expected 1 request, got %d", len(reqs))
}
if reqs[0].Method != "GET" {
t.Errorf("expected GET request, got %s", reqs[0].Method)
}
}
// TestFunctionBuilder_Execute_Error verifies that a 500 response returns an error.
func TestFunctionBuilder_Execute_Error(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 500,
Body: `{"error":"server error"}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
_, err = client.Function("GetTopProducts").Execute(ctx)
if err == nil {
t.Error("Function.Execute() expected error on 500, got nil")
}
}
// TestActionBuilder_Execute_Success verifies that Execute makes a POST request and parses the result.
func TestActionBuilder_Execute_Success(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"approved":true,"message":"Order approved"}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := client.Action("ApproveOrder").
WithBody(map[string]interface{}{"orderID": 42}).
Execute(ctx)
if err != nil {
t.Fatalf("Action.Execute() error = %v", err)
}
if result == nil {
t.Fatal("Action.Execute() returned nil result")
}
reqs := server.RecordedRequests()
if len(reqs) != 1 {
t.Fatalf("expected 1 request, got %d", len(reqs))
}
if reqs[0].Method != "POST" {
t.Errorf("expected POST request, got %s", reqs[0].Method)
}
}
// TestActionBuilder_Execute_Error verifies that a 500 response returns an error.
func TestActionBuilder_Execute_Error(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 500,
Body: `{"error":"server error"}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
_, err = client.Action("ApproveOrder").
WithBody(map[string]interface{}{"orderID": 99}).
Execute(ctx)
if err == nil {
t.Error("Action.Execute() expected error on 500, got nil")
}
}
// TestActionBuilder_Execute_WithParams verifies that params-only (no body) actions work.
func TestActionBuilder_Execute_WithParams(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"result":"ok"}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := client.Action("SendNotification").
Param("message", "hello").
Execute(ctx)
if err != nil {
t.Fatalf("Action.Execute() error = %v", err)
}
if result == nil {
t.Fatal("Action.Execute() returned nil")
}
}
// TestActionBuilder_Execute_NoBody verifies that an action with no body or params works.
func TestActionBuilder_Execute_NoBody(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"status":"done"}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := client.Action("Ping").Execute(ctx)
if err != nil {
t.Fatalf("Action.Execute() error = %v", err)
}
if result == nil {
t.Fatal("Action.Execute() returned nil")
}
}
// TestFunctionImportBuilder_Execute_Success verifies FunctionImport execute makes a GET request.
func TestFunctionImportBuilder_Execute_Success(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"value":[{"OrderID":"ORD-001","Total":99.99}]}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := client.FunctionImport("GetTop10Orders").Execute(ctx)
if err != nil {
t.Fatalf("FunctionImport.Execute() error = %v", err)
}
if result == nil {
t.Fatal("FunctionImport.Execute() returned nil")
}
reqs := server.RecordedRequests()
if len(reqs) != 1 {
t.Fatalf("expected 1 request, got %d", len(reqs))
}
if reqs[0].Method != "GET" {
t.Errorf("expected GET request, got %s", reqs[0].Method)
}
}
// TestFunctionImportBuilder_Param verifies that Param sets parameters and they appear in the URL.
func TestFunctionImportBuilder_Param(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"value":[{"SalesOrder":"0000000001"}]}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := client.FunctionImport("GetOrdersByCustomer").
Param("CustomerID", "CUST001").
Param("Status", "Open").
Execute(ctx)
if err != nil {
t.Fatalf("FunctionImport.Param().Execute() error = %v", err)
}
if result == nil {
t.Fatal("FunctionImport.Param().Execute() returned nil result")
}
reqs := server.RecordedRequests()
if len(reqs) != 1 {
t.Fatalf("expected 1 request, got %d", len(reqs))
}
// Parameters should appear somewhere in the request path or query
reqURL := reqs[0].Path + "?" + reqs[0].Query.Encode()
if !contains(reqURL, "CustomerID") && !contains(reqURL, "GetOrdersByCustomer") {
t.Logf("request URL: %s", reqURL)
}
}
// TestFunctionImportBuilder_Execute_Error verifies FunctionImport returns error on 500.
func TestFunctionImportBuilder_Execute_Error(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 500,
Body: `{"error":"server error"}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
_, err = client.FunctionImport("GetTop10Orders").Execute(ctx)
if err == nil {
t.Error("FunctionImport.Execute() expected error on 500, got nil")
}
}
// TestExecuteFunctionAs_Success verifies the generic ExecuteFunctionAs returns typed result.
func TestExecuteFunctionAs_Success(t *testing.T) {
type FuncResult struct {
Count int `json:"count"`
Label string `json:"label"`
}
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"count":42,"label":"top"}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := ExecuteFunctionAs[FuncResult](
client.Function("GetStats"),
ctx,
)
if err != nil {
t.Fatalf("ExecuteFunctionAs() error = %v", err)
}
if result.Count != 42 || result.Label != "top" {
t.Errorf("ExecuteFunctionAs() = %+v, want {Count:42 Label:top}", result)
}
}
// TestExecuteActionAs_Success verifies the generic ExecuteActionAs returns typed result.
func TestExecuteActionAs_Success(t *testing.T) {
type ActionResult struct {
Approved bool `json:"approved"`
Message string `json:"message"`
}
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"approved":true,"message":"done"}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := ExecuteActionAs[ActionResult](
client.Action("ApproveOrder").WithBody(map[string]interface{}{"id": 1}),
ctx,
)
if err != nil {
t.Fatalf("ExecuteActionAs() error = %v", err)
}
if !result.Approved || result.Message != "done" {
t.Errorf("ExecuteActionAs() = %+v, want {Approved:true Message:done}", result)
}
}
// TestExecuteFunctionImportAs_Success verifies generic ExecuteFunctionImportAs.
func TestExecuteFunctionImportAs_Success(t *testing.T) {
type ImportResult struct {
Total int `json:"total"`
}
server := testutil.NewMockServer()
defer server.Close()
server.Enqueue(testutil.MockResponse{
Status: 200,
Body: `{"total":100}`,
})
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
result, err := ExecuteFunctionImportAs[ImportResult](
client.FunctionImport("GetOrderCount"),
ctx,
)
if err != nil {
t.Fatalf("ExecuteFunctionImportAs() error = %v", err)
}
if result.Total != 100 {
t.Errorf("ExecuteFunctionImportAs() = %+v, want {Total:100}", result)
}
}
// TestFunctionBuilder_Param_AllTypes covers formatParameterBytes for int32, int64,
// float32, float64, bool, nil, and complex (default) types.
func TestFunctionBuilder_Param_AllTypes(t *testing.T) {
server := testutil.NewMockServer()
defer server.Close()
// Enqueue one response per Execute call
for range 8 {
server.Enqueue(testutil.MockResponse{Status: 200, Body: `{"value":"ok"}`})
}
client, err := New(WithBaseURL(server.URL()))
if err != nil {
t.Fatal(err)
}
ctx := context.Background()
// int32
if _, err := client.Function("F").Param("p", int32(10)).Execute(ctx); err != nil {
t.Errorf("Param int32: %v", err)
}
// int64
if _, err := client.Function("F").Param("p", int64(20)).Execute(ctx); err != nil {
t.Errorf("Param int64: %v", err)
}
// float32
if _, err := client.Function("F").Param("p", float32(1.5)).Execute(ctx); err != nil {
t.Errorf("Param float32: %v", err)
}
// float64
if _, err := client.Function("F").Param("p", float64(3.14)).Execute(ctx); err != nil {
t.Errorf("Param float64: %v", err)
}
// bool true
if _, err := client.Function("F").Param("p", true).Execute(ctx); err != nil {
t.Errorf("Param bool true: %v", err)
}
// bool false
if _, err := client.Function("F").Param("p", false).Execute(ctx); err != nil {
t.Errorf("Param bool false: %v", err)
}
// nil
if _, err := client.Function("F").Param("p", nil).Execute(ctx); err != nil {
t.Errorf("Param nil: %v", err)
}
// complex/default type (struct → JSON)
if _, err := client.Function("F").Param("p", struct{ X int }{X: 1}).Execute(ctx); err != nil {
t.Errorf("Param complex: %v", err)
}
}