2019-03-07 02:19:57 +00:00
|
|
|
package loopdb
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/sha256"
|
|
|
|
"io/ioutil"
|
2019-03-07 02:19:57 +00:00
|
|
|
"os"
|
2019-05-15 11:59:05 +00:00
|
|
|
"path/filepath"
|
2019-03-06 20:13:50 +00:00
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2019-03-25 10:06:16 +00:00
|
|
|
"github.com/btcsuite/btcd/chaincfg"
|
2019-05-15 11:59:05 +00:00
|
|
|
"github.com/coreos/bbolt"
|
2019-03-06 23:29:44 +00:00
|
|
|
"github.com/lightninglabs/loop/test"
|
2019-03-07 02:19:57 +00:00
|
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
2020-02-11 12:25:03 +00:00
|
|
|
"github.com/lightningnetwork/lnd/routing/route"
|
2019-03-06 20:13:50 +00:00
|
|
|
)
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
var (
|
|
|
|
senderKey = [33]byte{
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
|
|
|
|
}
|
|
|
|
|
|
|
|
receiverKey = [33]byte{
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3,
|
|
|
|
}
|
|
|
|
|
|
|
|
testPreimage = lntypes.Preimage([32]byte{
|
|
|
|
1, 1, 1, 1, 2, 2, 2, 2,
|
|
|
|
3, 3, 3, 3, 4, 4, 4, 4,
|
|
|
|
1, 1, 1, 1, 2, 2, 2, 2,
|
|
|
|
3, 3, 3, 3, 4, 4, 4, 4,
|
|
|
|
})
|
|
|
|
|
|
|
|
testTime = time.Date(2018, time.January, 9, 14, 00, 00, 0, time.UTC)
|
|
|
|
)
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2019-03-12 15:09:57 +00:00
|
|
|
// TestLoopOutStore tests all the basic functionality of the current bbolt
|
2019-03-07 02:19:57 +00:00
|
|
|
// swap store.
|
2019-03-12 15:09:57 +00:00
|
|
|
func TestLoopOutStore(t *testing.T) {
|
2019-03-06 20:13:50 +00:00
|
|
|
destAddr := test.GetDestAddr(t, 0)
|
|
|
|
initiationTime := time.Date(2018, 11, 1, 0, 0, 0, 0, time.UTC)
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
// Next, we'll make a new pending swap that we'll insert into the
|
|
|
|
// database shortly.
|
2019-03-07 04:32:24 +00:00
|
|
|
pendingSwap := LoopOutContract{
|
2019-03-06 20:13:50 +00:00
|
|
|
SwapContract: SwapContract{
|
2019-03-12 15:09:57 +00:00
|
|
|
AmountRequested: 100,
|
|
|
|
Preimage: testPreimage,
|
|
|
|
CltvExpiry: 144,
|
|
|
|
SenderKey: senderKey,
|
|
|
|
|
|
|
|
ReceiverKey: receiverKey,
|
|
|
|
MaxMinerFee: 10,
|
|
|
|
MaxSwapFee: 20,
|
|
|
|
|
|
|
|
InitiationHeight: 99,
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
// Convert to/from unix to remove timezone, so that it
|
|
|
|
// doesn't interfere with DeepEqual.
|
|
|
|
InitiationTime: time.Unix(0, initiationTime.UnixNano()),
|
|
|
|
},
|
2019-11-14 09:35:31 +00:00
|
|
|
MaxPrepayRoutingFee: 40,
|
|
|
|
PrepayInvoice: "prepayinvoice",
|
|
|
|
DestAddr: destAddr,
|
|
|
|
SwapInvoice: "swapinvoice",
|
|
|
|
MaxSwapRoutingFee: 30,
|
|
|
|
SweepConfTarget: 2,
|
|
|
|
SwapPublicationDeadline: time.Unix(0, initiationTime.UnixNano()),
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 08:38:54 +00:00
|
|
|
testLoopOutStore(t, &pendingSwap)
|
|
|
|
}
|
|
|
|
|
|
|
|
// testLoopOutStore tests the basic functionality of the current bbolt
|
|
|
|
// swap store for specific swap parameters.
|
|
|
|
func testLoopOutStore(t *testing.T, pendingSwap *LoopOutContract) {
|
|
|
|
tempDirName, err := ioutil.TempDir("", "clientstore")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tempDirName)
|
|
|
|
|
|
|
|
store, err := NewBoltSwapStore(tempDirName, &chaincfg.MainNetParams)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// First, verify that an empty database has no active swaps.
|
|
|
|
swaps, err := store.FetchLoopOutSwaps()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(swaps) != 0 {
|
|
|
|
t.Fatal("expected empty store")
|
|
|
|
}
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
// checkSwap is a test helper function that'll assert the state of a
|
|
|
|
// swap.
|
2019-03-06 20:13:50 +00:00
|
|
|
checkSwap := func(expectedState SwapState) {
|
|
|
|
t.Helper()
|
|
|
|
|
2019-03-07 04:32:24 +00:00
|
|
|
swaps, err := store.FetchLoopOutSwaps()
|
2019-03-06 20:13:50 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(swaps) != 1 {
|
|
|
|
t.Fatal("expected pending swap in store")
|
|
|
|
}
|
|
|
|
|
|
|
|
swap := swaps[0].Contract
|
2020-05-19 08:38:54 +00:00
|
|
|
if !reflect.DeepEqual(swap, pendingSwap) {
|
2019-03-06 20:13:50 +00:00
|
|
|
t.Fatal("invalid pending swap data")
|
|
|
|
}
|
|
|
|
|
2019-05-15 11:55:41 +00:00
|
|
|
if swaps[0].State().State != expectedState {
|
2019-03-06 20:13:50 +00:00
|
|
|
t.Fatalf("expected state %v, but got %v",
|
|
|
|
expectedState, swaps[0].State(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 08:38:54 +00:00
|
|
|
hash := pendingSwap.Preimage.Hash()
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
// If we create a new swap, then it should show up as being initialized
|
|
|
|
// right after.
|
2020-05-19 08:38:54 +00:00
|
|
|
if err := store.CreateLoopOut(hash, pendingSwap); err != nil {
|
2019-03-06 20:13:50 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
checkSwap(StateInitiated)
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
// Trying to make the same swap again should result in an error.
|
2020-05-19 08:38:54 +00:00
|
|
|
if err := store.CreateLoopOut(hash, pendingSwap); err == nil {
|
2019-03-06 20:13:50 +00:00
|
|
|
t.Fatal("expected error on storing duplicate")
|
|
|
|
}
|
|
|
|
checkSwap(StateInitiated)
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
// Next, we'll update to the next state of the pre-image being
|
|
|
|
// revealed. The state should be reflected here again.
|
2019-03-07 04:32:24 +00:00
|
|
|
err = store.UpdateLoopOut(
|
2019-05-15 11:55:41 +00:00
|
|
|
hash, testTime,
|
|
|
|
SwapStateData{
|
|
|
|
State: StatePreimageRevealed,
|
|
|
|
},
|
2019-03-07 02:19:57 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
2019-03-06 20:13:50 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
checkSwap(StatePreimageRevealed)
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
// Next, we'll update to the final state to ensure that the state is
|
|
|
|
// properly updated.
|
2019-03-07 04:32:24 +00:00
|
|
|
err = store.UpdateLoopOut(
|
2019-05-15 11:55:41 +00:00
|
|
|
hash, testTime,
|
|
|
|
SwapStateData{
|
|
|
|
State: StateFailInsufficientValue,
|
|
|
|
},
|
2019-03-07 02:19:57 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
2019-03-06 20:13:50 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
checkSwap(StateFailInsufficientValue)
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
if err := store.Close(); err != nil {
|
2019-03-06 20:13:50 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
// If we re-open the same store, then the state of the current swap
|
|
|
|
// should be the same.
|
2019-03-25 10:06:16 +00:00
|
|
|
store, err = NewBoltSwapStore(tempDirName, &chaincfg.MainNetParams)
|
2019-03-06 20:13:50 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
checkSwap(StateFailInsufficientValue)
|
|
|
|
}
|
2019-03-12 15:09:57 +00:00
|
|
|
|
|
|
|
// TestLoopInStore tests all the basic functionality of the current bbolt
|
|
|
|
// swap store.
|
|
|
|
func TestLoopInStore(t *testing.T) {
|
|
|
|
tempDirName, err := ioutil.TempDir("", "clientstore")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tempDirName)
|
|
|
|
|
|
|
|
store, err := NewBoltSwapStore(tempDirName, &chaincfg.MainNetParams)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// First, verify that an empty database has no active swaps.
|
|
|
|
swaps, err := store.FetchLoopInSwaps()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(swaps) != 0 {
|
|
|
|
t.Fatal("expected empty store")
|
|
|
|
}
|
|
|
|
|
|
|
|
hash := sha256.Sum256(testPreimage[:])
|
|
|
|
initiationTime := time.Date(2018, 11, 1, 0, 0, 0, 0, time.UTC)
|
|
|
|
|
|
|
|
// Next, we'll make a new pending swap that we'll insert into the
|
|
|
|
// database shortly.
|
2020-02-11 12:25:03 +00:00
|
|
|
lastHop := route.Vertex{1, 2, 3}
|
2019-03-12 15:09:57 +00:00
|
|
|
|
|
|
|
pendingSwap := LoopInContract{
|
|
|
|
SwapContract: SwapContract{
|
|
|
|
AmountRequested: 100,
|
|
|
|
Preimage: testPreimage,
|
|
|
|
CltvExpiry: 144,
|
|
|
|
SenderKey: senderKey,
|
|
|
|
ReceiverKey: receiverKey,
|
|
|
|
MaxMinerFee: 10,
|
|
|
|
MaxSwapFee: 20,
|
|
|
|
InitiationHeight: 99,
|
|
|
|
|
|
|
|
// Convert to/from unix to remove timezone, so that it
|
|
|
|
// doesn't interfere with DeepEqual.
|
|
|
|
InitiationTime: time.Unix(0, initiationTime.UnixNano()),
|
|
|
|
},
|
|
|
|
HtlcConfTarget: 2,
|
2020-02-11 12:25:03 +00:00
|
|
|
LastHop: &lastHop,
|
2019-03-28 12:29:21 +00:00
|
|
|
ExternalHtlc: true,
|
2019-03-12 15:09:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// checkSwap is a test helper function that'll assert the state of a
|
|
|
|
// swap.
|
|
|
|
checkSwap := func(expectedState SwapState) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
swaps, err := store.FetchLoopInSwaps()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(swaps) != 1 {
|
|
|
|
t.Fatal("expected pending swap in store")
|
|
|
|
}
|
|
|
|
|
|
|
|
swap := swaps[0].Contract
|
|
|
|
if !reflect.DeepEqual(swap, &pendingSwap) {
|
|
|
|
t.Fatal("invalid pending swap data")
|
|
|
|
}
|
|
|
|
|
2019-05-15 11:55:41 +00:00
|
|
|
if swaps[0].State().State != expectedState {
|
2019-03-12 15:09:57 +00:00
|
|
|
t.Fatalf("expected state %v, but got %v",
|
|
|
|
expectedState, swaps[0].State(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we create a new swap, then it should show up as being initialized
|
|
|
|
// right after.
|
|
|
|
if err := store.CreateLoopIn(hash, &pendingSwap); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
checkSwap(StateInitiated)
|
|
|
|
|
|
|
|
// Trying to make the same swap again should result in an error.
|
|
|
|
if err := store.CreateLoopIn(hash, &pendingSwap); err == nil {
|
|
|
|
t.Fatal("expected error on storing duplicate")
|
|
|
|
}
|
|
|
|
checkSwap(StateInitiated)
|
|
|
|
|
|
|
|
// Next, we'll update to the next state of the pre-image being
|
|
|
|
// revealed. The state should be reflected here again.
|
|
|
|
err = store.UpdateLoopIn(
|
2019-05-15 11:55:41 +00:00
|
|
|
hash, testTime,
|
|
|
|
SwapStateData{
|
|
|
|
State: StatePreimageRevealed,
|
|
|
|
},
|
2019-03-12 15:09:57 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
checkSwap(StatePreimageRevealed)
|
|
|
|
|
|
|
|
// Next, we'll update to the final state to ensure that the state is
|
|
|
|
// properly updated.
|
|
|
|
err = store.UpdateLoopIn(
|
2019-05-15 11:55:41 +00:00
|
|
|
hash, testTime,
|
|
|
|
SwapStateData{
|
|
|
|
State: StateFailInsufficientValue,
|
|
|
|
},
|
2019-03-12 15:09:57 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
checkSwap(StateFailInsufficientValue)
|
|
|
|
|
|
|
|
if err := store.Close(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we re-open the same store, then the state of the current swap
|
|
|
|
// should be the same.
|
|
|
|
store, err = NewBoltSwapStore(tempDirName, &chaincfg.MainNetParams)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
checkSwap(StateFailInsufficientValue)
|
|
|
|
}
|
2019-05-15 11:59:05 +00:00
|
|
|
|
|
|
|
// TestVersionNew tests that a new database is initialized with the current
|
|
|
|
// version.
|
|
|
|
func TestVersionNew(t *testing.T) {
|
|
|
|
tempDirName, err := ioutil.TempDir("", "clientstore")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tempDirName)
|
|
|
|
|
|
|
|
store, err := NewBoltSwapStore(tempDirName, &chaincfg.MainNetParams)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
ver, err := getDBVersion(store.db)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ver != latestDBVersion {
|
|
|
|
t.Fatal("db not at latest version")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestVersionNew tests that an existing version zero database is migrated to
|
|
|
|
// the latest version.
|
|
|
|
func TestVersionMigrated(t *testing.T) {
|
|
|
|
tempDirName, err := ioutil.TempDir("", "clientstore")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tempDirName)
|
|
|
|
|
|
|
|
createVersionZeroDb(t, tempDirName)
|
|
|
|
|
|
|
|
store, err := NewBoltSwapStore(tempDirName, &chaincfg.MainNetParams)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
ver, err := getDBVersion(store.db)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ver != latestDBVersion {
|
|
|
|
t.Fatal("db not at latest version")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// createVersionZeroDb creates a database with an empty meta bucket. In version
|
|
|
|
// zero, there was no version key specified yet.
|
|
|
|
func createVersionZeroDb(t *testing.T, dbPath string) {
|
|
|
|
path := filepath.Join(dbPath, dbFileName)
|
|
|
|
bdb, err := bbolt.Open(path, 0600, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer bdb.Close()
|
|
|
|
|
|
|
|
err = bdb.Update(func(tx *bbolt.Tx) error {
|
|
|
|
_, err := tx.CreateBucket(metaBucketKey)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|