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