This moves the new stdaddr package from the internal staging area to the txscript module and updates the relevant paths and package README.md accordingly.
138 lines
3.8 KiB
Go
138 lines
3.8 KiB
Go
// Copyright (c) 2021 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package stdaddr
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
"testing"
|
|
)
|
|
|
|
// TestErrorKindStringer tests the stringized output for the ErrorKind type.
|
|
func TestErrorKindStringer(t *testing.T) {
|
|
tests := []struct {
|
|
in ErrorKind
|
|
want string
|
|
}{
|
|
{ErrUnsupportedAddress, "ErrUnsupportedAddress"},
|
|
{ErrUnsupportedScriptVersion, "ErrUnsupportedScriptVersion"},
|
|
{ErrMalformedAddress, "ErrMalformedAddress"},
|
|
{ErrMalformedAddressData, "ErrMalformedAddressData"},
|
|
{ErrBadAddressChecksum, "ErrBadAddressChecksum"},
|
|
{ErrInvalidPubKey, "ErrInvalidPubKey"},
|
|
{ErrInvalidPubKeyFormat, "ErrInvalidPubKeyFormat"},
|
|
{ErrInvalidHashLen, "ErrInvalidHashLen"},
|
|
}
|
|
|
|
for i, test := range tests {
|
|
result := test.in.Error()
|
|
if result != test.want {
|
|
t.Errorf("#%d: got: %s want: %s", i, result, test.want)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestError tests the error output for the Error type.
|
|
func TestError(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
in Error
|
|
want string
|
|
}{{
|
|
Error{Description: "some error"},
|
|
"some error",
|
|
}, {
|
|
Error{Description: "human-readable error"},
|
|
"human-readable error",
|
|
}}
|
|
|
|
for i, test := range tests {
|
|
result := test.in.Error()
|
|
if result != test.want {
|
|
t.Errorf("#%d: got: %s want: %s", i, result, test.want)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestErrorKindIsAs ensures both ErrorKind and Error can be identified as being
|
|
// a specific error kind via errors.Is and unwrapped via errors.As.
|
|
func TestErrorKindIsAs(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
err error
|
|
target error
|
|
wantMatch bool
|
|
wantAs ErrorKind
|
|
}{{
|
|
name: "ErrUnsupportedAddress == ErrUnsupportedAddress",
|
|
err: ErrUnsupportedAddress,
|
|
target: ErrUnsupportedAddress,
|
|
wantMatch: true,
|
|
wantAs: ErrUnsupportedAddress,
|
|
}, {
|
|
name: "Error.ErrUnsupportedAddress == ErrUnsupportedAddress",
|
|
err: makeError(ErrUnsupportedAddress, ""),
|
|
target: ErrUnsupportedAddress,
|
|
wantMatch: true,
|
|
wantAs: ErrUnsupportedAddress,
|
|
}, {
|
|
name: "ErrUnsupportedAddress != ErrUnsupportedScriptVersion",
|
|
err: ErrUnsupportedAddress,
|
|
target: ErrUnsupportedScriptVersion,
|
|
wantMatch: false,
|
|
wantAs: ErrUnsupportedAddress,
|
|
}, {
|
|
name: "Error.ErrUnsupportedAddress != ErrUnsupportedScriptVersion",
|
|
err: makeError(ErrUnsupportedAddress, ""),
|
|
target: ErrUnsupportedScriptVersion,
|
|
wantMatch: false,
|
|
wantAs: ErrUnsupportedAddress,
|
|
}, {
|
|
name: "ErrUnsupportedAddress != Error.ErrUnsupportedScriptVersion",
|
|
err: ErrUnsupportedAddress,
|
|
target: makeError(ErrUnsupportedScriptVersion, ""),
|
|
wantMatch: false,
|
|
wantAs: ErrUnsupportedAddress,
|
|
}, {
|
|
name: "Error.ErrUnsupportedAddress != Error.ErrUnsupportedScriptVersion",
|
|
err: makeError(ErrUnsupportedAddress, ""),
|
|
target: makeError(ErrUnsupportedScriptVersion, ""),
|
|
wantMatch: false,
|
|
wantAs: ErrUnsupportedAddress,
|
|
}, {
|
|
name: "Error.ErrUnsupportedAddress != io.EOF",
|
|
err: makeError(ErrUnsupportedAddress, ""),
|
|
target: io.EOF,
|
|
wantMatch: false,
|
|
wantAs: ErrUnsupportedAddress,
|
|
}}
|
|
|
|
for _, test := range tests {
|
|
// Ensure the error matches or not depending on the expected result.
|
|
result := errors.Is(test.err, test.target)
|
|
if result != test.wantMatch {
|
|
t.Errorf("%s: incorrect error identification -- got %v, want %v",
|
|
test.name, result, test.wantMatch)
|
|
continue
|
|
}
|
|
|
|
// Ensure the underlying error kind can be unwrapped is and is the
|
|
// expected kind.
|
|
var kind ErrorKind
|
|
if !errors.As(test.err, &kind) {
|
|
t.Errorf("%s: unable to unwrap to error kind", test.name)
|
|
continue
|
|
}
|
|
if kind != test.wantAs {
|
|
t.Errorf("%s: unexpected unwrapped error kind -- got %v, want %v",
|
|
test.name, kind, test.wantAs)
|
|
continue
|
|
}
|
|
}
|
|
}
|