2023-01-13 19:11:13 +00:00
|
|
|
package itests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-01-17 16:38:40 +00:00
|
|
|
"encoding/binary"
|
2023-01-13 19:11:13 +00:00
|
|
|
"encoding/hex"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
builtintypes "github.com/filecoin-project/go-state-types/builtin"
|
2023-01-17 16:38:40 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/exitcode"
|
2023-01-13 19:11:13 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/manifest"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2023-01-12 04:29:56 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types/ethtypes"
|
2023-01-13 19:11:13 +00:00
|
|
|
"github.com/filecoin-project/lotus/itests/kit"
|
|
|
|
)
|
|
|
|
|
2023-01-17 16:53:28 +00:00
|
|
|
// convert a simple byte array into input data which is a left padded 32 byte array
|
2023-01-12 04:29:56 +00:00
|
|
|
func inputDataFromArray(input []byte) []byte {
|
|
|
|
inputData := make([]byte, 32)
|
|
|
|
copy(inputData[32-len(input):], input[:])
|
|
|
|
return inputData
|
|
|
|
}
|
2023-01-13 19:11:13 +00:00
|
|
|
|
2023-01-17 16:53:28 +00:00
|
|
|
// convert a "from" address into input data which is a left padded 32 byte array
|
|
|
|
func inputDataFromFrom(ctx context.Context, t *testing.T, client *kit.TestFullNode, from address.Address) []byte {
|
2023-01-12 04:29:56 +00:00
|
|
|
fromId, err := client.StateLookupID(ctx, from, types.EmptyTSK)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
senderEthAddr, err := ethtypes.EthAddressFromFilecoinAddress(fromId)
|
|
|
|
require.NoError(t, err)
|
|
|
|
inputData := make([]byte, 32)
|
|
|
|
copy(inputData[32-len(senderEthAddr):], senderEthAddr[:])
|
|
|
|
return inputData
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupFEVMTest(t *testing.T) (context.Context, context.CancelFunc, *kit.TestFullNode) {
|
|
|
|
kit.QuietMiningLogs()
|
2023-01-17 16:38:40 +00:00
|
|
|
blockTime := 5 * time.Millisecond
|
2023-01-13 19:11:13 +00:00
|
|
|
client, _, ens := kit.EnsembleMinimal(t, kit.MockProofs(), kit.ThroughRPC())
|
2023-01-17 16:38:40 +00:00
|
|
|
ens.InterconnectAll().BeginMiningMustPost(blockTime)
|
2023-01-13 19:11:13 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
|
2023-01-12 04:29:56 +00:00
|
|
|
return ctx, cancel, client
|
|
|
|
}
|
2023-01-13 19:11:13 +00:00
|
|
|
|
2023-01-12 04:29:56 +00:00
|
|
|
// TestFEVMBasic does a basic fevm contract installation and invocation
|
|
|
|
func TestFEVMBasic(t *testing.T) {
|
2023-01-13 19:11:13 +00:00
|
|
|
|
2023-01-12 04:29:56 +00:00
|
|
|
ctx, cancel, client := setupFEVMTest(t)
|
|
|
|
defer cancel()
|
2023-01-13 19:11:13 +00:00
|
|
|
|
2023-01-12 04:29:56 +00:00
|
|
|
filename := "contracts/SimpleCoin.hex"
|
|
|
|
// install contract
|
|
|
|
fromAddr, idAddr := client.EVM().DeployContractFromFilename(ctx, filename)
|
2023-01-13 19:11:13 +00:00
|
|
|
|
|
|
|
// invoke the contract with owner
|
|
|
|
{
|
2023-01-17 16:53:28 +00:00
|
|
|
inputData := inputDataFromFrom(ctx, t, client, fromAddr)
|
2023-01-12 04:29:56 +00:00
|
|
|
result := client.EVM().InvokeContractByFuncName(ctx, fromAddr, idAddr, "getBalance(address)", inputData)
|
2023-01-13 19:11:13 +00:00
|
|
|
|
|
|
|
expectedResult, err := hex.DecodeString("0000000000000000000000000000000000000000000000000000000000002710")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, result, expectedResult)
|
|
|
|
}
|
|
|
|
|
|
|
|
// invoke the contract with non owner
|
|
|
|
{
|
2023-01-17 16:53:28 +00:00
|
|
|
inputData := inputDataFromFrom(ctx, t, client, fromAddr)
|
2023-01-16 17:06:25 +00:00
|
|
|
inputData[31]++ // change the pub address to one that has 0 balance by incrementing the last byte of the address
|
2023-01-12 04:29:56 +00:00
|
|
|
result := client.EVM().InvokeContractByFuncName(ctx, fromAddr, idAddr, "getBalance(address)", inputData)
|
2023-01-13 19:11:13 +00:00
|
|
|
|
|
|
|
expectedResult, err := hex.DecodeString("0000000000000000000000000000000000000000000000000000000000000000")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, result, expectedResult)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestFEVMETH0 tests that the ETH0 actor is in genesis
|
|
|
|
func TestFEVMETH0(t *testing.T) {
|
2023-01-12 04:29:56 +00:00
|
|
|
ctx, cancel, client := setupFEVMTest(t)
|
2023-01-13 19:11:13 +00:00
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
eth0id, err := address.NewIDAddress(1001)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
client.AssertActorType(ctx, eth0id, manifest.EthAccountKey)
|
|
|
|
|
|
|
|
act, err := client.StateGetActor(ctx, eth0id, types.EmptyTSK)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
eth0Addr, err := address.NewDelegatedAddress(builtintypes.EthereumAddressManagerActorID, make([]byte, 20))
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, *act.Address, eth0Addr)
|
|
|
|
}
|
2023-01-12 04:29:56 +00:00
|
|
|
|
|
|
|
// TestFEVMDelegateCall deploys two contracts and makes a delegate call transaction
|
|
|
|
func TestFEVMDelegateCall(t *testing.T) {
|
|
|
|
|
|
|
|
ctx, cancel, client := setupFEVMTest(t)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
//install contract Actor
|
|
|
|
filenameActor := "contracts/DelegatecallActor.hex"
|
|
|
|
fromAddr, actorAddr := client.EVM().DeployContractFromFilename(ctx, filenameActor)
|
|
|
|
//install contract Storage
|
|
|
|
filenameStorage := "contracts/DelegatecallStorage.hex"
|
|
|
|
fromAddrStorage, storageAddr := client.EVM().DeployContractFromFilename(ctx, filenameStorage)
|
|
|
|
require.Equal(t, fromAddr, fromAddrStorage)
|
|
|
|
|
|
|
|
//call Contract Storage which makes a delegatecall to contract Actor
|
|
|
|
//this contract call sets the "counter" variable to 7, from default value 0
|
|
|
|
|
2023-01-17 16:53:28 +00:00
|
|
|
inputDataContract := inputDataFromFrom(ctx, t, client, actorAddr)
|
2023-01-12 04:29:56 +00:00
|
|
|
inputDataValue := inputDataFromArray([]byte{7})
|
|
|
|
inputData := append(inputDataContract, inputDataValue...)
|
|
|
|
|
|
|
|
//verify that the returned value of the call to setvars is 7
|
|
|
|
result := client.EVM().InvokeContractByFuncName(ctx, fromAddr, storageAddr, "setVars(address,uint256)", inputData)
|
|
|
|
expectedResult, err := hex.DecodeString("0000000000000000000000000000000000000000000000000000000000000007")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, result, expectedResult)
|
|
|
|
|
|
|
|
//test the value is 7 via calling the getter
|
|
|
|
result = client.EVM().InvokeContractByFuncName(ctx, fromAddr, storageAddr, "getCounter()", []byte{})
|
|
|
|
require.Equal(t, result, expectedResult)
|
|
|
|
|
|
|
|
//test the value is 0 via calling the getter on the Actor contract
|
|
|
|
result = client.EVM().InvokeContractByFuncName(ctx, fromAddr, actorAddr, "getCounter()", []byte{})
|
|
|
|
expectedResultActor, err := hex.DecodeString("0000000000000000000000000000000000000000000000000000000000000000")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, result, expectedResultActor)
|
|
|
|
}
|
2023-01-19 18:00:52 +00:00
|
|
|
|
|
|
|
func TestEVMRpcDisable(t *testing.T) {
|
|
|
|
client, _, _ := kit.EnsembleMinimal(t, kit.MockProofs(), kit.ThroughRPC(), kit.DisableEthRPC())
|
|
|
|
|
|
|
|
_, err := client.EthBlockNumber(context.Background())
|
2023-01-19 20:35:19 +00:00
|
|
|
require.ErrorContains(t, err, "module disabled, enable with Fevm.EnableEthRPC")
|
2023-01-19 18:00:52 +00:00
|
|
|
}
|
2023-01-17 16:38:40 +00:00
|
|
|
|
|
|
|
// TestFEVMRecursiveFuncCall deploys a contract and makes a recursive function calls
|
|
|
|
func TestFEVMRecursiveFuncCall(t *testing.T) {
|
|
|
|
ctx, cancel, client := setupFEVMTest(t)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
//install contract Actor
|
|
|
|
filenameActor := "contracts/StackFunc.hex"
|
|
|
|
fromAddr, actorAddr := client.EVM().DeployContractFromFilename(ctx, filenameActor)
|
|
|
|
|
2023-01-17 16:38:40 +00:00
|
|
|
testN := func(n int, ex exitcode.ExitCode) func(t *testing.T) {
|
2023-01-17 16:38:40 +00:00
|
|
|
return func(t *testing.T) {
|
|
|
|
inputData := make([]byte, 32)
|
|
|
|
binary.BigEndian.PutUint64(inputData[24:], uint64(n))
|
|
|
|
|
2023-01-17 16:38:40 +00:00
|
|
|
client.EVM().InvokeContractByFuncNameExpectExit(ctx, fromAddr, actorAddr, "exec1(uint256)", inputData, ex)
|
2023-01-17 16:38:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-17 16:38:40 +00:00
|
|
|
t.Run("n=0", testN(0, exitcode.Ok))
|
|
|
|
t.Run("n=1", testN(1, exitcode.Ok))
|
|
|
|
t.Run("n=20", testN(20, exitcode.Ok))
|
|
|
|
t.Run("n=200", testN(200, exitcode.Ok))
|
|
|
|
t.Run("n=507", testN(507, exitcode.Ok))
|
|
|
|
t.Run("n=508", testN(508, exitcode.ExitCode(23))) // 23 means stack overflow
|
2023-01-17 16:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TestFEVMRecursiveActorCall deploys a contract and makes a recursive actor calls
|
|
|
|
func TestFEVMRecursiveActorCall(t *testing.T) {
|
|
|
|
ctx, cancel, client := setupFEVMTest(t)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
//install contract Actor
|
|
|
|
filenameActor := "contracts/RecCall.hex"
|
|
|
|
fromAddr, actorAddr := client.EVM().DeployContractFromFilename(ctx, filenameActor)
|
|
|
|
|
|
|
|
testN := func(n, r int, ex exitcode.ExitCode) func(t *testing.T) {
|
|
|
|
return func(t *testing.T) {
|
|
|
|
inputData := make([]byte, 32*3)
|
|
|
|
binary.BigEndian.PutUint64(inputData[24:], uint64(n))
|
|
|
|
binary.BigEndian.PutUint64(inputData[32+24:], uint64(n))
|
|
|
|
binary.BigEndian.PutUint64(inputData[32+32+24:], uint64(r))
|
|
|
|
|
|
|
|
client.EVM().InvokeContractByFuncNameExpectExit(ctx, fromAddr, actorAddr, "exec1(uint256,uint256,uint256)", inputData, ex)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("n=0,r=1", testN(0, 1, exitcode.Ok))
|
|
|
|
t.Run("n=1,r=1", testN(1, 1, exitcode.Ok))
|
|
|
|
t.Run("n=20,r=1", testN(20, 1, exitcode.Ok))
|
|
|
|
t.Run("n=200,r=1", testN(200, 1, exitcode.Ok))
|
|
|
|
t.Run("n=251,r=1", testN(251, 1, exitcode.Ok))
|
|
|
|
|
|
|
|
t.Run("n=252,r=1-fails", testN(252, 1, exitcode.ExitCode(23))) // 23 means stack overflow
|
|
|
|
|
|
|
|
t.Run("n=0,r=10", testN(0, 10, exitcode.Ok))
|
|
|
|
t.Run("n=1,r=10", testN(1, 10, exitcode.Ok))
|
|
|
|
t.Run("n=20,r=10", testN(20, 10, exitcode.Ok))
|
|
|
|
t.Run("n=200,r=10", testN(200, 10, exitcode.Ok))
|
|
|
|
t.Run("n=251,r=10", testN(251, 10, exitcode.Ok))
|
|
|
|
|
|
|
|
t.Run("n=252,r=10-fails", testN(252, 10, exitcode.ExitCode(23)))
|
|
|
|
|
|
|
|
t.Run("n=0,r=32", testN(0, 32, exitcode.Ok))
|
|
|
|
t.Run("n=1,r=32", testN(1, 32, exitcode.Ok))
|
|
|
|
t.Run("n=20,r=32", testN(20, 32, exitcode.Ok))
|
|
|
|
t.Run("n=200,r=32", testN(200, 32, exitcode.Ok))
|
|
|
|
t.Run("n=251,r=32", testN(251, 32, exitcode.Ok))
|
|
|
|
|
|
|
|
t.Run("n=0,r=254", testN(0, 254, exitcode.Ok))
|
|
|
|
t.Run("n=251,r=170", testN(251, 170, exitcode.Ok))
|
|
|
|
|
|
|
|
t.Run("n=0,r=255-fails", testN(0, 255, exitcode.ExitCode(33))) // 33 means transaction reverted
|
|
|
|
t.Run("n=251,r=171-fails", testN(251, 171, exitcode.ExitCode(33)))
|
|
|
|
}
|