-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rpcserver: add tests for
RenewAccount
endpoint
- Loading branch information
1 parent
b7c7de9
commit 9195066
Showing
1 changed file
with
172 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
package pool | ||
|
||
import ( | ||
"context" | ||
"encoding/hex" | ||
"testing" | ||
"time" | ||
|
||
"github.com/btcsuite/btcd/btcec" | ||
"github.com/btcsuite/btcd/wire" | ||
gomock "github.com/golang/mock/gomock" | ||
"github.com/lightninglabs/pool/account" | ||
"github.com/lightninglabs/pool/order" | ||
"github.com/lightninglabs/pool/poolrpc" | ||
"github.com/lightningnetwork/lnd/lnwallet/chainfee" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
var ( | ||
ctxTimeout = 1 * time.Second | ||
traderKeyStr = "036b51e0cc2d9e5988ee4967e0ba67ef3727bb633fea21a0af58e0c9395446ba09" | ||
traderKeyRaw, _ = hex.DecodeString(traderKeyStr) | ||
) | ||
|
||
func getAccountKey(acctKey []byte) *btcec.PublicKey { | ||
res, _ := btcec.ParsePubKey(acctKey, btcec.S256()) | ||
return res | ||
} | ||
|
||
func genRenewAccountReq(accountKey []byte, absolute, relative uint32, | ||
feerate uint64) *poolrpc.RenewAccountRequest { | ||
|
||
req := &poolrpc.RenewAccountRequest{} | ||
|
||
req.AccountKey = accountKey | ||
req.FeeRateSatPerKw = feerate | ||
if absolute != 0 { | ||
req.AccountExpiry = &poolrpc.RenewAccountRequest_AbsoluteExpiry{ | ||
AbsoluteExpiry: absolute, | ||
} | ||
} else { | ||
req.AccountExpiry = &poolrpc.RenewAccountRequest_RelativeExpiry{ | ||
RelativeExpiry: relative, | ||
} | ||
} | ||
|
||
return req | ||
} | ||
|
||
var renewAccountTestCases = []struct { | ||
name string | ||
getReq func() *poolrpc.RenewAccountRequest | ||
checkResponse func(*poolrpc.RenewAccountResponse) error | ||
mockSetter func(*poolrpc.RenewAccountRequest, | ||
*account.MockManager, *MockMarshaler) | ||
expectedError string | ||
}{{ | ||
name: "we are able to successfully renew an account", | ||
getReq: func() *poolrpc.RenewAccountRequest { | ||
return genRenewAccountReq(traderKeyRaw, 0, 10, 1000) | ||
}, | ||
mockSetter: func(req *poolrpc.RenewAccountRequest, | ||
accMgr *account.MockManager, marshalerMock *MockMarshaler) { | ||
// Renew account params | ||
bestHeight := uint32(100) | ||
feeRate := chainfee.SatPerKWeight(req.FeeRateSatPerKw) | ||
expiryHeight := req.GetAbsoluteExpiry() | ||
if expiryHeight == 0 { | ||
expiryHeight = 100 + req.GetRelativeExpiry() | ||
} | ||
// RenewAccount returns | ||
acc := &account.Account{} | ||
tx := &wire.MsgTx{} | ||
accMgr.EXPECT(). | ||
RenewAccount( | ||
gomock.Any(), getAccountKey(req.AccountKey), | ||
expiryHeight, feeRate, bestHeight, | ||
). | ||
Return(acc, tx, nil) | ||
|
||
rpcAccount := poolrpc.Account{} | ||
marshalerMock.EXPECT(). | ||
MarshallAccountsWithAvailableBalance( | ||
gomock.Any(), gomock.Eq([]*account.Account{acc}), | ||
). | ||
Return([]*poolrpc.Account{&rpcAccount}, nil) | ||
}, | ||
checkResponse: func(*poolrpc.RenewAccountResponse) error { | ||
return nil | ||
}, | ||
}, { | ||
name: "account key must be valid", | ||
getReq: func() *poolrpc.RenewAccountRequest { | ||
return &poolrpc.RenewAccountRequest{ | ||
AccountKey: []byte{3, 5, 8}, | ||
} | ||
}, | ||
expectedError: "invalid pub key length 3", | ||
mockSetter: func(req *poolrpc.RenewAccountRequest, | ||
accMgr *account.MockManager, marshalerMock *MockMarshaler) { | ||
}, | ||
checkResponse: func(*poolrpc.RenewAccountResponse) error { | ||
return nil | ||
}, | ||
}, { | ||
name: "req should specify absolute/relative expiry", | ||
getReq: func() *poolrpc.RenewAccountRequest { | ||
return genRenewAccountReq(traderKeyRaw, 0, 0, 1000) | ||
}, | ||
expectedError: "either relative or absolute height must be specified", | ||
mockSetter: func(req *poolrpc.RenewAccountRequest, | ||
accMgr *account.MockManager, marshalerMock *MockMarshaler) { | ||
}, | ||
checkResponse: func(*poolrpc.RenewAccountResponse) error { | ||
return nil | ||
}, | ||
}, { | ||
name: "req should specify a valid fee rate", | ||
getReq: func() *poolrpc.RenewAccountRequest { | ||
return genRenewAccountReq(traderKeyRaw, 0, 100, 0) | ||
}, | ||
expectedError: "fee rate of 0 sat/kw is too low, minimum is 253 sat/kw", | ||
mockSetter: func(req *poolrpc.RenewAccountRequest, | ||
accMgr *account.MockManager, marshalerMock *MockMarshaler) { | ||
}, | ||
checkResponse: func(*poolrpc.RenewAccountResponse) error { | ||
return nil | ||
}, | ||
}} | ||
|
||
func TestRenewAccount(t *testing.T) { | ||
for _, tc := range renewAccountTestCases { | ||
tc := tc | ||
|
||
t.Run(tc.name, func(t *testing.T) { | ||
t.Parallel() | ||
|
||
mockCtrl := gomock.NewController(t) | ||
defer mockCtrl.Finish() | ||
|
||
req := tc.getReq() | ||
|
||
accountMgr := account.NewMockManager(mockCtrl) | ||
orderMgr := order.NewMockManager(mockCtrl) | ||
marshaler := NewMockMarshaler(mockCtrl) | ||
tc.mockSetter(req, accountMgr, marshaler) | ||
|
||
srv := rpcServer{ | ||
accountManager: accountMgr, | ||
orderManager: orderMgr, | ||
marshaler: marshaler, | ||
} | ||
srv.bestHeight = 100 | ||
|
||
ctx, cancel := context.WithTimeout( | ||
context.Background(), ctxTimeout, | ||
) | ||
defer cancel() | ||
|
||
resp, err := srv.RenewAccount(ctx, req) | ||
if tc.expectedError != "" { | ||
assert.EqualError(t, err, tc.expectedError) | ||
return | ||
} | ||
require.NoError(t, err) | ||
|
||
err = tc.checkResponse(resp) | ||
require.NoError(t, err) | ||
}) | ||
} | ||
} |