neoneo-go/pkg/core/native/nativenames_test.go

22 lines
589 B
Go
Raw Normal View History

2021-03-12 10:04:41 +00:00
package native
import (
"fmt"
"testing"
"github.com/nspcc-dev/neo-go/pkg/config"
2021-03-12 10:04:41 +00:00
"github.com/nspcc-dev/neo-go/pkg/core/native/nativenames"
"github.com/stretchr/testify/require"
)
func TestNativenamesIsValid(t *testing.T) {
// test that all native names has been added to IsValid
cfg := config.ProtocolConfiguration{P2PSigExtensions: true}
contracts := NewContracts(cfg)
2021-03-12 10:04:41 +00:00
for _, c := range contracts.Contracts {
require.True(t, nativenames.IsValid(c.Metadata().Name), fmt.Errorf("add %s to nativenames.IsValid(...)", c))
}
require.False(t, nativenames.IsValid("unknown"))
2021-03-12 10:04:41 +00:00
}