2020-09-23 16:28:11 +00:00
|
|
|
package messagesigner
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
|
2020-10-05 12:17:40 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2020-09-23 16:28:11 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/wallet"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
|
|
|
ds_sync "github.com/ipfs/go-datastore/sync"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/ipfs/go-datastore"
|
|
|
|
)
|
|
|
|
|
|
|
|
type mockMpool struct {
|
|
|
|
lk sync.RWMutex
|
|
|
|
nonces map[address.Address]uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
func newMockMpool() *mockMpool {
|
|
|
|
return &mockMpool{nonces: make(map[address.Address]uint64)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mp *mockMpool) setNonce(addr address.Address, nonce uint64) {
|
|
|
|
mp.lk.Lock()
|
|
|
|
defer mp.lk.Unlock()
|
|
|
|
|
|
|
|
mp.nonces[addr] = nonce
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mp *mockMpool) GetNonce(addr address.Address) (uint64, error) {
|
|
|
|
mp.lk.RLock()
|
|
|
|
defer mp.lk.RUnlock()
|
|
|
|
|
|
|
|
return mp.nonces[addr], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMessageSignerSignMessage(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
w, _ := wallet.NewWallet(wallet.NewMemKeyStore())
|
2020-10-11 18:12:01 +00:00
|
|
|
from1, err := w.WalletNew(ctx, types.KTSecp256k1)
|
2020-09-23 16:28:11 +00:00
|
|
|
require.NoError(t, err)
|
2020-10-11 18:12:01 +00:00
|
|
|
from2, err := w.WalletNew(ctx, types.KTSecp256k1)
|
2020-09-23 16:28:11 +00:00
|
|
|
require.NoError(t, err)
|
2020-10-11 18:12:01 +00:00
|
|
|
to1, err := w.WalletNew(ctx, types.KTSecp256k1)
|
2020-09-23 16:28:11 +00:00
|
|
|
require.NoError(t, err)
|
2020-10-11 18:12:01 +00:00
|
|
|
to2, err := w.WalletNew(ctx, types.KTSecp256k1)
|
2020-09-23 16:28:11 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
type msgSpec struct {
|
|
|
|
msg *types.Message
|
|
|
|
mpoolNonce [1]uint64
|
|
|
|
expNonce uint64
|
2020-10-05 12:17:40 +00:00
|
|
|
cbErr error
|
2020-09-23 16:28:11 +00:00
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
msgs []msgSpec
|
|
|
|
}{{
|
|
|
|
// No nonce yet in datastore
|
|
|
|
name: "no nonce yet",
|
|
|
|
msgs: []msgSpec{{
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
expNonce: 0,
|
|
|
|
}},
|
|
|
|
}, {
|
|
|
|
// Get nonce value of zero from mpool
|
|
|
|
name: "mpool nonce zero",
|
|
|
|
msgs: []msgSpec{{
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
mpoolNonce: [1]uint64{0},
|
|
|
|
expNonce: 0,
|
|
|
|
}},
|
|
|
|
}, {
|
|
|
|
// Get non-zero nonce value from mpool
|
|
|
|
name: "mpool nonce set",
|
|
|
|
msgs: []msgSpec{{
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
mpoolNonce: [1]uint64{5},
|
|
|
|
expNonce: 5,
|
|
|
|
}, {
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
2020-09-29 10:19:04 +00:00
|
|
|
// Should adjust datastore nonce because mpool nonce is higher
|
2020-09-23 16:28:11 +00:00
|
|
|
mpoolNonce: [1]uint64{10},
|
2020-09-29 10:19:04 +00:00
|
|
|
expNonce: 10,
|
2020-09-23 16:28:11 +00:00
|
|
|
}},
|
|
|
|
}, {
|
|
|
|
// Nonce should increment independently for each address
|
|
|
|
name: "nonce increments per address",
|
|
|
|
msgs: []msgSpec{{
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
expNonce: 0,
|
|
|
|
}, {
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
expNonce: 1,
|
|
|
|
}, {
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to2,
|
|
|
|
From: from2,
|
|
|
|
},
|
|
|
|
mpoolNonce: [1]uint64{5},
|
|
|
|
expNonce: 5,
|
|
|
|
}, {
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to2,
|
|
|
|
From: from2,
|
|
|
|
},
|
|
|
|
expNonce: 6,
|
|
|
|
}, {
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
expNonce: 2,
|
|
|
|
}},
|
2020-10-05 12:17:40 +00:00
|
|
|
}, {
|
|
|
|
name: "recover from callback error",
|
|
|
|
msgs: []msgSpec{{
|
|
|
|
// No nonce yet in datastore
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
expNonce: 0,
|
|
|
|
}, {
|
|
|
|
// Increment nonce
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
expNonce: 1,
|
|
|
|
}, {
|
|
|
|
// Callback returns error
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
cbErr: xerrors.Errorf("err"),
|
|
|
|
}, {
|
|
|
|
// Callback successful, should increment nonce in datastore
|
|
|
|
msg: &types.Message{
|
|
|
|
To: to1,
|
|
|
|
From: from1,
|
|
|
|
},
|
|
|
|
expNonce: 2,
|
|
|
|
}},
|
2020-09-23 16:28:11 +00:00
|
|
|
}}
|
|
|
|
for _, tt := range tests {
|
|
|
|
tt := tt
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
mpool := newMockMpool()
|
|
|
|
ds := ds_sync.MutexWrap(datastore.NewMapDatastore())
|
2020-10-07 09:26:15 +00:00
|
|
|
ms := NewMessageSigner(w, mpool, ds)
|
2020-09-23 16:28:11 +00:00
|
|
|
|
|
|
|
for _, m := range tt.msgs {
|
|
|
|
if len(m.mpoolNonce) == 1 {
|
|
|
|
mpool.setNonce(m.msg.From, m.mpoolNonce[0])
|
|
|
|
}
|
2020-10-05 12:17:40 +00:00
|
|
|
merr := m.cbErr
|
|
|
|
smsg, err := ms.SignMessage(ctx, m.msg, func(message *types.SignedMessage) error {
|
|
|
|
return merr
|
|
|
|
})
|
|
|
|
|
|
|
|
if m.cbErr != nil {
|
|
|
|
require.Error(t, err)
|
|
|
|
require.Nil(t, smsg)
|
|
|
|
} else {
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, m.expNonce, smsg.Message.Nonce)
|
|
|
|
}
|
2020-09-23 16:28:11 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|