forked from lightninglabs/lndclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lnd_services_test.go
354 lines (318 loc) · 8.03 KB
/
lnd_services_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
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
package lndclient
import (
"context"
"errors"
"testing"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/lightningnetwork/lnd/lnrpc/verrpc"
"github.com/stretchr/testify/require"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
type mockVersioner struct {
version *verrpc.Version
err error
}
func (m *mockVersioner) GetVersion(_ context.Context) (*verrpc.Version, error) {
return m.version, m.err
}
// TestCheckVersionCompatibility makes sure the correct error is returned if an
// old lnd is connected that doesn't implement the version RPC, has an older
// version or if an lnd with not all subservers enabled is connected.
func TestCheckVersionCompatibility(t *testing.T) {
// Make sure a version check against a node that doesn't implement the
// version RPC always fails.
unimplemented := &mockVersioner{
err: status.Error(codes.Unimplemented, "missing"),
}
_, err := checkVersionCompatibility(unimplemented, &verrpc.Version{
AppMajor: 0,
AppMinor: 10,
AppPatch: 0,
})
if err != ErrVersionCheckNotImplemented {
t.Fatalf("unexpected error. got '%v' wanted '%v'", err,
ErrVersionCheckNotImplemented)
}
// Next, make sure an older version than what we want is rejected.
oldVersion := &mockVersioner{
version: &verrpc.Version{
AppMajor: 0,
AppMinor: 10,
AppPatch: 0,
},
}
_, err = checkVersionCompatibility(oldVersion, &verrpc.Version{
AppMajor: 0,
AppMinor: 11,
AppPatch: 0,
})
if err != ErrVersionIncompatible {
t.Fatalf("unexpected error. got '%v' wanted '%v'", err,
ErrVersionIncompatible)
}
// Finally, make sure we also get the correct error when trying to run
// against an lnd that doesn't have all required build tags enabled.
buildTagsMissing := &mockVersioner{
version: &verrpc.Version{
AppMajor: 0,
AppMinor: 10,
AppPatch: 0,
BuildTags: []string{"dev", "lntest", "btcd", "signrpc"},
},
}
_, err = checkVersionCompatibility(buildTagsMissing, &verrpc.Version{
AppMajor: 0,
AppMinor: 10,
AppPatch: 0,
BuildTags: []string{"signrpc", "walletrpc"},
})
if err != ErrBuildTagsMissing {
t.Fatalf("unexpected error. got '%v' wanted '%v'", err,
ErrVersionIncompatible)
}
}
// TestLndVersionCheckComparison makes sure the version check comparison works
// correctly and considers all three version levels.
func TestLndVersionCheckComparison(t *testing.T) {
actual := &verrpc.Version{
AppMajor: 1,
AppMinor: 2,
AppPatch: 3,
}
testCases := []struct {
name string
expectMajor uint32
expectMinor uint32
expectPatch uint32
actual *verrpc.Version
expectedErr error
}{
{
name: "no expectation",
expectMajor: 0,
expectMinor: 0,
expectPatch: 0,
actual: actual,
expectedErr: nil,
},
{
name: "expect exact same version",
expectMajor: 1,
expectMinor: 2,
expectPatch: 3,
actual: actual,
expectedErr: nil,
},
{
name: "ignore patch if minor is bigger",
expectMajor: 12,
expectMinor: 9,
expectPatch: 14,
actual: &verrpc.Version{
AppMajor: 12,
AppMinor: 22,
AppPatch: 0,
},
expectedErr: nil,
},
{
name: "all fields different",
expectMajor: 3,
expectMinor: 2,
expectPatch: 1,
actual: actual,
expectedErr: ErrVersionIncompatible,
},
{
name: "patch version different",
expectMajor: 1,
expectMinor: 2,
expectPatch: 4,
actual: actual,
expectedErr: ErrVersionIncompatible,
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
err := AssertVersionCompatible(
tc.actual, &verrpc.Version{
AppMajor: tc.expectMajor,
AppMinor: tc.expectMinor,
AppPatch: tc.expectPatch,
},
)
if err != tc.expectedErr {
t.Fatalf("unexpected error, got '%v' wanted "+
"'%v'", err, tc.expectedErr)
}
})
}
}
// lockLNDMock is a mock lightning client which mocks calls to getinfo to
// determine the unlocked state of lnd.
type lockLNDMock struct {
lnrpc.LightningClient
StateClient
callCount int
errors []error
stateErr error
states []WalletState
}
// GetInfo mocks a call to getinfo, using our call count to get the error for
// this call as the index in our pre-set error slice.
func (l *lockLNDMock) GetInfo(ctx context.Context, _ *lnrpc.GetInfoRequest,
_ ...grpc.CallOption) (*lnrpc.GetInfoResponse, error) {
// Our actual call would use ctx, so add a panic to reflect that.
if ctx == nil {
panic("nil context for getinfo")
}
err := l.errors[l.callCount]
l.callCount++
return &lnrpc.GetInfoResponse{
Chains: []*lnrpc.Chain{{}},
}, err
}
func (l *lockLNDMock) SubscribeState(context.Context) (chan WalletState,
chan error, error) {
if l.stateErr != nil {
return nil, nil, l.stateErr
}
stateChan := make(chan WalletState, 1)
errChan := make(chan error, 1)
go func() {
for _, state := range l.states {
stateChan <- state
// If this is the final state, no more states will be
// sent to us and we can close the subscription.
if state == WalletStateRPCActive {
close(stateChan)
close(errChan)
return
}
}
}()
return stateChan, errChan, nil
}
func newLockLndMock(errors []error, stateErr error,
states []WalletState) *lockLNDMock {
return &lockLNDMock{
errors: errors,
stateErr: stateErr,
states: states,
}
}
// TestGetLndInfo tests our logic for querying lnd for information in the case
// where we wait for the wallet to unlock, and when we fail fast.
func TestGetLndInfo(t *testing.T) {
var (
ctx = context.Background()
nonNilErr = errors.New("failed")
unlockErr = status.Error(codes.Unimplemented, "unimpl")
)
tests := []struct {
name string
context context.Context
waitUnlocked bool
stateErr error
states []WalletState
errors []error
expected error
}{
{
name: "no error",
context: ctx,
errors: []error{nil},
states: []WalletState{
WalletStateWaitingToStart,
WalletStateLocked,
WalletStateUnlocked,
WalletStateRPCActive,
},
expected: nil,
},
{
name: "nil context",
errors: []error{
nil,
},
states: []WalletState{
WalletStateRPCActive,
},
expected: nil,
},
{
name: "do not wait for unlock",
errors: []error{unlockErr},
expected: unlockErr,
},
{
name: "wait for unlock",
waitUnlocked: true,
errors: []error{nil},
states: []WalletState{
WalletStateRPCActive,
},
expected: nil,
},
{
name: "lnd down",
waitUnlocked: true,
stateErr: context.DeadlineExceeded,
expected: context.DeadlineExceeded,
},
{
name: "other error",
waitUnlocked: true,
errors: []error{nonNilErr},
states: []WalletState{
WalletStateRPCActive,
},
expected: nonNilErr,
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
mock := newLockLndMock(
test.errors, test.stateErr, test.states,
)
_, err := getLndInfo(
test.context, mock, "readonlymac", mock,
test.waitUnlocked,
)
if test.expected == nil {
require.NoError(t, err)
} else {
require.Error(t, err)
// Error might be wrapped.
require.True(t, errors.Is(err, test.expected))
}
})
}
}
// TestCustomMacaroonHex tests that the macaroon pouch properly takes in a
// macaroon provided in hex string format.
func TestCustomMacaroonHex(t *testing.T) {
dummyMacStr := "0201047465737402067788991234560000062052d26ed139ea5af8" +
"3e675500c4ccb2471f62191b745bab820f129e5588a255d2"
// Test that MacaroonPouch adds the macaroon hex string properly.
macaroons, err := newMacaroonPouch(
"", "", dummyMacStr,
)
require.NoError(t, err)
require.Equal(
t, macaroons[InvoiceServiceMac], serializedMacaroon(dummyMacStr),
"macaroon hex string not set correctly",
)
// If both CustomMacaroonHex and MacaroonDir are set, creating
// NewLndServices should fail.
testCfg := &LndServicesConfig{
MacaroonDir: "/testdir",
CustomMacaroonHex: dummyMacStr,
}
_, err = NewLndServices(testCfg)
require.Error(t, err, "must set only one")
}