-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultisig_handlers_test.go
More file actions
636 lines (566 loc) · 16.6 KB
/
multisig_handlers_test.go
File metadata and controls
636 lines (566 loc) · 16.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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
// Package paywall tests multisig HTTP handlers
package paywall
import (
"bytes"
"crypto/sha256"
"encoding/json"
"net/http"
"net/http/httptest"
"sync"
"testing"
"time"
"github.com/btcsuite/btcd/btcec/v2"
"github.com/opd-ai/paywall/wallet"
)
// generateTestPubKeys creates valid compressed public keys for multisig testing
func generateTestPubKeys() [][]byte {
// Generate valid secp256k1 private keys and derive public keys
seed1 := sha256.Sum256([]byte("test-key-1"))
seed2 := sha256.Sum256([]byte("test-key-2"))
seed3 := sha256.Sum256([]byte("test-key-3"))
key1, _ := btcec.PrivKeyFromBytes(seed1[:])
key2, _ := btcec.PrivKeyFromBytes(seed2[:])
key3, _ := btcec.PrivKeyFromBytes(seed3[:])
return [][]byte{
key1.PubKey().SerializeCompressed(),
key2.PubKey().SerializeCompressed(),
key3.PubKey().SerializeCompressed(),
}
}
// mockAuthenticator implements MultisigAuthenticator for testing
type mockAuthenticator struct {
shouldFail bool
}
func (m *mockAuthenticator) Authenticate(r *http.Request, paymentID string, role MultisigRole) error {
if m.shouldFail {
return ErrInvalidEscrowState // reuse existing error
}
return nil
}
// mockNotifier implements MultisigWebhookNotifier for testing
type mockNotifier struct {
mu sync.Mutex
signatureReceived int
readyToBroadcast int
broadcastComplete int
lastPaymentID string
lastTxID string
}
func (m *mockNotifier) NotifySignatureReceived(paymentID, signerID string, role MultisigRole) error {
m.mu.Lock()
defer m.mu.Unlock()
m.signatureReceived++
m.lastPaymentID = paymentID
return nil
}
func (m *mockNotifier) NotifyReadyToBroadcast(paymentID string) error {
m.mu.Lock()
defer m.mu.Unlock()
m.readyToBroadcast++
m.lastPaymentID = paymentID
return nil
}
func (m *mockNotifier) NotifyBroadcastComplete(paymentID, txID string) error {
m.mu.Lock()
defer m.mu.Unlock()
m.broadcastComplete++
m.lastPaymentID = paymentID
m.lastTxID = txID
return nil
}
func TestMultisigCoordinator_HandleInitiate(t *testing.T) {
// Create test paywall with multisig enabled
pubKeys := generateTestPubKeys()
pw, err := NewPaywall(Config{
PriceInBTC: 0.001,
TestNet: true,
Store: NewMemoryStore(),
PaymentTimeout: time.Hour,
MultisigEnabled: true,
MultisigRequired: 2,
MultisigTotal: 3,
ParticipantPubKeys: map[wallet.WalletType][][]byte{
wallet.Bitcoin: pubKeys,
},
})
if err != nil {
t.Fatalf("Failed to create paywall: %v", err)
}
defer pw.Close()
coordinator := NewMultisigCoordinator(pw, nil, nil)
tests := []struct {
name string
request MultisigInitiateRequest
wantStatus int
wantError bool
}{
{
name: "valid bitcoin 2-of-3",
request: MultisigInitiateRequest{
WalletType: wallet.Bitcoin,
RequiredSigs: 2,
PublicKeys: generateTestPubKeys(),
Role: RoleBuyer,
},
wantStatus: http.StatusOK,
wantError: false,
},
{
name: "invalid wallet type",
request: MultisigInitiateRequest{
WalletType: "invalid",
RequiredSigs: 2,
PublicKeys: generateTestPubKeys()[:2],
Role: RoleBuyer,
},
wantStatus: http.StatusBadRequest,
wantError: true,
},
{
name: "insufficient public keys",
request: MultisigInitiateRequest{
WalletType: wallet.Bitcoin,
RequiredSigs: 3,
PublicKeys: generateTestPubKeys()[:2],
Role: RoleBuyer,
},
wantStatus: http.StatusBadRequest,
wantError: true,
},
{
name: "too many public keys",
request: MultisigInitiateRequest{
WalletType: wallet.Bitcoin,
RequiredSigs: 10,
PublicKeys: make([][]byte, 20),
Role: RoleBuyer,
},
wantStatus: http.StatusBadRequest,
wantError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
body, _ := json.Marshal(tt.request)
req := httptest.NewRequest(http.MethodPost, "/multisig/initiate", bytes.NewReader(body))
w := httptest.NewRecorder()
coordinator.HandleInitiate(w, req)
if w.Code != tt.wantStatus {
t.Errorf("HandleInitiate() status = %v, want %v", w.Code, tt.wantStatus)
}
if !tt.wantError && w.Code == http.StatusOK {
var resp MultisigInitiateResponse
if err := json.NewDecoder(w.Body).Decode(&resp); err != nil {
t.Errorf("Failed to decode response: %v", err)
}
if resp.PaymentID == "" {
t.Error("Expected PaymentID in response")
}
if resp.Address == "" {
t.Error("Expected Address in response")
}
}
})
}
}
func TestMultisigCoordinator_HandleInitiate_Authentication(t *testing.T) {
pubKeys := generateTestPubKeys()
pw, err := NewPaywall(Config{
PriceInBTC: 0.001,
TestNet: true,
Store: NewMemoryStore(),
PaymentTimeout: time.Hour,
MultisigEnabled: true,
MultisigRequired: 2,
MultisigTotal: 3,
ParticipantPubKeys: map[wallet.WalletType][][]byte{wallet.Bitcoin: pubKeys},
})
if err != nil {
t.Fatalf("Failed to create paywall: %v", err)
}
defer pw.Close()
auth := &mockAuthenticator{shouldFail: true}
coordinator := NewMultisigCoordinator(pw, auth, nil)
req := MultisigInitiateRequest{
WalletType: wallet.Bitcoin,
RequiredSigs: 2,
PublicKeys: generateTestPubKeys(),
Role: RoleBuyer,
}
body, _ := json.Marshal(req)
httpReq := httptest.NewRequest(http.MethodPost, "/multisig/initiate", bytes.NewReader(body))
w := httptest.NewRecorder()
coordinator.HandleInitiate(w, httpReq)
if w.Code != http.StatusUnauthorized {
t.Errorf("Expected status 401, got %d", w.Code)
}
}
func TestMultisigCoordinator_HandleSign(t *testing.T) {
// Create paywall and payment
pubKeys := generateTestPubKeys()
pw, err := NewPaywall(Config{
PriceInBTC: 0.001,
TestNet: true,
Store: NewMemoryStore(),
PaymentTimeout: time.Hour,
MultisigEnabled: true,
MultisigRequired: 2,
MultisigTotal: 3,
ParticipantPubKeys: map[wallet.WalletType][][]byte{wallet.Bitcoin: pubKeys},
})
if err != nil {
t.Fatalf("Failed to create paywall: %v", err)
}
defer pw.Close()
// Create a payment manually for testing
payment := &Payment{
ID: "test-payment",
MultisigEnabled: true,
RequiredSignatures: map[wallet.WalletType]int{wallet.Bitcoin: 2},
Signatures: make(map[wallet.WalletType][]SignatureData),
Status: StatusPending,
CreatedAt: time.Now(),
ExpiresAt: time.Now().Add(time.Hour),
}
pw.Store.CreatePayment(payment)
notifier := &mockNotifier{}
coordinator := NewMultisigCoordinator(pw, nil, notifier)
tests := []struct {
name string
request MultisigSignRequest
wantStatus int
wantNotify bool
}{
{
name: "valid signature",
request: MultisigSignRequest{
PaymentID: "test-payment",
WalletType: wallet.Bitcoin,
SignerID: "signer1",
Role: RoleBuyer,
Signature: []byte("signature1"),
PublicKey: []byte("pubkey1"),
},
wantStatus: http.StatusOK,
wantNotify: true,
},
{
name: "missing payment id",
request: MultisigSignRequest{
WalletType: wallet.Bitcoin,
SignerID: "signer1",
Role: RoleBuyer,
Signature: []byte("signature1"),
PublicKey: []byte("pubkey1"),
},
wantStatus: http.StatusBadRequest,
wantNotify: false,
},
{
name: "invalid wallet type",
request: MultisigSignRequest{
PaymentID: "test-payment",
WalletType: "invalid",
SignerID: "signer1",
Role: RoleBuyer,
Signature: []byte("signature1"),
PublicKey: []byte("pubkey1"),
},
wantStatus: http.StatusBadRequest,
wantNotify: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
notifier.mu.Lock()
notifier.signatureReceived = 0
notifier.mu.Unlock()
body, _ := json.Marshal(tt.request)
req := httptest.NewRequest(http.MethodPost, "/multisig/sign", bytes.NewReader(body))
w := httptest.NewRecorder()
coordinator.HandleSign(w, req)
if w.Code != tt.wantStatus {
t.Errorf("HandleSign() status = %v, want %v", w.Code, tt.wantStatus)
}
if tt.wantNotify {
// Wait for goroutine notification
time.Sleep(50 * time.Millisecond)
notifier.mu.Lock()
sigCount := notifier.signatureReceived
notifier.mu.Unlock()
if sigCount != 1 {
t.Errorf("Expected notification, got %d", sigCount)
}
}
})
}
}
func TestMultisigCoordinator_HandleSign_ReadyToBroadcast(t *testing.T) {
pubKeys := generateTestPubKeys()
pw, err := NewPaywall(Config{
PriceInBTC: 0.001,
TestNet: true,
Store: NewMemoryStore(),
PaymentTimeout: time.Hour,
MultisigEnabled: true,
MultisigRequired: 2,
MultisigTotal: 3,
ParticipantPubKeys: map[wallet.WalletType][][]byte{wallet.Bitcoin: pubKeys},
})
if err != nil {
t.Fatalf("Failed to create paywall: %v", err)
}
defer pw.Close()
payment := &Payment{
ID: "test-payment",
MultisigEnabled: true,
RequiredSignatures: map[wallet.WalletType]int{wallet.Bitcoin: 2},
Signatures: map[wallet.WalletType][]SignatureData{
wallet.Bitcoin: {
{SignerID: "signer1", Signature: []byte("sig1")},
},
},
Status: StatusPending,
CreatedAt: time.Now(),
ExpiresAt: time.Now().Add(time.Hour),
}
pw.Store.CreatePayment(payment)
notifier := &mockNotifier{}
coordinator := NewMultisigCoordinator(pw, nil, notifier)
// Submit second signature (should trigger ready notification)
req := MultisigSignRequest{
PaymentID: "test-payment",
WalletType: wallet.Bitcoin,
SignerID: "signer2",
Role: RoleSeller,
Signature: []byte("signature2"),
PublicKey: []byte("pubkey2"),
}
body, _ := json.Marshal(req)
httpReq := httptest.NewRequest(http.MethodPost, "/multisig/sign", bytes.NewReader(body))
w := httptest.NewRecorder()
coordinator.HandleSign(w, httpReq)
if w.Code != http.StatusOK {
t.Errorf("Expected status 200, got %d", w.Code)
}
// Should have received both signature and ready notifications
time.Sleep(100 * time.Millisecond) // Wait for goroutines
notifier.mu.Lock()
sigReceived := notifier.signatureReceived
readyCount := notifier.readyToBroadcast
notifier.mu.Unlock()
if sigReceived != 1 {
t.Errorf("Expected 1 signature notification, got %d", sigReceived)
}
if readyCount != 1 {
t.Errorf("Expected 1 ready notification, got %d", readyCount)
}
}
func TestMultisigCoordinator_HandleStatus(t *testing.T) {
pubKeys := generateTestPubKeys()
pw, err := NewPaywall(Config{
PriceInBTC: 0.001,
TestNet: true,
Store: NewMemoryStore(),
PaymentTimeout: time.Hour,
MultisigEnabled: true,
MultisigRequired: 2,
MultisigTotal: 3,
ParticipantPubKeys: map[wallet.WalletType][][]byte{wallet.Bitcoin: pubKeys},
})
if err != nil {
t.Fatalf("Failed to create paywall: %v", err)
}
defer pw.Close()
payment := &Payment{
ID: "test-payment",
MultisigEnabled: true,
RequiredSignatures: map[wallet.WalletType]int{wallet.Bitcoin: 2},
Signatures: map[wallet.WalletType][]SignatureData{
wallet.Bitcoin: {
{SignerID: "signer1", Signature: []byte("sig1")},
},
},
Status: StatusPending,
Confirmations: 0,
CreatedAt: time.Now(),
ExpiresAt: time.Now().Add(time.Hour),
}
pw.Store.CreatePayment(payment)
coordinator := NewMultisigCoordinator(pw, nil, nil)
req := httptest.NewRequest(http.MethodGet, "/multisig/status/test-payment", nil)
w := httptest.NewRecorder()
coordinator.HandleStatus(w, req)
if w.Code != http.StatusOK {
t.Errorf("Expected status 200, got %d", w.Code)
}
var resp MultisigStatusResponse
if err := json.NewDecoder(w.Body).Decode(&resp); err != nil {
t.Fatalf("Failed to decode response: %v", err)
}
if resp.PaymentID != "test-payment" {
t.Errorf("Expected payment ID 'test-payment', got '%s'", resp.PaymentID)
}
if resp.ReadyToBroadcast {
t.Error("Expected ReadyToBroadcast to be false (insufficient signatures)")
}
if len(resp.Signatures[wallet.Bitcoin]) != 1 {
t.Errorf("Expected 1 signature, got %d", len(resp.Signatures[wallet.Bitcoin]))
}
}
func TestMultisigCoordinator_HandleBroadcast(t *testing.T) {
pubKeys := generateTestPubKeys()
pw, err := NewPaywall(Config{
PriceInBTC: 0.001,
TestNet: true,
Store: NewMemoryStore(),
PaymentTimeout: time.Hour,
MultisigEnabled: true,
MultisigRequired: 2,
MultisigTotal: 3,
ParticipantPubKeys: map[wallet.WalletType][][]byte{wallet.Bitcoin: pubKeys},
})
if err != nil {
t.Fatalf("Failed to create paywall: %v", err)
}
defer pw.Close()
payment := &Payment{
ID: "test-payment",
MultisigEnabled: true,
RequiredSignatures: map[wallet.WalletType]int{wallet.Bitcoin: 2},
Signatures: map[wallet.WalletType][]SignatureData{
wallet.Bitcoin: {
{SignerID: "signer1", Signature: []byte("sig1")},
{SignerID: "signer2", Signature: []byte("sig2")},
},
},
Addresses: map[wallet.WalletType]string{
wallet.Bitcoin: "test-address",
},
Amounts: map[wallet.WalletType]float64{
wallet.Bitcoin: 0.001,
},
Status: StatusPending,
CreatedAt: time.Now(),
ExpiresAt: time.Now().Add(time.Hour),
}
pw.Store.CreatePayment(payment)
notifier := &mockNotifier{}
coordinator := NewMultisigCoordinator(pw, nil, notifier)
req := MultisigBroadcastRequest{
PaymentID: "test-payment",
WalletType: wallet.Bitcoin,
Transaction: []byte("signed-transaction-bytes"),
}
body, _ := json.Marshal(req)
httpReq := httptest.NewRequest(http.MethodPost, "/multisig/broadcast", bytes.NewReader(body))
w := httptest.NewRecorder()
coordinator.HandleBroadcast(w, httpReq)
// Without a broadcaster configured, should get 503
if w.Code != http.StatusServiceUnavailable {
t.Errorf("Expected status 503 (no broadcaster configured), got %d", w.Code)
}
}
func TestMultisigCoordinator_HandleBroadcast_InsufficientSignatures(t *testing.T) {
pubKeys := generateTestPubKeys()
pw, err := NewPaywall(Config{
PriceInBTC: 0.001,
TestNet: true,
Store: NewMemoryStore(),
PaymentTimeout: time.Hour,
MultisigEnabled: true,
MultisigRequired: 2,
MultisigTotal: 3,
ParticipantPubKeys: map[wallet.WalletType][][]byte{wallet.Bitcoin: pubKeys},
})
if err != nil {
t.Fatalf("Failed to create paywall: %v", err)
}
defer pw.Close()
payment := &Payment{
ID: "test-payment",
MultisigEnabled: true,
RequiredSignatures: map[wallet.WalletType]int{wallet.Bitcoin: 2},
Signatures: map[wallet.WalletType][]SignatureData{
wallet.Bitcoin: {
{SignerID: "signer1", Signature: []byte("sig1")},
},
},
Status: StatusPending,
CreatedAt: time.Now(),
ExpiresAt: time.Now().Add(time.Hour),
}
pw.Store.CreatePayment(payment)
coordinator := NewMultisigCoordinator(pw, nil, nil)
req := MultisigBroadcastRequest{
PaymentID: "test-payment",
WalletType: wallet.Bitcoin,
Transaction: []byte("signed-transaction-bytes"),
}
body, _ := json.Marshal(req)
httpReq := httptest.NewRequest(http.MethodPost, "/multisig/broadcast", bytes.NewReader(body))
w := httptest.NewRecorder()
coordinator.HandleBroadcast(w, httpReq)
if w.Code != http.StatusBadRequest {
t.Errorf("Expected status 400, got %d", w.Code)
}
}
func TestMultisigCoordinator_MethodNotAllowed(t *testing.T) {
pubKeys := generateTestPubKeys()
pw, err := NewPaywall(Config{
PriceInBTC: 0.001,
TestNet: true,
Store: NewMemoryStore(),
PaymentTimeout: time.Hour,
MultisigEnabled: true,
MultisigRequired: 2,
MultisigTotal: 3,
ParticipantPubKeys: map[wallet.WalletType][][]byte{wallet.Bitcoin: pubKeys},
})
if err != nil {
t.Fatalf("Failed to create paywall: %v", err)
}
defer pw.Close()
coordinator := NewMultisigCoordinator(pw, nil, nil)
tests := []struct {
name string
handler func(http.ResponseWriter, *http.Request)
method string
path string
}{
{
name: "initiate GET not allowed",
handler: coordinator.HandleInitiate,
method: http.MethodGet,
path: "/multisig/initiate",
},
{
name: "sign GET not allowed",
handler: coordinator.HandleSign,
method: http.MethodGet,
path: "/multisig/sign",
},
{
name: "status POST not allowed",
handler: coordinator.HandleStatus,
method: http.MethodPost,
path: "/multisig/status/test",
},
{
name: "broadcast GET not allowed",
handler: coordinator.HandleBroadcast,
method: http.MethodGet,
path: "/multisig/broadcast",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
req := httptest.NewRequest(tt.method, tt.path, nil)
w := httptest.NewRecorder()
tt.handler(w, req)
if w.Code != http.StatusMethodNotAllowed {
t.Errorf("Expected status 405, got %d", w.Code)
}
})
}
}