-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds tests for custom abi fns (#577)
Co-authored-by: aaronbuchwald <[email protected]>
- Loading branch information
1 parent
dbfbb98
commit a2d9bd7
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// (c) 2023, Ava Labs, Inc. All rights reserved. | ||
// See the file LICENSE for licensing terms. | ||
|
||
package abi | ||
|
||
import ( | ||
"bytes" | ||
"math/big" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/ethereum/go-ethereum/common" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
// Note: This file contains tests in addition to those found in go-ethereum. | ||
|
||
const TEST_ABI = `[{"type":"function","name":"receive","inputs":[{"name":"sender","type":"address"},{"name":"amount","type":"uint256"},{"name":"memo","type":"bytes"}],"outputs":[{"internalType":"bool","name":"isAllowed","type":"bool"}]}]` | ||
|
||
func TestUnpackInputIntoInterface(t *testing.T) { | ||
abi, err := JSON(strings.NewReader(TEST_ABI)) | ||
require.NoError(t, err) | ||
|
||
type inputType struct { | ||
Sender common.Address | ||
Amount *big.Int | ||
Memo []byte | ||
} | ||
input := inputType{ | ||
Sender: common.HexToAddress("0x02"), | ||
Amount: big.NewInt(100), | ||
Memo: []byte("hello"), | ||
} | ||
data, err := abi.Pack("receive", input.Sender, input.Amount, input.Memo) | ||
require.NoError(t, err) | ||
|
||
// Unpack into interface | ||
var v inputType | ||
err = abi.UnpackInputIntoInterface(&v, "receive", data[4:]) // skips 4 byte selector | ||
require.NoError(t, err) | ||
|
||
// Verify unpacked values match input | ||
require.Equal(t, v.Amount, input.Amount) | ||
require.EqualValues(t, v.Amount, input.Amount) | ||
require.True(t, bytes.Equal(v.Memo, input.Memo)) | ||
} | ||
|
||
func TestPackOutput(t *testing.T) { | ||
abi, err := JSON(strings.NewReader(TEST_ABI)) | ||
require.NoError(t, err) | ||
|
||
bytes, err := abi.PackOutput("receive", true) | ||
require.NoError(t, err) | ||
|
||
vals, err := abi.Methods["receive"].Outputs.Unpack(bytes) | ||
require.NoError(t, err) | ||
|
||
require.Len(t, vals, 1) | ||
require.True(t, vals[0].(bool)) | ||
} |