mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-29 23:33:37 +00:00
73f888f02e
Multiple methods with different parameter count can co-exist.
120 lines
3.3 KiB
Go
120 lines
3.3 KiB
Go
package standard
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func fooMethodBarEvent() *manifest.Manifest {
|
|
return &manifest.Manifest{
|
|
ABI: manifest.ABI{
|
|
Methods: []manifest.Method{
|
|
{
|
|
Name: "foo",
|
|
Parameters: []manifest.Parameter{
|
|
{Type: smartcontract.ByteArrayType},
|
|
{Type: smartcontract.PublicKeyType},
|
|
},
|
|
ReturnType: smartcontract.IntegerType,
|
|
Safe: true,
|
|
},
|
|
},
|
|
Events: []manifest.Event{
|
|
{
|
|
Name: "bar",
|
|
Parameters: []manifest.Parameter{
|
|
{Type: smartcontract.StringType},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func TestComplyMissingMethod(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
m.ABI.GetMethod("foo", -1).Name = "notafoo"
|
|
err := Comply(m, fooMethodBarEvent())
|
|
require.True(t, errors.Is(err, ErrMethodMissing))
|
|
}
|
|
|
|
func TestComplyInvalidReturnType(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
m.ABI.GetMethod("foo", -1).ReturnType = smartcontract.VoidType
|
|
err := Comply(m, fooMethodBarEvent())
|
|
require.True(t, errors.Is(err, ErrInvalidReturnType))
|
|
}
|
|
|
|
func TestComplyMethodParameterCount(t *testing.T) {
|
|
t.Run("Method", func(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
f := m.ABI.GetMethod("foo", -1)
|
|
f.Parameters = append(f.Parameters, manifest.Parameter{Type: smartcontract.BoolType})
|
|
err := Comply(m, fooMethodBarEvent())
|
|
require.True(t, errors.Is(err, ErrMethodMissing))
|
|
})
|
|
t.Run("Event", func(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
ev := m.ABI.GetEvent("bar")
|
|
ev.Parameters = append(ev.Parameters[:0])
|
|
err := Comply(m, fooMethodBarEvent())
|
|
require.True(t, errors.Is(err, ErrInvalidParameterCount))
|
|
})
|
|
}
|
|
|
|
func TestComplyParameterType(t *testing.T) {
|
|
t.Run("Method", func(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
m.ABI.GetMethod("foo", -1).Parameters[0].Type = smartcontract.InteropInterfaceType
|
|
err := Comply(m, fooMethodBarEvent())
|
|
require.True(t, errors.Is(err, ErrInvalidParameterType))
|
|
})
|
|
t.Run("Event", func(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
m.ABI.GetEvent("bar").Parameters[0].Type = smartcontract.InteropInterfaceType
|
|
err := Comply(m, fooMethodBarEvent())
|
|
require.True(t, errors.Is(err, ErrInvalidParameterType))
|
|
})
|
|
}
|
|
|
|
func TestMissingEvent(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
m.ABI.GetEvent("bar").Name = "notabar"
|
|
err := Comply(m, fooMethodBarEvent())
|
|
require.True(t, errors.Is(err, ErrEventMissing))
|
|
}
|
|
|
|
func TestSafeFlag(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
m.ABI.GetMethod("foo", -1).Safe = false
|
|
err := Comply(m, fooMethodBarEvent())
|
|
require.True(t, errors.Is(err, ErrSafeMethodMismatch))
|
|
}
|
|
|
|
func TestComplyValid(t *testing.T) {
|
|
m := fooMethodBarEvent()
|
|
m.ABI.Methods = append(m.ABI.Methods, manifest.Method{
|
|
Name: "newmethod",
|
|
Offset: 123,
|
|
ReturnType: smartcontract.ByteArrayType,
|
|
})
|
|
m.ABI.Events = append(m.ABI.Events, manifest.Event{
|
|
Name: "otherevent",
|
|
Parameters: []manifest.Parameter{{
|
|
Name: "names do not matter",
|
|
Type: smartcontract.IntegerType,
|
|
}},
|
|
})
|
|
require.NoError(t, Comply(m, fooMethodBarEvent()))
|
|
}
|
|
|
|
func TestCheck(t *testing.T) {
|
|
m := manifest.NewManifest("Test")
|
|
require.Error(t, Check(m, manifest.NEP17StandardName))
|
|
|
|
require.NoError(t, Check(nep17, manifest.NEP17StandardName))
|
|
}
|