-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathchainsource_errors_test.go
More file actions
409 lines (344 loc) · 10.5 KB
/
Copy pathchainsource_errors_test.go
File metadata and controls
409 lines (344 loc) · 10.5 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
package chainsource
import (
"context"
"errors"
"testing"
"github.com/btcsuite/btcd/btcutil/v2"
"github.com/btcsuite/btcd/chainhash/v2"
"github.com/btcsuite/btcd/wire/v2"
"github.com/lightninglabs/wavelength/baselib/actor"
"github.com/stretchr/testify/require"
)
// TestConfActorValidationErrors tests validation error paths in ConfActor.
func TestConfActorValidationErrors(t *testing.T) {
t.Parallel()
backend := newMockBackend()
ctx := t.Context()
confActor := NewConfActor(ConfActorConfig{Backend: backend})
defer confActor.Stop()
testCases := []struct {
name string
req *RegisterConfRequest
expectedErr string
}{
{
name: "missing txid and pkScript",
req: &RegisterConfRequest{
CallerID: "test-validation-1",
TargetConfs: 1,
},
expectedErr: "either txid or pkScript must be provided",
},
{
name: "zero target confirmations",
req: &RegisterConfRequest{
CallerID: "test-validation-2",
Txid: &chainhash.Hash{},
PkScript: []byte{
0x00,
0x14,
},
TargetConfs: 0,
},
expectedErr: "target confirmations must be greater " +
"than zero",
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
result := confActor.Receive(ctx, tc.req)
require.True(t, result.IsErr())
err := result.Err()
require.Error(t, err)
require.Contains(t, err.Error(), tc.expectedErr)
})
}
}
// TestSpendActorValidationErrors tests validation error paths in SpendActor.
func TestSpendActorValidationErrors(t *testing.T) {
t.Parallel()
backend := newMockBackend()
ctx := t.Context()
spendActor := NewSpendActor(SpendActorConfig{Backend: backend})
defer spendActor.Stop()
testCases := []struct {
name string
req *RegisterSpendRequest
expectedErr string
}{
{
name: "missing outpoint and pkScript",
req: &RegisterSpendRequest{
CallerID: "test-spend-validation",
},
expectedErr: "either outpoint or pkScript must be " +
"provided",
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
result := spendActor.Receive(ctx, tc.req)
require.True(t, result.IsErr())
err := result.Err()
require.Error(t, err)
require.Contains(t, err.Error(), tc.expectedErr)
})
}
}
// errorBackend is a mock backend that always returns errors.
type errorBackend struct {
err error
}
func (b *errorBackend) EstimateFee(ctx context.Context, targetConf uint32) (
btcutil.Amount, error) {
return 0, b.err
}
func (b *errorBackend) BestBlock(ctx context.Context) (int32, chainhash.Hash,
error) {
return 0, chainhash.Hash{}, b.err
}
func (b *errorBackend) TestMempoolAccept(_ context.Context, _ ...*wire.MsgTx) (
[]MempoolAcceptResult, error) {
return nil, b.err
}
func (b *errorBackend) BroadcastTx(ctx context.Context, tx *wire.MsgTx,
label string) error {
return b.err
}
func (b *errorBackend) SubmitPackage(ctx context.Context, parents []*wire.MsgTx,
child *wire.MsgTx) error {
return b.err
}
func (b *errorBackend) RegisterConf(ctx context.Context, txid *chainhash.Hash,
pkScript []byte, numConfs uint32, heightHint uint32,
includeBlock bool) (*ConfRegistration, error) {
return nil, b.err
}
func (b *errorBackend) RegisterSpend(ctx context.Context,
outpoint *wire.OutPoint, pkScript []byte, heightHint uint32) (
*SpendRegistration, error) {
return nil, b.err
}
func (b *errorBackend) RegisterBlocks(ctx context.Context) (*BlockRegistration,
error) {
return nil, b.err
}
func (b *errorBackend) Start() error {
return b.err
}
func (b *errorBackend) Stop() error {
return b.err
}
// TestChainSourceActorBackendErrors tests error handling when backend fails.
func TestChainSourceActorBackendErrors(t *testing.T) {
t.Parallel()
testErr := errors.New("backend error")
backend := &errorBackend{err: testErr}
system := actor.NewActorSystem()
defer func() {
_ = system.Shutdown(t.Context())
}()
chainSource := NewChainSourceActor(ChainSourceConfig{
Backend: backend,
System: system,
})
ref := ChainSourceKey.Spawn(system, "test-chainsource", chainSource)
ctx := t.Context()
feeResult := ref.Ask(ctx, &FeeEstimateRequest{TargetConf: 6}).Await(ctx)
require.True(t, feeResult.IsErr())
require.Contains(t, feeResult.Err().Error(), "failed to estimate fee")
heightResult := ref.Ask(ctx, &BestHeightRequest{}).Await(ctx)
require.True(t, heightResult.IsErr())
require.Contains(
t, heightResult.Err().Error(),
"failed to get best height",
)
tx := wire.NewMsgTx(2)
mempoolResult := ref.Ask(
ctx, &TestMempoolAcceptRequest{
Txs: []*wire.MsgTx{tx},
},
).Await(ctx)
require.True(t, mempoolResult.IsErr())
require.Contains(
t, mempoolResult.Err().Error(),
"failed to test mempool accept",
)
broadcastResult := ref.Ask(
ctx, &BroadcastTxRequest{
Tx: tx,
},
).Await(ctx)
require.True(t, broadcastResult.IsErr())
require.Contains(
t, broadcastResult.Err().Error(),
"failed to broadcast transaction",
)
submitResult := ref.Ask(
ctx, &SubmitPackageRequest{
Parents: []*wire.MsgTx{tx},
Child: tx,
},
).Await(ctx)
require.True(t, submitResult.IsErr())
require.Contains(
t, submitResult.Err().Error(),
"submit package",
)
}
// TestConfActorBackendError tests ConfActor backend error handling.
func TestConfActorBackendError(t *testing.T) {
t.Parallel()
testErr := errors.New("backend error")
backend := &errorBackend{err: testErr}
ctx := t.Context()
confActor := NewConfActor(ConfActorConfig{Backend: backend})
defer confActor.Stop()
result := confActor.Receive(ctx, &RegisterConfRequest{
CallerID: "test-backend-error",
Txid: &chainhash.Hash{},
PkScript: []byte{0x00, 0x14},
TargetConfs: 1,
})
// Backend error now happens synchronously during registration, so
// Receive should return an error immediately.
require.True(
t, result.IsErr(),
"Receive should fail with backend error",
)
require.Contains(
t, result.Err().Error(),
"failed to register for confirmations",
)
}
// TestSpendActorBackendError tests SpendActor backend error handling.
func TestSpendActorBackendError(t *testing.T) {
t.Parallel()
testErr := errors.New("backend error")
backend := &errorBackend{err: testErr}
ctx := t.Context()
spendActor := NewSpendActor(SpendActorConfig{Backend: backend})
defer spendActor.Stop()
result := spendActor.Receive(ctx, &RegisterSpendRequest{
CallerID: "test-spend-backend-error",
Outpoint: &wire.OutPoint{},
PkScript: []byte{0x00, 0x14},
})
// Backend error now happens synchronously during registration, so
// Receive should return an error immediately.
require.True(
t, result.IsErr(),
"Receive should fail with backend error",
)
require.Contains(
t, result.Err().Error(),
"failed to register for spends",
)
}
// TestBlockEpochActorBackendError tests BlockEpochActor backend error
// handling.
func TestBlockEpochActorBackendError(t *testing.T) {
t.Parallel()
testErr := errors.New("backend error")
backend := &errorBackend{err: testErr}
ctx := t.Context()
epochActor := NewBlockEpochActor(BlockEpochConfig{Backend: backend})
defer epochActor.Stop()
result := epochActor.Receive(ctx, &SubscribeBlocksRequest{
CallerID: "test-epoch-backend-error",
})
// Backend error now happens synchronously during registration, so
// Receive should return an error immediately.
require.True(
t, result.IsErr(),
"Receive should fail with backend error",
)
require.Contains(
t, result.Err().Error(),
"failed to register for blocks",
)
}
// TestConfActorDuplicateSubscription tests that ConfActor rejects duplicate
// subscriptions on the same actor instance. Each actor is designed to handle
// exactly one subscription for resource isolation and simpler lifecycle
// management.
func TestConfActorDuplicateSubscription(t *testing.T) {
t.Parallel()
backend := newMockBackend()
ctx := t.Context()
confActor := NewConfActor(ConfActorConfig{Backend: backend})
defer confActor.Stop()
result1 := confActor.Receive(ctx, &RegisterConfRequest{
CallerID: "test-duplicate-1",
Txid: &chainhash.Hash{},
PkScript: []byte{0x00, 0x14},
TargetConfs: 1,
})
require.True(t, result1.IsOk(), "first subscription should succeed")
// Attempting a second subscription must fail to enforce single-use.
result2 := confActor.Receive(ctx, &RegisterConfRequest{
CallerID: "test-duplicate-2",
Txid: &chainhash.Hash{},
PkScript: []byte{0x00, 0x14},
TargetConfs: 1,
})
require.True(t, result2.IsErr(), "second subscription should fail")
require.Contains(
t, result2.Err().Error(),
"actor already has an active subscription",
)
}
// TestSpendActorDuplicateSubscription tests that SpendActor rejects duplicate
// subscriptions on the same actor instance. Each actor is designed to handle
// exactly one subscription for resource isolation and simpler lifecycle
// management.
func TestSpendActorDuplicateSubscription(t *testing.T) {
t.Parallel()
backend := newMockBackend()
ctx := t.Context()
spendActor := NewSpendActor(SpendActorConfig{Backend: backend})
defer spendActor.Stop()
result1 := spendActor.Receive(ctx, &RegisterSpendRequest{
CallerID: "test-spend-duplicate-1",
Outpoint: &wire.OutPoint{},
PkScript: []byte{0x00, 0x14},
})
require.True(t, result1.IsOk(), "first subscription should succeed")
// Attempting a second subscription must fail to enforce single-use.
result2 := spendActor.Receive(ctx, &RegisterSpendRequest{
CallerID: "test-spend-duplicate-2",
Outpoint: &wire.OutPoint{},
PkScript: []byte{0x00, 0x14},
})
require.True(t, result2.IsErr(), "second subscription should fail")
require.Contains(
t, result2.Err().Error(),
"actor already has an active subscription",
)
}
// TestBlockEpochActorDuplicateSubscription tests that BlockEpochActor rejects
// duplicate subscriptions on the same actor instance. Each actor is designed to
// handle exactly one subscription for resource isolation and simpler lifecycle
// management.
func TestBlockEpochActorDuplicateSubscription(t *testing.T) {
t.Parallel()
backend := newMockBackend()
ctx := t.Context()
epochActor := NewBlockEpochActor(BlockEpochConfig{Backend: backend})
defer epochActor.Stop()
result1 := epochActor.Receive(ctx, &SubscribeBlocksRequest{
CallerID: "test-epoch-duplicate-1",
})
require.True(t, result1.IsOk(), "first subscription should succeed")
// Attempting a second subscription must fail to enforce single-use.
result2 := epochActor.Receive(ctx, &SubscribeBlocksRequest{
CallerID: "test-epoch-duplicate-2",
})
require.True(t, result2.IsErr(), "second subscription should fail")
require.Contains(
t, result2.Err().Error(),
"actor already has an active subscription",
)
}