-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrouter_test.go
More file actions
424 lines (368 loc) · 11.2 KB
/
router_test.go
File metadata and controls
424 lines (368 loc) · 11.2 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
419
420
421
422
423
424
package agent
import (
"context"
"errors"
"fmt"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/peerclaw/peerclaw-agent/peer"
"github.com/peerclaw/peerclaw-core/envelope"
"github.com/peerclaw/peerclaw-core/identity"
"github.com/peerclaw/peerclaw-core/protocol"
)
func makeEnvWithCapability(capability string) *envelope.Envelope {
env := envelope.New("src", "dst", protocol.ProtocolA2A, []byte("hello"))
env.Metadata[MetadataKeyCapability] = capability
return env
}
func TestRouter_BasicDispatch(t *testing.T) {
r := NewRouter(nil)
called := false
r.Handle("echo", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
called = true
return nil, nil
})
matched, _, err := r.Dispatch(context.Background(), makeEnvWithCapability("echo"))
if !matched {
t.Fatal("expected matched=true")
}
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if !called {
t.Error("handler was not called")
}
}
func TestRouter_NoCapabilityFallthrough(t *testing.T) {
r := NewRouter(nil)
r.Handle("echo", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
t.Fatal("should not be called")
return nil, nil
})
// Envelope without capability metadata.
env := envelope.New("src", "dst", protocol.ProtocolA2A, []byte("hello"))
matched, _, _ := r.Dispatch(context.Background(), env)
if matched {
t.Error("expected matched=false for envelope without capability")
}
// Envelope with nil metadata.
env2 := &envelope.Envelope{Payload: []byte("hello")}
matched2, _, _ := r.Dispatch(context.Background(), env2)
if matched2 {
t.Error("expected matched=false for nil metadata")
}
}
func TestRouter_UnknownCapabilityFallthrough(t *testing.T) {
r := NewRouter(nil)
r.Handle("echo", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
t.Fatal("should not be called")
return nil, nil
})
matched, _, _ := r.Dispatch(context.Background(), makeEnvWithCapability("translate"))
if matched {
t.Error("expected matched=false for unregistered capability")
}
}
func TestRouter_HandlerReturnsResponse(t *testing.T) {
r := NewRouter(nil)
r.Handle("echo", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
return &envelope.Envelope{Payload: []byte("pong")}, nil
})
matched, resp, err := r.Dispatch(context.Background(), makeEnvWithCapability("echo"))
if !matched {
t.Fatal("expected matched=true")
}
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if resp == nil {
t.Fatal("expected non-nil response")
}
if string(resp.Payload) != "pong" {
t.Errorf("resp payload = %q, want %q", resp.Payload, "pong")
}
}
func TestRouter_HandlerReturnsError(t *testing.T) {
r := NewRouter(nil)
r.Handle("fail", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
return nil, errors.New("something went wrong")
})
matched, resp, err := r.Dispatch(context.Background(), makeEnvWithCapability("fail"))
if !matched {
t.Fatal("expected matched=true")
}
if err == nil {
t.Fatal("expected error")
}
if resp != nil {
t.Error("expected nil response on error")
}
}
func TestRouter_HandlerReturnsNil(t *testing.T) {
r := NewRouter(nil)
r.Handle("fire", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
return nil, nil
})
matched, resp, err := r.Dispatch(context.Background(), makeEnvWithCapability("fire"))
if !matched {
t.Fatal("expected matched=true")
}
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if resp != nil {
t.Error("expected nil response for fire-and-forget")
}
}
func TestRouter_MiddlewareExecution(t *testing.T) {
r := NewRouter(nil)
var preHook, postHook bool
r.Use(func(next HandlerFunc) HandlerFunc {
return func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
preHook = true
resp, err := next(ctx, env)
postHook = true
return resp, err
}
})
r.Handle("echo", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
if !preHook {
t.Error("pre-hook should run before handler")
}
return nil, nil
})
r.Dispatch(context.Background(), makeEnvWithCapability("echo"))
if !postHook {
t.Error("post-hook should run after handler")
}
}
func TestRouter_MiddlewareChainOrder(t *testing.T) {
r := NewRouter(nil)
var order []string
makeMW := func(name string) Middleware {
return func(next HandlerFunc) HandlerFunc {
return func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
order = append(order, name+"-pre")
resp, err := next(ctx, env)
order = append(order, name+"-post")
return resp, err
}
}
}
r.Use(makeMW("A"))
r.Use(makeMW("B"))
r.Handle("test", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
order = append(order, "handler")
return nil, nil
})
r.Dispatch(context.Background(), makeEnvWithCapability("test"))
expected := []string{"A-pre", "B-pre", "handler", "B-post", "A-post"}
if len(order) != len(expected) {
t.Fatalf("order = %v, want %v", order, expected)
}
for i, v := range expected {
if order[i] != v {
t.Errorf("order[%d] = %q, want %q", i, order[i], v)
}
}
}
func TestRouter_RecoveryMiddleware(t *testing.T) {
r := NewRouter(nil)
r.Use(RecoveryMiddleware(nil))
r.Handle("panic", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
panic("boom")
})
matched, resp, err := r.Dispatch(context.Background(), makeEnvWithCapability("panic"))
if !matched {
t.Fatal("expected matched=true")
}
if err == nil {
t.Fatal("expected error from recovered panic")
}
if resp != nil {
t.Error("expected nil response on panic")
}
if err.Error() != "handler panic: boom" {
t.Errorf("error = %q, want %q", err.Error(), "handler panic: boom")
}
}
func TestRouter_LoggingMiddleware(t *testing.T) {
r := NewRouter(nil)
r.Use(LoggingMiddleware(nil))
called := false
r.Handle("echo", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
called = true
return &envelope.Envelope{Payload: []byte("ok")}, nil
})
matched, resp, err := r.Dispatch(context.Background(), makeEnvWithCapability("echo"))
if !matched || err != nil {
t.Fatalf("matched=%v, err=%v", matched, err)
}
if !called {
t.Error("handler not called")
}
if string(resp.Payload) != "ok" {
t.Errorf("resp payload = %q, want %q", resp.Payload, "ok")
}
}
func TestAgent_HandleAndOnMessage_Coexistence(t *testing.T) {
a, err := New(Options{
Name: "test",
ServerURL: "http://localhost:8080",
})
if err != nil {
t.Fatalf("New: %v", err)
}
// Generate a keypair for peer-1 and register it so message validation passes.
kp, err := identity.GenerateKeypair()
if err != nil {
t.Fatalf("GenerateKeypair: %v", err)
}
a.AddContact("peer-1")
a.peerManager.AddPeer(&peer.Peer{
ID: "peer-1",
PublicKey: kp.PublicKeyString(),
})
var routerCalled, handlerCalled bool
a.Handle("greet", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
routerCalled = true
return nil, nil
})
a.OnMessage(func(ctx context.Context, env *envelope.Envelope) {
handlerCalled = true
})
// Envelope with capability → router handles, OnMessage not called.
env1 := envelope.New("peer-1", "test", protocol.ProtocolA2A, []byte("hi"))
env1.Metadata[MetadataKeyCapability] = "greet"
env1.Nonce = "nonce-coexist-001"
env1.Timestamp = time.Now()
if err := identity.SignEnvelope(env1, kp.PrivateKey); err != nil {
t.Fatalf("SignEnvelope: %v", err)
}
a.HandleIncomingEnvelope(context.Background(), env1)
if !routerCalled {
t.Error("router handler should be called")
}
if handlerCalled {
t.Error("OnMessage should NOT be called when router matches")
}
// Envelope without capability → OnMessage handles.
routerCalled = false
env2 := envelope.New("peer-1", "test", protocol.ProtocolA2A, []byte("hello"))
env2.Nonce = "nonce-coexist-002"
env2.Timestamp = time.Now()
if err := identity.SignEnvelope(env2, kp.PrivateKey); err != nil {
t.Fatalf("SignEnvelope: %v", err)
}
a.HandleIncomingEnvelope(context.Background(), env2)
if routerCalled {
t.Error("router should NOT be called for non-capability envelope")
}
if !handlerCalled {
t.Error("OnMessage should be called when router does not match")
}
}
func TestAgent_Capabilities_Union(t *testing.T) {
a, err := New(Options{
Name: "test",
ServerURL: "http://localhost:8080",
Capabilities: []string{"chat", "search"},
})
if err != nil {
t.Fatalf("New: %v", err)
}
a.Handle("translate", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
return nil, nil
})
a.Handle("chat", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
return nil, nil
})
caps := a.Capabilities()
capSet := make(map[string]bool)
for _, c := range caps {
if capSet[c] {
t.Errorf("duplicate capability: %s", c)
}
capSet[c] = true
}
for _, expected := range []string{"chat", "search", "translate"} {
if !capSet[expected] {
t.Errorf("missing capability: %s", expected)
}
}
if len(caps) != 3 {
t.Errorf("len(caps) = %d, want 3", len(caps))
}
}
func TestAgent_HandleIncomingEnvelope_AutoResponse(t *testing.T) {
a, err := New(Options{
Name: "test",
ServerURL: "http://localhost:8080",
})
if err != nil {
t.Fatalf("New: %v", err)
}
a.AddContact("peer-1")
// Track what gets sent by intercepting Send.
// Since we can't easily intercept Send (no peer connected, whitelist check),
// we test that Dispatch returns the correct response and HandleIncomingEnvelope
// would attempt to send it.
a.Handle("echo", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
return &envelope.Envelope{Payload: env.Payload}, nil
})
env := &envelope.Envelope{
Source: "peer-1",
Payload: []byte("ping"),
Metadata: map[string]string{MetadataKeyCapability: "echo"},
Timestamp: time.Now(),
}
// Verify router dispatch returns correct response.
matched, resp, err := a.router.Dispatch(context.Background(), env)
if !matched {
t.Fatal("expected matched=true")
}
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if resp == nil {
t.Fatal("expected response")
}
if string(resp.Payload) != "ping" {
t.Errorf("resp payload = %q, want %q", resp.Payload, "ping")
}
// Response with empty Destination should be wrapped with NewResponse.
if resp.Destination != "" {
t.Errorf("expected empty destination for auto-response wrapping, got %q", resp.Destination)
}
}
func TestRouter_ConcurrentDispatch(t *testing.T) {
r := NewRouter(nil)
var count atomic.Int64
r.Handle("counter", func(ctx context.Context, env *envelope.Envelope) (*envelope.Envelope, error) {
count.Add(1)
return nil, nil
})
const goroutines = 100
var wg sync.WaitGroup
wg.Add(goroutines)
for i := 0; i < goroutines; i++ {
go func(n int) {
defer wg.Done()
env := makeEnvWithCapability("counter")
env.Source = fmt.Sprintf("peer-%d", n)
matched, _, err := r.Dispatch(context.Background(), env)
if !matched {
t.Errorf("goroutine %d: expected matched=true", n)
}
if err != nil {
t.Errorf("goroutine %d: unexpected error: %v", n, err)
}
}(i)
}
wg.Wait()
if count.Load() != goroutines {
t.Errorf("count = %d, want %d", count.Load(), goroutines)
}
}