2020-06-24 13:47:57 +00:00
|
|
|
package nef
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2020-11-23 11:09:00 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/internal/testserdes"
|
2020-06-24 13:47:57 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/hash"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestEncodeDecodeBinary(t *testing.T) {
|
|
|
|
script := []byte{12, 32, 84, 35, 14}
|
|
|
|
expected := &File{
|
|
|
|
Header: Header{
|
|
|
|
Magic: Magic,
|
|
|
|
Compiler: "the best compiler ever",
|
|
|
|
Version: Version{
|
|
|
|
Major: 1,
|
|
|
|
Minor: 2,
|
|
|
|
Build: 3,
|
|
|
|
Revision: 4,
|
|
|
|
},
|
|
|
|
ScriptHash: hash.Hash160(script),
|
|
|
|
},
|
|
|
|
Script: script,
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("invalid Magic", func(t *testing.T) {
|
|
|
|
expected.Header.Magic = 123
|
|
|
|
checkDecodeError(t, expected)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("invalid checksum", func(t *testing.T) {
|
|
|
|
expected.Header.Magic = Magic
|
|
|
|
expected.Checksum = 123
|
|
|
|
checkDecodeError(t, expected)
|
|
|
|
})
|
|
|
|
|
2020-11-18 09:57:44 +00:00
|
|
|
t.Run("zero-length script", func(t *testing.T) {
|
|
|
|
expected.Script = make([]byte, 0)
|
|
|
|
expected.Header.ScriptHash = hash.Hash160(expected.Script)
|
|
|
|
expected.Checksum = expected.Header.CalculateChecksum()
|
|
|
|
checkDecodeError(t, expected)
|
|
|
|
})
|
|
|
|
|
2020-06-24 13:47:57 +00:00
|
|
|
t.Run("invalid script length", func(t *testing.T) {
|
|
|
|
newScript := make([]byte, MaxScriptLength+1)
|
|
|
|
expected.Script = newScript
|
|
|
|
expected.Header.ScriptHash = hash.Hash160(newScript)
|
|
|
|
expected.Checksum = expected.Header.CalculateChecksum()
|
|
|
|
checkDecodeError(t, expected)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("invalid scripthash", func(t *testing.T) {
|
|
|
|
expected.Script = script
|
|
|
|
expected.Header.ScriptHash = util.Uint160{1, 2, 3}
|
|
|
|
expected.Checksum = expected.Header.CalculateChecksum()
|
|
|
|
checkDecodeError(t, expected)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("positive", func(t *testing.T) {
|
|
|
|
expected.Script = script
|
|
|
|
expected.Header.ScriptHash = hash.Hash160(script)
|
|
|
|
expected.Checksum = expected.Header.CalculateChecksum()
|
|
|
|
expected.Header.Magic = Magic
|
|
|
|
testserdes.EncodeDecodeBinary(t, expected, &File{})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkDecodeError(t *testing.T, expected *File) {
|
|
|
|
bytes, err := testserdes.EncodeBinary(expected)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Error(t, testserdes.DecodeBinary(bytes, &File{}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBytesFromBytes(t *testing.T) {
|
|
|
|
script := []byte{12, 32, 84, 35, 14}
|
|
|
|
expected := File{
|
|
|
|
Header: Header{
|
|
|
|
Magic: Magic,
|
|
|
|
Compiler: "the best compiler ever",
|
|
|
|
Version: Version{
|
|
|
|
Major: 1,
|
|
|
|
Minor: 2,
|
|
|
|
Build: 3,
|
|
|
|
Revision: 4,
|
|
|
|
},
|
|
|
|
ScriptHash: hash.Hash160(script),
|
|
|
|
},
|
|
|
|
Script: script,
|
|
|
|
}
|
|
|
|
expected.Checksum = expected.Header.CalculateChecksum()
|
|
|
|
|
|
|
|
bytes, err := expected.Bytes()
|
|
|
|
require.NoError(t, err)
|
|
|
|
actual, err := FileFromBytes(bytes)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetVersion(t *testing.T) {
|
2020-11-12 14:08:54 +00:00
|
|
|
testCases := map[string]struct {
|
|
|
|
input string
|
|
|
|
fails bool
|
|
|
|
expected Version
|
|
|
|
}{
|
|
|
|
"major only": {
|
|
|
|
input: "1",
|
|
|
|
fails: true,
|
|
|
|
},
|
|
|
|
"major and minor only": {
|
|
|
|
input: "1.1",
|
|
|
|
fails: true,
|
|
|
|
},
|
|
|
|
"major, minor and revision only": {
|
|
|
|
input: "1.1.1",
|
|
|
|
expected: Version{
|
|
|
|
Major: 1,
|
|
|
|
Minor: 1,
|
|
|
|
Build: 1,
|
|
|
|
Revision: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"full version": {
|
|
|
|
input: "1.1.1.1",
|
|
|
|
expected: Version{
|
|
|
|
Major: 1,
|
|
|
|
Minor: 1,
|
|
|
|
Build: 1,
|
|
|
|
Revision: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"dashed, without revision": {
|
|
|
|
input: "1-pre.2-pre.3-pre",
|
|
|
|
expected: Version{
|
|
|
|
Major: 1,
|
|
|
|
Minor: 2,
|
|
|
|
Build: 3,
|
|
|
|
Revision: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"dashed, full version": {
|
|
|
|
input: "1-pre.2-pre.3-pre.4-pre",
|
|
|
|
expected: Version{
|
|
|
|
Major: 1,
|
|
|
|
Minor: 2,
|
|
|
|
Build: 3,
|
|
|
|
Revision: 4,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"dashed build": {
|
|
|
|
input: "1.2.3-pre.4",
|
|
|
|
expected: Version{
|
|
|
|
Major: 1,
|
|
|
|
Minor: 2,
|
|
|
|
Build: 3,
|
|
|
|
Revision: 4,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"extra versions": {
|
|
|
|
input: "1.2.3.4.5",
|
|
|
|
fails: true,
|
|
|
|
},
|
2020-06-24 13:47:57 +00:00
|
|
|
}
|
2020-11-12 14:08:54 +00:00
|
|
|
for name, test := range testCases {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
actual, err := GetVersion(test.input)
|
|
|
|
if test.fails {
|
|
|
|
require.NotNil(t, err)
|
|
|
|
} else {
|
|
|
|
require.Equal(t, test.expected, actual)
|
|
|
|
}
|
|
|
|
})
|
2020-06-24 13:47:57 +00:00
|
|
|
}
|
|
|
|
}
|