2021-01-22 12:12:09 +00:00
|
|
|
package native
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-03-24 10:16:38 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native/nnsrecords"
|
2021-02-19 08:56:15 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest/standard"
|
2021-01-22 12:12:09 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
// The specification is following C# code:
|
2021-05-12 20:17:03 +00:00
|
|
|
// string domain = string.Join('.', name.Split('.')[^2..]);
|
2021-01-22 12:12:09 +00:00
|
|
|
func TestParseDomain(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
domain string
|
|
|
|
}{
|
|
|
|
{"sim.pl.e", "pl.e"},
|
|
|
|
{"some.long.d.o.m.a.i.n", "i.n"},
|
|
|
|
{"t.wo", "t.wo"},
|
|
|
|
{".dot", ".dot"},
|
|
|
|
{".d.ot", "d.ot"},
|
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
dom, ok := domainFromString(tc.name)
|
|
|
|
require.True(t, ok)
|
|
|
|
require.Equal(t, tc.domain, dom)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
_, ok := domainFromString("nodots")
|
|
|
|
require.False(t, ok)
|
|
|
|
}
|
2021-02-17 07:42:00 +00:00
|
|
|
|
|
|
|
func TestNameService_CheckName(t *testing.T) {
|
|
|
|
// tests are got from the C# implementation
|
|
|
|
testCases := []struct {
|
2021-03-24 10:16:38 +00:00
|
|
|
Type nnsrecords.Type
|
2021-02-17 07:42:00 +00:00
|
|
|
Name string
|
|
|
|
ShouldFail bool
|
|
|
|
}{
|
2021-03-24 10:16:38 +00:00
|
|
|
{Type: nnsrecords.A, Name: "0.0.0.0"},
|
|
|
|
{Type: nnsrecords.A, Name: "10.10.10.10"},
|
|
|
|
{Type: nnsrecords.A, Name: "255.255.255.255"},
|
|
|
|
{Type: nnsrecords.A, Name: "192.168.1.1"},
|
|
|
|
{Type: nnsrecords.A, Name: "1a", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "256.0.0.0", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "01.01.01.01", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "00.0.0.0", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "0.0.0.-1", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "0.0.0.0.1", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "11111111.11111111.11111111.11111111", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "11111111.11111111.11111111.11111111", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "ff.ff.ff.ff", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "0.0.256", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "0.0.0", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "0.257", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "1.1", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "257", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.A, Name: "1", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "2001:db8::8:800:200c:417a"},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "ff01::101"},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "::1"},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "::"},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "2001:db8:0:0:8:800:200c:417a"},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "ff01:0:0:0:0:0:0:101"},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "0:0:0:0:0:0:0:1"},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "0:0:0:0:0:0:0:0"},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "2001:DB8::8:800:200C:417A", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "FF01::101", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "fF01::101", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "2001:DB8:0:0:8:800:200C:417A", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "FF01:0:0:0:0:0:0:101", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "::ffff:1.01.1.01", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "2001:DB8:0:0:8:800:200C:4Z", ShouldFail: true},
|
|
|
|
{Type: nnsrecords.AAAA, Name: "::13.1.68.3", ShouldFail: true},
|
2021-02-17 07:42:00 +00:00
|
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
|
|
|
if testCase.ShouldFail {
|
|
|
|
require.Panics(t, func() {
|
|
|
|
checkName(testCase.Type, testCase.Name)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
require.NotPanics(t, func() {
|
|
|
|
checkName(testCase.Type, testCase.Name)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-19 08:56:15 +00:00
|
|
|
|
|
|
|
func TestNameService_NEP11(t *testing.T) {
|
|
|
|
ns := newNameService()
|
|
|
|
require.NoError(t, standard.Check(&ns.Manifest, manifest.NEP11StandardName))
|
|
|
|
}
|