2020-07-18 03:07:02 +00:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"sync/atomic"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-07-22 17:55:31 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
|
2020-07-18 03:07:02 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
|
|
"github.com/filecoin-project/lotus/chain/events"
|
|
|
|
"github.com/filecoin-project/lotus/chain/events/state"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/filecoin-project/lotus/chain/wallet"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi/big"
|
|
|
|
initactor "github.com/filecoin-project/specs-actors/actors/builtin/init"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/paych"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestPaymentChannels(t *testing.T, b APIBuilder, blocktime time.Duration) {
|
|
|
|
_ = os.Setenv("BELLMAN_NO_GPU", "1")
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
n, sn := b(t, 2, oneMiner)
|
|
|
|
|
|
|
|
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
|
|
|
|
bm := newBlockMiner(ctx, t, miner, blocktime)
|
|
|
|
bm.mineBlocks()
|
|
|
|
|
|
|
|
// send some funds to register the receiver
|
|
|
|
receiverAddr, err := paymentReceiver.WalletNew(ctx, wallet.ActSigType("secp256k1"))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2020-07-22 19:30:43 +00:00
|
|
|
sendFunds(ctx, t, paymentCreator, receiverAddr, abi.NewTokenAmount(1e10))
|
2020-07-18 03:07:02 +00:00
|
|
|
|
|
|
|
// setup the payment channel
|
|
|
|
createrAddr, err := paymentCreator.WalletDefaultAddress(ctx)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2020-07-22 20:09:46 +00:00
|
|
|
channelAmt := int64(100000)
|
|
|
|
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
|
|
|
|
|
|
|
res := waitForMessage(ctx, t, paymentCreator, channelInfo.ChannelMessage, time.Second, "channel create")
|
2020-07-18 03:07:02 +00:00
|
|
|
var params initactor.ExecReturn
|
|
|
|
err = params.UnmarshalCBOR(bytes.NewReader(res.Receipt.Return))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
channel := params.RobustAddress
|
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)
|
|
|
|
}
|
|
|
|
vouch2, err := paymentCreator.PaychVoucherCreate(ctx, channel, abi.NewTokenAmount(2000), lane)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
delta1, err := paymentReceiver.PaychVoucherAdd(ctx, channel, vouch1, nil, abi.NewTokenAmount(1000))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !delta1.Equals(abi.NewTokenAmount(1000)) {
|
|
|
|
t.Fatal("voucher didn't have the right amount")
|
|
|
|
}
|
|
|
|
delta2, err := paymentReceiver.PaychVoucherAdd(ctx, channel, vouch2, nil, abi.NewTokenAmount(1000))
|
|
|
|
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-22 18:02:29 +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")
|
|
|
|
}
|
|
|
|
|
2020-07-22 20:09:46 +00:00
|
|
|
creatorPreCollectBalance, err := paymentCreator.WalletBalance(ctx, createrAddr)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
act, err := paymentCreator.StateReadState(ctx, channel, ts.Key())
|
|
|
|
if err != nil {
|
|
|
|
return false, false, err
|
|
|
|
}
|
|
|
|
state := act.State.(paych.State)
|
|
|
|
if state.ToSend.GreaterThanEqual(abi.NewTokenAmount(6000)) {
|
|
|
|
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
|
|
|
|
}, int(build.MessageConfidence)+1, build.SealRandomnessLookbackLimit, func(oldTs, newTs *types.TipSet) (bool, events.StateChange, error) {
|
|
|
|
return preds.OnPaymentChannelActorChanged(channel, preds.OnToSendAmountChanges())(ctx, oldTs.Key(), newTs.Key())
|
|
|
|
})
|
|
|
|
|
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
|
|
|
|
|
|
|
// collect funds (from receiver, though either party can do it)
|
|
|
|
collectMsg, err := paymentReceiver.PaychCollect(ctx, channel)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
res, err = paymentReceiver.StateWaitMsg(ctx, collectMsg, 1)
|
|
|
|
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)
|
|
|
|
// 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
|
|
|
|
bm.stop()
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
res, err := paymentCreator.StateWaitMsg(ctx, msgCid, 1)
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-07-18 03:07:02 +00:00
|
|
|
type blockMiner struct {
|
|
|
|
ctx context.Context
|
|
|
|
t *testing.T
|
|
|
|
miner TestStorageNode
|
|
|
|
blocktime time.Duration
|
|
|
|
mine int64
|
|
|
|
done chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newBlockMiner(ctx context.Context, t *testing.T, miner TestStorageNode, blocktime time.Duration) *blockMiner {
|
|
|
|
return &blockMiner{
|
|
|
|
ctx: ctx,
|
|
|
|
t: t,
|
|
|
|
miner: miner,
|
|
|
|
blocktime: blocktime,
|
|
|
|
mine: int64(1),
|
|
|
|
done: make(chan struct{}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bm *blockMiner) mineBlocks() {
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
go func() {
|
|
|
|
defer close(bm.done)
|
|
|
|
for atomic.LoadInt64(&bm.mine) == 1 {
|
|
|
|
time.Sleep(bm.blocktime)
|
|
|
|
if err := bm.miner.MineOne(bm.ctx, func(bool, error) {}); err != nil {
|
|
|
|
bm.t.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bm *blockMiner) stop() {
|
|
|
|
atomic.AddInt64(&bm.mine, -1)
|
|
|
|
fmt.Println("shutting down mining")
|
|
|
|
<-bm.done
|
|
|
|
}
|
|
|
|
|
|
|
|
func sendFunds(ctx context.Context, t *testing.T, sender TestNode, addr address.Address, amount abi.TokenAmount) {
|
|
|
|
|
|
|
|
senderAddr, err := sender.WalletDefaultAddress(ctx)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := &types.Message{
|
|
|
|
From: senderAddr,
|
|
|
|
To: addr,
|
|
|
|
Value: amount,
|
2020-07-22 17:55:31 +00:00
|
|
|
GasLimit: 0,
|
|
|
|
GasPrice: abi.NewTokenAmount(0),
|
2020-07-18 03:07:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sm, err := sender.MpoolPushMessage(ctx, msg)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
res, err := sender.StateWaitMsg(ctx, sm.Cid(), 1)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if res.Receipt.ExitCode != 0 {
|
|
|
|
t.Fatal("did not successfully send money")
|
|
|
|
}
|
|
|
|
}
|