2020-12-15 09:35:10 +00:00
|
|
|
package native
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2021-02-05 09:09:15 +00:00
|
|
|
"unicode"
|
2021-01-15 21:17:31 +00:00
|
|
|
|
2021-07-20 12:54:56 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/config"
|
2021-01-15 21:17:31 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-12-15 09:35:10 +00:00
|
|
|
)
|
|
|
|
|
2021-02-05 09:09:15 +00:00
|
|
|
// "C" and "O" can easily be typed by accident.
|
|
|
|
func TestNamesASCII(t *testing.T) {
|
2021-07-20 12:54:56 +00:00
|
|
|
cfg := config.ProtocolConfiguration{P2PSigExtensions: true}
|
|
|
|
cs := NewContracts(cfg)
|
2021-02-05 09:09:15 +00:00
|
|
|
for _, c := range cs.Contracts {
|
|
|
|
require.True(t, isASCII(c.Metadata().Name))
|
2021-02-15 13:40:44 +00:00
|
|
|
for _, m := range c.Metadata().Methods {
|
|
|
|
require.True(t, isASCII(m.MD.Name))
|
2021-02-05 09:09:15 +00:00
|
|
|
}
|
|
|
|
for _, e := range c.Metadata().Manifest.ABI.Events {
|
|
|
|
require.True(t, isASCII(e.Name))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func isASCII(s string) bool {
|
|
|
|
ok := true
|
|
|
|
for i := 0; i < len(s); i++ {
|
|
|
|
ok = ok && s[i] <= unicode.MaxASCII
|
|
|
|
}
|
|
|
|
return ok
|
|
|
|
}
|