2015-12-26 21:35:15 +03:00
|
|
|
package channeldb
|
2015-12-26 02:00:53 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2016-06-21 07:39:50 +03:00
|
|
|
"reflect"
|
2015-12-26 02:00:53 +03:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2016-09-03 04:51:34 +03:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
2016-06-21 07:39:50 +03:00
|
|
|
"github.com/lightningnetwork/lnd/elkrem"
|
2016-05-15 17:17:44 +03:00
|
|
|
"github.com/roasbeef/btcd/btcec"
|
|
|
|
"github.com/roasbeef/btcd/chaincfg"
|
|
|
|
"github.com/roasbeef/btcd/txscript"
|
|
|
|
"github.com/roasbeef/btcd/wire"
|
|
|
|
"github.com/roasbeef/btcutil"
|
2016-06-21 07:39:50 +03:00
|
|
|
_ "github.com/roasbeef/btcwallet/walletdb/bdb"
|
2015-12-26 02:00:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2016-04-24 22:35:52 +03:00
|
|
|
netParams = &chaincfg.SegNet4Params
|
|
|
|
|
2015-12-26 02:00:53 +03:00
|
|
|
key = [wire.HashSize]byte{
|
|
|
|
0x81, 0xb6, 0x37, 0xd8, 0xfc, 0xd2, 0xc6, 0xda,
|
|
|
|
0x68, 0x59, 0xe6, 0x96, 0x31, 0x13, 0xa1, 0x17,
|
|
|
|
0xd, 0xe7, 0x93, 0xe4, 0xb7, 0x25, 0xb8, 0x4d,
|
|
|
|
0x1e, 0xb, 0x4c, 0xf9, 0x9e, 0xc5, 0x8c, 0xe9,
|
|
|
|
}
|
2016-06-21 07:39:50 +03:00
|
|
|
id = &wire.OutPoint{
|
|
|
|
Hash: [wire.HashSize]byte{
|
|
|
|
0x51, 0xb6, 0x37, 0xd8, 0xfc, 0xd2, 0xc6, 0xda,
|
|
|
|
0x48, 0x59, 0xe6, 0x96, 0x31, 0x13, 0xa1, 0x17,
|
|
|
|
0x2d, 0xe7, 0x93, 0xe4, 0xb7, 0x25, 0xb8, 0x4d,
|
|
|
|
0x1f, 0xb, 0x4c, 0xf9, 0x9e, 0xc5, 0x8c, 0xe9,
|
|
|
|
},
|
|
|
|
Index: 9,
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
2016-06-27 08:58:55 +03:00
|
|
|
rev = [wire.HashSize]byte{
|
2015-12-31 09:28:00 +03:00
|
|
|
0x51, 0xb6, 0x37, 0xd8, 0xfc, 0xd2, 0xc6, 0xda,
|
|
|
|
0x48, 0x59, 0xe6, 0x96, 0x31, 0x13, 0xa1, 0x17,
|
|
|
|
0x2d, 0xe7, 0x93, 0xe4,
|
|
|
|
}
|
2015-12-26 02:00:53 +03:00
|
|
|
testTx = &wire.MsgTx{
|
|
|
|
Version: 1,
|
|
|
|
TxIn: []*wire.TxIn{
|
|
|
|
&wire.TxIn{
|
|
|
|
PreviousOutPoint: wire.OutPoint{
|
|
|
|
Hash: wire.ShaHash{},
|
|
|
|
Index: 0xffffffff,
|
|
|
|
},
|
|
|
|
SignatureScript: []byte{0x04, 0x31, 0xdc, 0x00, 0x1b, 0x01, 0x62},
|
|
|
|
Sequence: 0xffffffff,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TxOut: []*wire.TxOut{
|
|
|
|
&wire.TxOut{
|
|
|
|
Value: 5000000000,
|
|
|
|
PkScript: []byte{
|
|
|
|
0x41, // OP_DATA_65
|
|
|
|
0x04, 0xd6, 0x4b, 0xdf, 0xd0, 0x9e, 0xb1, 0xc5,
|
|
|
|
0xfe, 0x29, 0x5a, 0xbd, 0xeb, 0x1d, 0xca, 0x42,
|
|
|
|
0x81, 0xbe, 0x98, 0x8e, 0x2d, 0xa0, 0xb6, 0xc1,
|
|
|
|
0xc6, 0xa5, 0x9d, 0xc2, 0x26, 0xc2, 0x86, 0x24,
|
|
|
|
0xe1, 0x81, 0x75, 0xe8, 0x51, 0xc9, 0x6b, 0x97,
|
|
|
|
0x3d, 0x81, 0xb0, 0x1c, 0xc3, 0x1f, 0x04, 0x78,
|
|
|
|
0x34, 0xbc, 0x06, 0xd6, 0xd6, 0xed, 0xf6, 0x20,
|
|
|
|
0xd1, 0x84, 0x24, 0x1a, 0x6a, 0xed, 0x8b, 0x63,
|
|
|
|
0xa6, // 65-byte signature
|
|
|
|
0xac, // OP_CHECKSIG
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
LockTime: 5,
|
|
|
|
}
|
2016-06-21 07:39:50 +03:00
|
|
|
testOutpoint = &wire.OutPoint{
|
|
|
|
Hash: key,
|
|
|
|
Index: 0,
|
|
|
|
}
|
2016-09-03 04:51:34 +03:00
|
|
|
privKey, pubKey = btcec.PrivKeyFromBytes(btcec.S256(), key[:])
|
2015-12-26 02:00:53 +03:00
|
|
|
)
|
|
|
|
|
2016-09-03 04:51:34 +03:00
|
|
|
// makeTestDB creates a new instance of the ChannelDB for testing purposes. A
|
|
|
|
// callback which cleans up the created temporary directories is also returned
|
|
|
|
// and intended to be executed after the test completes.
|
|
|
|
func makeTestDB() (*DB, func(), error) {
|
2016-03-24 08:39:52 +03:00
|
|
|
// First, create a temporary directory to be used for the duration of
|
|
|
|
// this test.
|
|
|
|
tempDirName, err := ioutil.TempDir("", "channeldb")
|
2015-12-26 02:00:53 +03:00
|
|
|
if err != nil {
|
2016-09-03 04:51:34 +03:00
|
|
|
return nil, nil, err
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
2016-03-24 08:39:52 +03:00
|
|
|
|
|
|
|
// Next, create channeldb for the first time, also setting a mock
|
|
|
|
// EncryptorDecryptor implementation for testing purposes.
|
2016-04-24 22:35:52 +03:00
|
|
|
cdb, err := Open(tempDirName, netParams)
|
2015-12-26 02:00:53 +03:00
|
|
|
if err != nil {
|
2016-09-03 04:51:34 +03:00
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanUp := func() {
|
|
|
|
os.RemoveAll(tempDirName)
|
|
|
|
cdb.Close()
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
|
2016-09-03 04:51:34 +03:00
|
|
|
return cdb, cleanUp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func createTestChannelState(cdb *DB) (*OpenChannel, error) {
|
2016-04-24 22:35:52 +03:00
|
|
|
addr, err := btcutil.NewAddressPubKey(pubKey.SerializeCompressed(), netParams)
|
2015-12-26 02:00:53 +03:00
|
|
|
if err != nil {
|
2016-09-03 04:51:34 +03:00
|
|
|
return nil, err
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
script, err := txscript.MultiSigScript([]*btcutil.AddressPubKey{addr, addr}, 2)
|
|
|
|
if err != nil {
|
2016-09-03 04:51:34 +03:00
|
|
|
return nil, err
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
|
2016-03-24 08:39:52 +03:00
|
|
|
// Simulate 1000 channel updates via progression of the elkrem
|
|
|
|
// revocation trees.
|
2016-06-30 21:39:57 +03:00
|
|
|
sender := elkrem.NewElkremSender(key)
|
|
|
|
receiver := &elkrem.ElkremReceiver{}
|
2016-03-24 08:39:52 +03:00
|
|
|
for i := 0; i < 1000; i++ {
|
|
|
|
preImage, err := sender.AtIndex(uint64(i))
|
|
|
|
if err != nil {
|
2016-09-03 04:51:34 +03:00
|
|
|
return nil, err
|
2016-03-24 08:39:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if receiver.AddNext(preImage); err != nil {
|
2016-09-03 04:51:34 +03:00
|
|
|
return nil, err
|
2016-03-24 08:39:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-03 04:51:34 +03:00
|
|
|
return &OpenChannel{
|
2016-07-06 02:44:39 +03:00
|
|
|
TheirLNID: key,
|
|
|
|
ChanID: id,
|
|
|
|
MinFeePerKb: btcutil.Amount(5000),
|
2016-08-13 01:03:18 +03:00
|
|
|
OurCommitKey: privKey.PubKey(),
|
2016-07-06 02:44:39 +03:00
|
|
|
TheirCommitKey: pubKey,
|
|
|
|
Capacity: btcutil.Amount(10000),
|
|
|
|
OurBalance: btcutil.Amount(3000),
|
|
|
|
TheirBalance: btcutil.Amount(9000),
|
|
|
|
OurCommitTx: testTx,
|
|
|
|
OurCommitSig: bytes.Repeat([]byte{1}, 71),
|
|
|
|
LocalElkrem: sender,
|
|
|
|
RemoteElkrem: receiver,
|
|
|
|
FundingOutpoint: testOutpoint,
|
2016-08-13 01:03:18 +03:00
|
|
|
OurMultiSigKey: privKey.PubKey(),
|
2016-07-06 02:44:39 +03:00
|
|
|
TheirMultiSigKey: privKey.PubKey(),
|
|
|
|
FundingRedeemScript: script,
|
|
|
|
TheirCurrentRevocation: privKey.PubKey(),
|
|
|
|
TheirCurrentRevocationHash: key,
|
|
|
|
OurDeliveryScript: script,
|
|
|
|
TheirDeliveryScript: script,
|
|
|
|
LocalCsvDelay: 5,
|
|
|
|
RemoteCsvDelay: 9,
|
2016-09-03 04:51:34 +03:00
|
|
|
NumUpdates: 0,
|
2016-07-06 02:44:39 +03:00
|
|
|
TotalSatoshisSent: 8,
|
|
|
|
TotalSatoshisReceived: 2,
|
|
|
|
TotalNetFees: 9,
|
|
|
|
CreationTime: time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC),
|
|
|
|
Db: cdb,
|
2016-09-03 04:51:34 +03:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOpenChannelPutGetDelete(t *testing.T) {
|
|
|
|
cdb, cleanUp, err := makeTestDB()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("uanble to make test database: %v", err)
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
2016-09-03 04:51:34 +03:00
|
|
|
defer cleanUp()
|
2015-12-26 02:00:53 +03:00
|
|
|
|
2016-09-07 05:17:34 +03:00
|
|
|
// Create the test channel state, then add an additional fake HTLC
|
|
|
|
// before syncing to disk.
|
2016-09-03 04:51:34 +03:00
|
|
|
state, err := createTestChannelState(cdb)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create channel state: %v", err)
|
|
|
|
}
|
2016-09-07 05:17:34 +03:00
|
|
|
state.Htlcs = []*HTLC{
|
|
|
|
&HTLC{
|
|
|
|
Incoming: true,
|
|
|
|
Amt: 10,
|
|
|
|
RHash: key,
|
|
|
|
RefundTimeout: 1,
|
|
|
|
RevocationDelay: 2,
|
|
|
|
},
|
|
|
|
}
|
2016-03-24 08:39:52 +03:00
|
|
|
if err := state.FullSync(); err != nil {
|
|
|
|
t.Fatalf("unable to save and serialize channel state: %v", err)
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
|
2016-06-21 07:39:50 +03:00
|
|
|
nodeID := wire.ShaHash(state.TheirLNID)
|
|
|
|
openChannels, err := cdb.FetchOpenChannels(&nodeID)
|
2016-03-24 08:39:52 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to fetch open channel: %v", err)
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
|
2016-06-21 07:39:50 +03:00
|
|
|
newState := openChannels[0]
|
|
|
|
|
2015-12-26 02:00:53 +03:00
|
|
|
// The decoded channel state should be identical to what we stored
|
|
|
|
// above.
|
|
|
|
if !bytes.Equal(state.TheirLNID[:], newState.TheirLNID[:]) {
|
|
|
|
t.Fatalf("their id doesn't match")
|
|
|
|
}
|
2016-06-21 07:39:50 +03:00
|
|
|
if !reflect.DeepEqual(state.ChanID, newState.ChanID) {
|
2015-12-26 02:00:53 +03:00
|
|
|
t.Fatalf("chan id's don't match")
|
|
|
|
}
|
|
|
|
if state.MinFeePerKb != newState.MinFeePerKb {
|
|
|
|
t.Fatalf("fee/kb doens't match")
|
|
|
|
}
|
|
|
|
|
2016-08-13 01:03:18 +03:00
|
|
|
if !bytes.Equal(state.OurCommitKey.SerializeCompressed(),
|
|
|
|
newState.OurCommitKey.SerializeCompressed()) {
|
2015-12-26 02:00:53 +03:00
|
|
|
t.Fatalf("our commit key dont't match")
|
|
|
|
}
|
|
|
|
if !bytes.Equal(state.TheirCommitKey.SerializeCompressed(),
|
|
|
|
newState.TheirCommitKey.SerializeCompressed()) {
|
|
|
|
t.Fatalf("their commit key dont't match")
|
|
|
|
}
|
|
|
|
|
|
|
|
if state.Capacity != newState.Capacity {
|
2016-03-24 08:39:52 +03:00
|
|
|
t.Fatalf("capacity doesn't match: %v vs %v", state.Capacity,
|
|
|
|
newState.Capacity)
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
if state.OurBalance != newState.OurBalance {
|
|
|
|
t.Fatalf("our balance doesn't match")
|
|
|
|
}
|
|
|
|
if state.TheirBalance != newState.TheirBalance {
|
|
|
|
t.Fatalf("their balance doesn't match")
|
|
|
|
}
|
|
|
|
|
|
|
|
var b1, b2 bytes.Buffer
|
|
|
|
if err := state.OurCommitTx.Serialize(&b1); err != nil {
|
|
|
|
t.Fatalf("unable to serialize transaction")
|
|
|
|
}
|
|
|
|
if err := newState.OurCommitTx.Serialize(&b2); err != nil {
|
|
|
|
t.Fatalf("unable to serialize transaction")
|
|
|
|
}
|
|
|
|
if !bytes.Equal(b1.Bytes(), b2.Bytes()) {
|
|
|
|
t.Fatalf("ourCommitTx doesn't match")
|
|
|
|
}
|
2016-07-06 02:44:39 +03:00
|
|
|
if !bytes.Equal(newState.OurCommitSig, state.OurCommitSig) {
|
|
|
|
t.Fatalf("commit sigs don't match")
|
|
|
|
}
|
2015-12-26 02:00:53 +03:00
|
|
|
|
2016-06-21 07:39:50 +03:00
|
|
|
// TODO(roasbeef): replace with a single equal?
|
|
|
|
if !reflect.DeepEqual(state.FundingOutpoint, newState.FundingOutpoint) {
|
|
|
|
t.Fatalf("funding outpoint doesn't match")
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
|
2016-08-13 01:03:18 +03:00
|
|
|
if !bytes.Equal(state.OurMultiSigKey.SerializeCompressed(),
|
|
|
|
newState.OurMultiSigKey.SerializeCompressed()) {
|
2016-06-21 07:39:50 +03:00
|
|
|
t.Fatalf("our multisig key doesn't match")
|
|
|
|
}
|
|
|
|
if !bytes.Equal(state.TheirMultiSigKey.SerializeCompressed(),
|
|
|
|
newState.TheirMultiSigKey.SerializeCompressed()) {
|
|
|
|
t.Fatalf("their multisig key doesn't match")
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
if !bytes.Equal(state.FundingRedeemScript, newState.FundingRedeemScript) {
|
|
|
|
t.Fatalf("redeem script doesn't match")
|
|
|
|
}
|
|
|
|
|
2016-03-24 08:39:52 +03:00
|
|
|
if !bytes.Equal(state.OurDeliveryScript, newState.OurDeliveryScript) {
|
2015-12-26 02:00:53 +03:00
|
|
|
t.Fatalf("our delivery address doesn't match")
|
|
|
|
}
|
2016-03-24 08:39:52 +03:00
|
|
|
if !bytes.Equal(state.TheirDeliveryScript, newState.TheirDeliveryScript) {
|
2015-12-26 02:00:53 +03:00
|
|
|
t.Fatalf("their delivery address doesn't match")
|
|
|
|
}
|
|
|
|
|
|
|
|
if state.NumUpdates != newState.NumUpdates {
|
|
|
|
t.Fatalf("num updates doesn't match: %v vs %v",
|
|
|
|
state.NumUpdates, newState.NumUpdates)
|
|
|
|
}
|
2016-03-24 08:39:52 +03:00
|
|
|
if state.RemoteCsvDelay != newState.RemoteCsvDelay {
|
|
|
|
t.Fatalf("csv delay doesn't match: %v vs %v",
|
|
|
|
state.RemoteCsvDelay, newState.RemoteCsvDelay)
|
|
|
|
}
|
|
|
|
if state.LocalCsvDelay != newState.LocalCsvDelay {
|
2015-12-26 02:00:53 +03:00
|
|
|
t.Fatalf("csv delay doesn't match: %v vs %v",
|
2016-03-24 08:39:52 +03:00
|
|
|
state.LocalCsvDelay, newState.LocalCsvDelay)
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
if state.TotalSatoshisSent != newState.TotalSatoshisSent {
|
|
|
|
t.Fatalf("satoshis sent doesn't match: %v vs %v",
|
|
|
|
state.TotalSatoshisSent, newState.TotalSatoshisSent)
|
|
|
|
}
|
|
|
|
if state.TotalSatoshisReceived != newState.TotalSatoshisReceived {
|
|
|
|
t.Fatalf("satoshis received doesn't match")
|
|
|
|
}
|
|
|
|
|
|
|
|
if state.CreationTime.Unix() != newState.CreationTime.Unix() {
|
|
|
|
t.Fatalf("creation time doesn't match")
|
|
|
|
}
|
2016-06-23 02:15:07 +03:00
|
|
|
|
2016-06-30 21:39:57 +03:00
|
|
|
// The local and remote elkrems should be identical.
|
|
|
|
if !bytes.Equal(state.LocalElkrem.ToBytes(), newState.LocalElkrem.ToBytes()) {
|
|
|
|
t.Fatalf("local elkrems don't match")
|
|
|
|
}
|
|
|
|
oldRemoteElkrem, err := state.RemoteElkrem.ToBytes()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to serialize old remote elkrem: %v", err)
|
|
|
|
}
|
|
|
|
newRemoteElkrem, err := newState.RemoteElkrem.ToBytes()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to serialize new remote elkrem: %v", err)
|
|
|
|
}
|
|
|
|
if !bytes.Equal(oldRemoteElkrem, newRemoteElkrem) {
|
|
|
|
t.Fatalf("remote elkrems don't match")
|
|
|
|
}
|
|
|
|
if !newState.TheirCurrentRevocation.IsEqual(state.TheirCurrentRevocation) {
|
|
|
|
t.Fatalf("revocation keys don't match")
|
|
|
|
}
|
2016-07-06 02:48:23 +03:00
|
|
|
if !bytes.Equal(newState.TheirCurrentRevocationHash[:], state.TheirCurrentRevocationHash[:]) {
|
|
|
|
t.Fatalf("revocation hashes don't match")
|
|
|
|
}
|
2016-09-07 05:17:34 +03:00
|
|
|
if !reflect.DeepEqual(state.Htlcs[0], newState.Htlcs[0]) {
|
|
|
|
t.Fatalf("htlcs don't match: %v vs %v", spew.Sdump(state.Htlcs[0]),
|
|
|
|
spew.Sdump(newState.Htlcs[0]))
|
|
|
|
}
|
2016-06-30 21:39:57 +03:00
|
|
|
|
2016-06-23 02:15:07 +03:00
|
|
|
// Finally to wrap up the test, delete the state of the channel within
|
|
|
|
// the database. This involves "closing" the channel which removes all
|
|
|
|
// written state, and creates a small "summary" elsewhere within the
|
|
|
|
// database.
|
|
|
|
if err := state.CloseChannel(); err != nil {
|
|
|
|
t.Fatalf("unable to close channel: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// As the channel is now closed, attempting to fetch all open channels
|
|
|
|
// for our fake node ID should return an empty slice.
|
|
|
|
openChans, err := cdb.FetchOpenChannels(&nodeID)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to fetch open channels: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(roasbeef): need to assert much more
|
|
|
|
if len(openChans) != 0 {
|
|
|
|
t.Fatalf("all channels not deleted, found %v", len(openChans))
|
|
|
|
}
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|
|
|
|
|
2016-09-07 05:17:34 +03:00
|
|
|
func TestChannelStateTransition(t *testing.T) {
|
2016-09-03 04:51:34 +03:00
|
|
|
cdb, cleanUp, err := makeTestDB()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("uanble to make test database: %v", err)
|
|
|
|
}
|
|
|
|
defer cleanUp()
|
|
|
|
|
|
|
|
// First create a minimal channel, then perform a full sync in order to
|
|
|
|
// persist the data.
|
|
|
|
channel, err := createTestChannelState(cdb)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create channel state: %v", err)
|
|
|
|
}
|
|
|
|
if err := channel.FullSync(); err != nil {
|
|
|
|
t.Fatalf("unable to save and serialize channel state: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add some HTLC's which were added during this new state transition.
|
|
|
|
// Half of the HTLC's are incoming, while the other half are outgoing.
|
|
|
|
var htlcs []*HTLC
|
|
|
|
for i := uint32(0); i < 10; i++ {
|
|
|
|
var incoming bool
|
|
|
|
if i > 5 {
|
|
|
|
incoming = true
|
|
|
|
}
|
|
|
|
htlc := &HTLC{
|
2016-09-07 05:17:34 +03:00
|
|
|
Incoming: incoming,
|
|
|
|
Amt: 50000,
|
|
|
|
RHash: key,
|
|
|
|
RefundTimeout: i,
|
|
|
|
RevocationDelay: i + 2,
|
2016-09-03 04:51:34 +03:00
|
|
|
}
|
|
|
|
htlcs = append(htlcs, htlc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new channel delta which includes the above HTLC's, some
|
|
|
|
// balance updates, and an increment of the current commitment height.
|
|
|
|
// Additionally, modify the signature and commitment transaction.
|
|
|
|
newSequence := uint32(129498)
|
|
|
|
newSig := bytes.Repeat([]byte{3}, 71)
|
2016-09-06 02:52:54 +03:00
|
|
|
newTx := channel.OurCommitTx.Copy()
|
|
|
|
newTx.TxIn[0].Sequence = newSequence
|
2016-09-03 04:51:34 +03:00
|
|
|
delta := &ChannelDelta{
|
2016-09-06 02:58:14 +03:00
|
|
|
LocalBalance: btcutil.Amount(1e8),
|
|
|
|
RemoteBalance: btcutil.Amount(1e8),
|
|
|
|
Htlcs: htlcs,
|
|
|
|
UpdateNum: 1,
|
2016-09-03 04:51:34 +03:00
|
|
|
}
|
2016-09-07 05:17:34 +03:00
|
|
|
|
|
|
|
// First update the local node's broadcastable state.
|
|
|
|
if err := channel.UpdateCommitment(newTx, newSig, delta); err != nil {
|
|
|
|
t.Fatalf("unable to update commitment: %v", err)
|
2016-09-03 04:51:34 +03:00
|
|
|
}
|
|
|
|
|
2016-09-07 05:17:34 +03:00
|
|
|
// The balances, new update, the HTLC's and the changes to the fake
|
|
|
|
// commitment transaction along with the modified signature should all
|
|
|
|
// have been updated.
|
2016-09-03 04:51:34 +03:00
|
|
|
nodeID := wire.ShaHash(channel.TheirLNID)
|
|
|
|
updatedChannel, err := cdb.FetchOpenChannels(&nodeID)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to fetch updated channel: %v", err)
|
|
|
|
}
|
|
|
|
if !bytes.Equal(updatedChannel[0].OurCommitSig, newSig) {
|
|
|
|
t.Fatalf("sigs don't match %x vs %x",
|
|
|
|
updatedChannel[0].OurCommitSig, newSig)
|
|
|
|
}
|
|
|
|
if updatedChannel[0].OurCommitTx.TxIn[0].Sequence != newSequence {
|
|
|
|
t.Fatalf("sequence numbers don't match: %v vs %v",
|
|
|
|
updatedChannel[0].OurCommitTx.TxIn[0].Sequence, newSequence)
|
|
|
|
}
|
|
|
|
if updatedChannel[0].OurBalance != delta.LocalBalance {
|
|
|
|
t.Fatalf("local balances don't match: %v vs %v",
|
|
|
|
updatedChannel[0].OurBalance, delta.LocalBalance)
|
|
|
|
}
|
|
|
|
if updatedChannel[0].TheirBalance != delta.RemoteBalance {
|
|
|
|
t.Fatalf("remote balances don't match: %v vs %v",
|
|
|
|
updatedChannel[0].TheirBalance, delta.RemoteBalance)
|
|
|
|
}
|
|
|
|
if updatedChannel[0].NumUpdates != uint64(delta.UpdateNum) {
|
|
|
|
t.Fatalf("update # doesn't match: %v vs %v",
|
|
|
|
updatedChannel[0].NumUpdates, delta.UpdateNum)
|
|
|
|
}
|
2016-09-07 05:17:34 +03:00
|
|
|
for i := 0; i < len(updatedChannel[0].Htlcs); i++ {
|
|
|
|
originalHTLC := updatedChannel[0].Htlcs[i]
|
|
|
|
diskHTLC := channel.Htlcs[i]
|
|
|
|
if !reflect.DeepEqual(originalHTLC, diskHTLC) {
|
|
|
|
t.Fatalf("htlc's dont match: %v vs %v",
|
|
|
|
spew.Sdump(originalHTLC),
|
|
|
|
spew.Sdump(diskHTLC))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next, write to the log which tracks the necessary revocation state
|
|
|
|
// needed to rectify any fishy behavior by the remote party. Modify the
|
|
|
|
// current uncollapsed revocation state to simulate a state transition
|
|
|
|
// by the remote party.
|
|
|
|
newRevocation := bytes.Repeat([]byte{9}, 32)
|
|
|
|
copy(channel.TheirCurrentRevocationHash[:], newRevocation)
|
|
|
|
if err := channel.AppendToRevocationLog(delta); err != nil {
|
|
|
|
t.Fatalf("unable to append to revocation log: %v", err)
|
|
|
|
}
|
2016-09-03 04:51:34 +03:00
|
|
|
|
|
|
|
// We should be able to fetch the channel delta created above by it's
|
|
|
|
// update number with all the state properly reconstructed.
|
|
|
|
diskDelta, err := channel.FindPreviousState(uint64(delta.UpdateNum))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to fetch past delta: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The two deltas (the original vs the on-disk version) should
|
|
|
|
// identical, and all HTLC data should properly be retained.
|
|
|
|
if delta.LocalBalance != diskDelta.LocalBalance {
|
|
|
|
t.Fatalf("local balances don't match")
|
|
|
|
}
|
|
|
|
if delta.RemoteBalance != diskDelta.RemoteBalance {
|
|
|
|
t.Fatalf("remote balances don't match")
|
|
|
|
}
|
|
|
|
if delta.UpdateNum != diskDelta.UpdateNum {
|
|
|
|
t.Fatalf("update number doesn't match")
|
|
|
|
}
|
|
|
|
for i := 0; i < len(delta.Htlcs); i++ {
|
|
|
|
originalHTLC := delta.Htlcs[i]
|
|
|
|
diskHTLC := diskDelta.Htlcs[i]
|
|
|
|
if !reflect.DeepEqual(originalHTLC, diskHTLC) {
|
|
|
|
t.Fatalf("htlc's dont match: %v vs %v",
|
|
|
|
spew.Sdump(originalHTLC),
|
|
|
|
spew.Sdump(diskHTLC))
|
|
|
|
}
|
|
|
|
}
|
2016-09-07 05:17:34 +03:00
|
|
|
// The revocation state stored on-disk should now also be identical.
|
|
|
|
updatedChannel, err = cdb.FetchOpenChannels(&nodeID)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to fetch updated channel: %v", err)
|
|
|
|
}
|
|
|
|
if !bytes.Equal(updatedChannel[0].TheirCurrentRevocationHash[:],
|
|
|
|
newRevocation) {
|
|
|
|
t.Fatalf("revocation state wasn't synced!")
|
|
|
|
}
|
2015-12-26 02:00:53 +03:00
|
|
|
}
|