2022-08-23 17:04:40 +00:00
|
|
|
package keeper_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
|
|
|
"github.com/kava-labs/kava/x/evmutil/testutil"
|
|
|
|
"github.com/kava-labs/kava/x/evmutil/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ERC20TestSuite struct {
|
|
|
|
testutil.Suite
|
|
|
|
|
|
|
|
contractAddr types.InternalEVMAddress
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestERC20TestSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(ERC20TestSuite))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *ERC20TestSuite) SetupTest() {
|
|
|
|
suite.Suite.SetupTest()
|
|
|
|
suite.contractAddr = suite.DeployERC20()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *ERC20TestSuite) TestERC20QueryBalanceOf_Empty() {
|
|
|
|
bal, err := suite.Keeper.QueryERC20BalanceOf(
|
|
|
|
suite.Ctx,
|
|
|
|
suite.contractAddr,
|
|
|
|
suite.Key1Addr,
|
|
|
|
)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().True(bal.Cmp(big.NewInt(0)) == 0, "balance should be 0")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *ERC20TestSuite) TestERC20QueryBalanceOf_NonEmpty() {
|
|
|
|
// Mint some tokens for the address
|
|
|
|
err := suite.Keeper.MintERC20(
|
|
|
|
suite.Ctx,
|
|
|
|
suite.contractAddr,
|
|
|
|
suite.Key1Addr,
|
|
|
|
big.NewInt(10),
|
|
|
|
)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
|
|
|
bal, err := suite.Keeper.QueryERC20BalanceOf(
|
|
|
|
suite.Ctx,
|
|
|
|
suite.contractAddr,
|
|
|
|
suite.Key1Addr,
|
|
|
|
)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().Equal(big.NewInt(10), bal, "balance should be 10")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *ERC20TestSuite) TestERC20Mint() {
|
|
|
|
contractAddr := suite.DeployERC20()
|
|
|
|
|
|
|
|
// We can't test mint by module account like the Unauthorized test as we
|
|
|
|
// cannot sign as the module account. Instead, we test the keeper method for
|
|
|
|
// minting.
|
|
|
|
|
|
|
|
receiver := common.BytesToAddress(suite.Key2.PubKey().Address())
|
|
|
|
amount := big.NewInt(1234)
|
|
|
|
err := suite.App.GetEvmutilKeeper().MintERC20(suite.Ctx, contractAddr, types.NewInternalEVMAddress(receiver), amount)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
|
|
|
// Query ERC20.balanceOf()
|
|
|
|
addr := common.BytesToAddress(suite.Key1.PubKey().Address())
|
|
|
|
res, err := suite.QueryContract(
|
|
|
|
types.ERC20MintableBurnableContract.ABI,
|
|
|
|
addr,
|
|
|
|
suite.Key1,
|
|
|
|
contractAddr,
|
|
|
|
"balanceOf",
|
|
|
|
receiver,
|
|
|
|
)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().Len(res, 1)
|
|
|
|
|
|
|
|
balance, ok := res[0].(*big.Int)
|
|
|
|
suite.Require().True(ok, "balanceOf should respond with *big.Int")
|
|
|
|
suite.Require().Equal(big.NewInt(1234), balance)
|
|
|
|
}
|
2023-05-23 17:16:00 +00:00
|
|
|
|
|
|
|
func (suite *ERC20TestSuite) TestDeployKavaWrappedNativeCoinERC20Contract() {
|
|
|
|
suite.Run("fails to deploy invalid contract", func() {
|
|
|
|
// empty other fields means this token is invalid.
|
|
|
|
invalidToken := types.AllowedNativeCoinERC20Token{SdkDenom: "nope"}
|
|
|
|
_, err := suite.Keeper.DeployKavaWrappedNativeCoinERC20Contract(suite.Ctx, invalidToken)
|
|
|
|
suite.ErrorContains(err, "token's name cannot be empty")
|
|
|
|
})
|
|
|
|
|
|
|
|
suite.Run("deploys contract with expected metadata & permissions", func() {
|
2023-05-23 18:01:45 +00:00
|
|
|
caller, privKey := testutil.RandomEvmAccount()
|
2023-05-23 17:16:00 +00:00
|
|
|
|
|
|
|
token := types.NewAllowedNativeCoinERC20Token("hard", "EVM HARD", "HARD", 6)
|
|
|
|
addr, err := suite.Keeper.DeployKavaWrappedNativeCoinERC20Contract(suite.Ctx, token)
|
|
|
|
suite.NoError(err)
|
|
|
|
suite.NotNil(addr)
|
|
|
|
|
|
|
|
callContract := func(method string, args ...interface{}) ([]interface{}, error) {
|
|
|
|
return suite.QueryContract(
|
|
|
|
types.ERC20KavaWrappedNativeCoinContract.ABI,
|
|
|
|
caller,
|
|
|
|
privKey,
|
|
|
|
addr,
|
|
|
|
method,
|
|
|
|
args...,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// owner must be the evmutil module account
|
|
|
|
data, err := callContract("owner")
|
|
|
|
suite.NoError(err)
|
|
|
|
suite.Len(data, 1)
|
|
|
|
suite.Equal(types.ModuleEVMAddress, data[0].(common.Address))
|
|
|
|
|
|
|
|
// get name
|
|
|
|
data, err = callContract("name")
|
|
|
|
suite.NoError(err)
|
|
|
|
suite.Len(data, 1)
|
|
|
|
suite.Equal(token.Name, data[0].(string))
|
|
|
|
|
|
|
|
// get symbol
|
|
|
|
data, err = callContract("symbol")
|
|
|
|
suite.NoError(err)
|
|
|
|
suite.Len(data, 1)
|
|
|
|
suite.Equal(token.Symbol, data[0].(string))
|
|
|
|
|
|
|
|
// get decimals
|
|
|
|
data, err = callContract("decimals")
|
|
|
|
suite.NoError(err)
|
|
|
|
suite.Len(data, 1)
|
|
|
|
suite.Equal(token.Decimals, uint32(data[0].(uint8)))
|
|
|
|
|
|
|
|
// should not be able to call mint
|
|
|
|
_, err = callContract("mint", caller, big.NewInt(1))
|
|
|
|
suite.ErrorContains(err, "Ownable: caller is not the owner")
|
|
|
|
|
|
|
|
// should not be able to call burn
|
|
|
|
_, err = callContract("burn", caller, big.NewInt(1))
|
|
|
|
suite.ErrorContains(err, "Ownable: caller is not the owner")
|
|
|
|
})
|
|
|
|
}
|