2020-07-18 03:07:02 +00:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"sync/atomic"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
2020-07-22 17:55:31 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
|
2020-07-18 03:07:02 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2020-09-28 20:34:14 +00:00
|
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
2020-07-28 16:16:46 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
2021-01-29 20:01:00 +00:00
|
|
|
"github.com/filecoin-project/lotus/blockstore"
|
2020-07-18 03:07:02 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2020-09-28 20:34:14 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2020-10-08 01:09:33 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin"
|
2020-09-28 20:34:14 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin/paych"
|
2020-10-08 01:09:33 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/policy"
|
2020-07-18 03:07:02 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/events"
|
|
|
|
"github.com/filecoin-project/lotus/chain/events/state"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestPaymentChannels(t *testing.T, b APIBuilder, blocktime time.Duration) {
|
|
|
|
ctx := context.Background()
|
2020-10-07 09:26:15 +00:00
|
|
|
n, sn := b(t, TwoFull, OneMiner)
|
2020-07-18 03:07:02 +00:00
|
|
|
|
|
|
|
paymentCreator := n[0]
|
|
|
|
paymentReceiver := n[1]
|
|
|
|
miner := sn[0]
|
|
|
|
|
|
|
|
// get everyone connected
|
|
|
|
addrs, err := paymentCreator.NetAddrsListen(ctx)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := paymentReceiver.NetConnect(ctx, addrs); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := miner.NetConnect(ctx, addrs); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// start mining blocks
|
2020-08-13 20:37:09 +00:00
|
|
|
bm := NewBlockMiner(ctx, t, miner, blocktime)
|
|
|
|
bm.MineBlocks()
|
2020-07-18 03:07:02 +00:00
|
|
|
|
|
|
|
// send some funds to register the receiver
|
2020-10-11 18:12:01 +00:00
|
|
|
receiverAddr, err := paymentReceiver.WalletNew(ctx, types.KTSecp256k1)
|
2020-07-18 03:07:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2020-08-13 20:37:09 +00:00
|
|
|
SendFunds(ctx, t, paymentCreator, receiverAddr, abi.NewTokenAmount(1e18))
|
2020-07-18 03:07:02 +00:00
|
|
|
|
|
|
|
// setup the payment channel
|
|
|
|
createrAddr, err := paymentCreator.WalletDefaultAddress(ctx)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2020-09-14 08:11:11 +00:00
|
|
|
channelAmt := int64(7000)
|
2020-07-22 20:09:46 +00:00
|
|
|
channelInfo, err := paymentCreator.PaychGet(ctx, createrAddr, receiverAddr, abi.NewTokenAmount(channelAmt))
|
2020-07-18 03:07:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-07-22 17:55:31 +00:00
|
|
|
|
2020-08-11 14:45:45 +00:00
|
|
|
channel, err := paymentCreator.PaychGetWaitReady(ctx, channelInfo.WaitSentinel)
|
2020-07-18 03:07:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-07-22 20:09:46 +00:00
|
|
|
|
2020-07-18 03:07:02 +00:00
|
|
|
// allocate three lanes
|
|
|
|
var lanes []uint64
|
|
|
|
for i := 0; i < 3; i++ {
|
|
|
|
lane, err := paymentCreator.PaychAllocateLane(ctx, channel)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
lanes = append(lanes, lane)
|
|
|
|
}
|
|
|
|
|
2020-07-22 20:09:46 +00:00
|
|
|
// Make two vouchers each for each lane, then save on the other side
|
|
|
|
// Note that the voucher with a value of 2000 has a higher nonce, so it
|
|
|
|
// supersedes the voucher with a value of 1000
|
2020-07-18 03:07:02 +00:00
|
|
|
for _, lane := range lanes {
|
|
|
|
vouch1, err := paymentCreator.PaychVoucherCreate(ctx, channel, abi.NewTokenAmount(1000), lane)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-09-01 14:33:44 +00:00
|
|
|
if vouch1.Voucher == nil {
|
|
|
|
t.Fatal(fmt.Errorf("Not enough funds to create voucher: missing %d", vouch1.Shortfall))
|
|
|
|
}
|
2020-07-18 03:07:02 +00:00
|
|
|
vouch2, err := paymentCreator.PaychVoucherCreate(ctx, channel, abi.NewTokenAmount(2000), lane)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-09-01 14:33:44 +00:00
|
|
|
if vouch2.Voucher == nil {
|
|
|
|
t.Fatal(fmt.Errorf("Not enough funds to create voucher: missing %d", vouch2.Shortfall))
|
|
|
|
}
|
|
|
|
delta1, err := paymentReceiver.PaychVoucherAdd(ctx, channel, vouch1.Voucher, nil, abi.NewTokenAmount(1000))
|
2020-07-18 03:07:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !delta1.Equals(abi.NewTokenAmount(1000)) {
|
|
|
|
t.Fatal("voucher didn't have the right amount")
|
|
|
|
}
|
2020-09-01 14:33:44 +00:00
|
|
|
delta2, err := paymentReceiver.PaychVoucherAdd(ctx, channel, vouch2.Voucher, nil, abi.NewTokenAmount(1000))
|
2020-07-18 03:07:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !delta2.Equals(abi.NewTokenAmount(1000)) {
|
|
|
|
t.Fatal("voucher didn't have the right amount")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// settle the payment channel
|
|
|
|
settleMsgCid, err := paymentCreator.PaychSettle(ctx, channel)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-07-22 17:55:31 +00:00
|
|
|
|
2020-07-28 23:16:47 +00:00
|
|
|
res := waitForMessage(ctx, t, paymentCreator, settleMsgCid, time.Second*10, "settle")
|
2020-07-18 03:07:02 +00:00
|
|
|
if res.Receipt.ExitCode != 0 {
|
|
|
|
t.Fatal("Unable to settle payment channel")
|
|
|
|
}
|
|
|
|
|
2021-01-29 20:01:00 +00:00
|
|
|
creatorStore := adt.WrapStore(ctx, cbor.NewCborStore(blockstore.NewAPIBlockstore(paymentCreator)))
|
2020-09-28 20:34:14 +00:00
|
|
|
|
2020-07-18 03:07:02 +00:00
|
|
|
// wait for the receiver to submit their vouchers
|
|
|
|
ev := events.NewEvents(ctx, paymentCreator)
|
|
|
|
preds := state.NewStatePredicates(paymentCreator)
|
|
|
|
finished := make(chan struct{})
|
|
|
|
err = ev.StateChanged(func(ts *types.TipSet) (done bool, more bool, err error) {
|
2020-09-28 20:34:14 +00:00
|
|
|
act, err := paymentCreator.StateGetActor(ctx, channel, ts.Key())
|
|
|
|
if err != nil {
|
|
|
|
return false, false, err
|
|
|
|
}
|
|
|
|
state, err := paych.Load(creatorStore, act)
|
|
|
|
if err != nil {
|
|
|
|
return false, false, err
|
|
|
|
}
|
|
|
|
toSend, err := state.ToSend()
|
2020-07-18 03:07:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, false, err
|
|
|
|
}
|
2020-09-28 20:34:14 +00:00
|
|
|
if toSend.GreaterThanEqual(abi.NewTokenAmount(6000)) {
|
2020-07-18 03:07:02 +00:00
|
|
|
return true, false, nil
|
|
|
|
}
|
|
|
|
return false, true, nil
|
|
|
|
}, func(oldTs, newTs *types.TipSet, states events.StateChange, curH abi.ChainEpoch) (more bool, err error) {
|
|
|
|
toSendChange := states.(*state.PayChToSendChange)
|
|
|
|
if toSendChange.NewToSend.GreaterThanEqual(abi.NewTokenAmount(6000)) {
|
|
|
|
close(finished)
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}, func(ctx context.Context, ts *types.TipSet) error {
|
|
|
|
return nil
|
2020-09-29 00:28:16 +00:00
|
|
|
}, int(build.MessageConfidence)+1, build.Finality, func(oldTs, newTs *types.TipSet) (bool, events.StateChange, error) {
|
2020-07-18 03:07:02 +00:00
|
|
|
return preds.OnPaymentChannelActorChanged(channel, preds.OnToSendAmountChanges())(ctx, oldTs.Key(), newTs.Key())
|
|
|
|
})
|
2020-08-20 04:49:10 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-07-18 03:07:02 +00:00
|
|
|
|
2020-07-22 17:55:31 +00:00
|
|
|
select {
|
|
|
|
case <-finished:
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
t.Fatal("Timed out waiting for receiver to submit vouchers")
|
|
|
|
}
|
2020-07-18 03:07:02 +00:00
|
|
|
|
2020-09-14 08:11:11 +00:00
|
|
|
// Create a new voucher now that some vouchers have already been submitted
|
|
|
|
vouchRes, err := paymentCreator.PaychVoucherCreate(ctx, channel, abi.NewTokenAmount(1000), 3)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if vouchRes.Voucher == nil {
|
|
|
|
t.Fatal(fmt.Errorf("Not enough funds to create voucher: missing %d", vouchRes.Shortfall))
|
|
|
|
}
|
|
|
|
vdelta, err := paymentReceiver.PaychVoucherAdd(ctx, channel, vouchRes.Voucher, nil, abi.NewTokenAmount(1000))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !vdelta.Equals(abi.NewTokenAmount(1000)) {
|
|
|
|
t.Fatal("voucher didn't have the right amount")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new voucher whose value would exceed the channel balance
|
|
|
|
excessAmt := abi.NewTokenAmount(1000)
|
|
|
|
vouchRes, err = paymentCreator.PaychVoucherCreate(ctx, channel, excessAmt, 4)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if vouchRes.Voucher != nil {
|
|
|
|
t.Fatal("Expected not to be able to create voucher whose value would exceed channel balance")
|
|
|
|
}
|
|
|
|
if !vouchRes.Shortfall.Equals(excessAmt) {
|
|
|
|
t.Fatal(fmt.Errorf("Expected voucher shortfall of %d, got %d", excessAmt, vouchRes.Shortfall))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a voucher whose value would exceed the channel balance
|
|
|
|
vouch := &paych.SignedVoucher{ChannelAddr: channel, Amount: excessAmt, Lane: 4, Nonce: 1}
|
|
|
|
vb, err := vouch.SigningBytes()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
sig, err := paymentCreator.WalletSign(ctx, createrAddr, vb)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
vouch.Signature = sig
|
|
|
|
_, err = paymentReceiver.PaychVoucherAdd(ctx, channel, vouch, nil, abi.NewTokenAmount(1000))
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal(fmt.Errorf("Expected shortfall error of %d", excessAmt))
|
|
|
|
}
|
|
|
|
|
2020-08-04 21:27:54 +00:00
|
|
|
// wait for the settlement period to pass before collecting
|
2020-10-08 01:09:33 +00:00
|
|
|
waitForBlocks(ctx, t, bm, paymentReceiver, receiverAddr, policy.PaychSettleDelay)
|
2020-07-28 16:16:46 +00:00
|
|
|
|
2020-08-04 21:27:54 +00:00
|
|
|
creatorPreCollectBalance, err := paymentCreator.WalletBalance(ctx, createrAddr)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
2020-07-28 17:50:27 +00:00
|
|
|
}
|
|
|
|
|
2020-07-18 03:07:02 +00:00
|
|
|
// collect funds (from receiver, though either party can do it)
|
|
|
|
collectMsg, err := paymentReceiver.PaychCollect(ctx, channel)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-04-05 19:34:03 +00:00
|
|
|
res, err = paymentReceiver.StateWaitMsg(ctx, collectMsg, 3, api.LookbackNoLimit, true)
|
2020-07-18 03:07:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if res.Receipt.ExitCode != 0 {
|
|
|
|
t.Fatal("unable to collect on payment channel")
|
|
|
|
}
|
|
|
|
|
2020-07-22 20:09:46 +00:00
|
|
|
// Finally, check the balance for the creator
|
2020-07-18 03:07:02 +00:00
|
|
|
currentCreatorBalance, err := paymentCreator.WalletBalance(ctx, createrAddr)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-07-22 20:09:46 +00:00
|
|
|
|
|
|
|
// The highest nonce voucher that the creator sent on each lane is 2000
|
|
|
|
totalVouchers := int64(len(lanes) * 2000)
|
2020-08-04 21:27:54 +00:00
|
|
|
|
2020-07-22 20:09:46 +00:00
|
|
|
// When receiver submits the tokens to the chain, creator should get a
|
|
|
|
// refund on the remaining balance, which is
|
|
|
|
// channel amount - total voucher value
|
|
|
|
expectedRefund := channelAmt - totalVouchers
|
|
|
|
delta := big.Sub(currentCreatorBalance, creatorPreCollectBalance)
|
|
|
|
if !delta.Equals(abi.NewTokenAmount(expectedRefund)) {
|
|
|
|
t.Fatalf("did not send correct funds from creator: expected %d, got %d", expectedRefund, delta)
|
2020-07-18 03:07:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// shut down mining
|
2020-08-13 20:37:09 +00:00
|
|
|
bm.Stop()
|
2020-07-18 03:07:02 +00:00
|
|
|
}
|
|
|
|
|
2020-08-13 20:37:09 +00:00
|
|
|
func waitForBlocks(ctx context.Context, t *testing.T, bm *BlockMiner, paymentReceiver TestNode, receiverAddr address.Address, count int) {
|
2020-08-04 21:27:54 +00:00
|
|
|
// We need to add null blocks in batches, if we add too many the chain can't sync
|
|
|
|
batchSize := 60
|
|
|
|
for i := 0; i < count; i += batchSize {
|
|
|
|
size := batchSize
|
|
|
|
if i > count {
|
|
|
|
size = count - i
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a batch of null blocks
|
|
|
|
atomic.StoreInt64(&bm.nulls, int64(size-1))
|
|
|
|
|
|
|
|
// Add a real block
|
|
|
|
m, err := paymentReceiver.MpoolPushMessage(ctx, &types.Message{
|
2020-10-08 01:09:33 +00:00
|
|
|
To: builtin.BurntFundsActorAddr,
|
2020-08-06 21:08:42 +00:00
|
|
|
From: receiverAddr,
|
|
|
|
Value: types.NewInt(0),
|
2020-08-12 20:17:21 +00:00
|
|
|
}, nil)
|
2020-08-04 21:27:54 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2021-04-05 19:34:03 +00:00
|
|
|
_, err = paymentReceiver.StateWaitMsg(ctx, m.Cid(), 1, api.LookbackNoLimit, true)
|
2020-08-04 21:27:54 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 17:55:31 +00:00
|
|
|
func waitForMessage(ctx context.Context, t *testing.T, paymentCreator TestNode, msgCid cid.Cid, duration time.Duration, desc string) *api.MsgLookup {
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, duration)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
fmt.Println("Waiting for", desc)
|
2021-04-05 19:34:03 +00:00
|
|
|
res, err := paymentCreator.StateWaitMsg(ctx, msgCid, 1, api.LookbackNoLimit, true)
|
2020-07-22 17:55:31 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error waiting for", desc, err)
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if res.Receipt.ExitCode != 0 {
|
2020-07-22 20:15:57 +00:00
|
|
|
t.Fatalf("did not successfully send %s", desc)
|
2020-07-22 17:55:31 +00:00
|
|
|
}
|
|
|
|
fmt.Println("Confirmed", desc)
|
|
|
|
return res
|
|
|
|
}
|