2017-01-07 18:31:03 +01:00
|
|
|
// Copyright (c) 2017 The btcsuite developers
|
2019-03-13 07:11:03 +01:00
|
|
|
// Copyright (c) 2015-2019 The Decred developers
|
2017-01-07 18:31:03 +01:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package txscript
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestErrorCodeStringer tests the stringized output for the ErrorCode type.
|
|
|
|
func TestErrorCodeStringer(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
in ErrorCode
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{ErrInternal, "ErrInternal"},
|
|
|
|
{ErrInvalidFlags, "ErrInvalidFlags"},
|
|
|
|
{ErrInvalidIndex, "ErrInvalidIndex"},
|
|
|
|
{ErrUnsupportedAddress, "ErrUnsupportedAddress"},
|
|
|
|
{ErrTooManyRequiredSigs, "ErrTooManyRequiredSigs"},
|
|
|
|
{ErrTooMuchNullData, "ErrTooMuchNullData"},
|
2019-03-13 07:11:03 +01:00
|
|
|
{ErrUnsupportedScriptVersion, "ErrUnsupportedScriptVersion"},
|
2017-01-07 18:31:03 +01:00
|
|
|
{ErrNotMultisigScript, "ErrNotMultisigScript"},
|
|
|
|
{ErrEarlyReturn, "ErrEarlyReturn"},
|
|
|
|
{ErrEmptyStack, "ErrEmptyStack"},
|
|
|
|
{ErrEvalFalse, "ErrEvalFalse"},
|
|
|
|
{ErrScriptUnfinished, "ErrScriptUnfinished"},
|
|
|
|
{ErrInvalidProgramCounter, "ErrInvalidProgramCounter"},
|
|
|
|
{ErrScriptTooBig, "ErrScriptTooBig"},
|
|
|
|
{ErrElementTooBig, "ErrElementTooBig"},
|
|
|
|
{ErrTooManyOperations, "ErrTooManyOperations"},
|
|
|
|
{ErrStackOverflow, "ErrStackOverflow"},
|
|
|
|
{ErrInvalidPubKeyCount, "ErrInvalidPubKeyCount"},
|
|
|
|
{ErrInvalidSignatureCount, "ErrInvalidSignatureCount"},
|
|
|
|
{ErrNumberTooBig, "ErrNumberTooBig"},
|
|
|
|
{ErrVerify, "ErrVerify"},
|
|
|
|
{ErrEqualVerify, "ErrEqualVerify"},
|
|
|
|
{ErrNumEqualVerify, "ErrNumEqualVerify"},
|
|
|
|
{ErrCheckSigVerify, "ErrCheckSigVerify"},
|
|
|
|
{ErrCheckMultiSigVerify, "ErrCheckMultiSigVerify"},
|
|
|
|
{ErrDisabledOpcode, "ErrDisabledOpcode"},
|
|
|
|
{ErrReservedOpcode, "ErrReservedOpcode"},
|
|
|
|
{ErrMalformedPush, "ErrMalformedPush"},
|
|
|
|
{ErrInvalidStackOperation, "ErrInvalidStackOperation"},
|
|
|
|
{ErrUnbalancedConditional, "ErrUnbalancedConditional"},
|
|
|
|
{ErrMinimalData, "ErrMinimalData"},
|
|
|
|
{ErrInvalidSigHashType, "ErrInvalidSigHashType"},
|
2018-08-23 06:37:27 +02:00
|
|
|
{ErrSigTooShort, "ErrSigTooShort"},
|
|
|
|
{ErrSigTooLong, "ErrSigTooLong"},
|
|
|
|
{ErrSigInvalidSeqID, "ErrSigInvalidSeqID"},
|
|
|
|
{ErrSigInvalidDataLen, "ErrSigInvalidDataLen"},
|
|
|
|
{ErrSigMissingSTypeID, "ErrSigMissingSTypeID"},
|
|
|
|
{ErrSigMissingSLen, "ErrSigMissingSLen"},
|
|
|
|
{ErrSigInvalidSLen, "ErrSigInvalidSLen"},
|
|
|
|
{ErrSigInvalidRIntID, "ErrSigInvalidRIntID"},
|
|
|
|
{ErrSigZeroRLen, "ErrSigZeroRLen"},
|
|
|
|
{ErrSigNegativeR, "ErrSigNegativeR"},
|
|
|
|
{ErrSigTooMuchRPadding, "ErrSigTooMuchRPadding"},
|
|
|
|
{ErrSigInvalidSIntID, "ErrSigInvalidSIntID"},
|
|
|
|
{ErrSigZeroSLen, "ErrSigZeroSLen"},
|
|
|
|
{ErrSigNegativeS, "ErrSigNegativeS"},
|
|
|
|
{ErrSigTooMuchSPadding, "ErrSigTooMuchSPadding"},
|
2017-01-07 18:31:03 +01:00
|
|
|
{ErrSigHighS, "ErrSigHighS"},
|
|
|
|
{ErrNotPushOnly, "ErrNotPushOnly"},
|
|
|
|
{ErrSigNullDummy, "ErrSigNullDummy"},
|
|
|
|
{ErrPubKeyType, "ErrPubKeyType"},
|
|
|
|
{ErrCleanStack, "ErrCleanStack"},
|
2016-11-18 04:08:06 +01:00
|
|
|
{ErrNullFail, "ErrNullFail"},
|
2017-01-07 18:31:03 +01:00
|
|
|
{ErrDiscourageUpgradableNOPs, "ErrDiscourageUpgradableNOPs"},
|
|
|
|
{ErrNegativeLockTime, "ErrNegativeLockTime"},
|
|
|
|
{ErrUnsatisfiedLockTime, "ErrUnsatisfiedLockTime"},
|
2017-04-27 01:33:28 +02:00
|
|
|
{ErrWitnessProgramEmpty, "ErrWitnessProgramEmpty"},
|
|
|
|
{ErrWitnessProgramMismatch, "ErrWitnessProgramMismatch"},
|
|
|
|
{ErrWitnessProgramWrongLength, "ErrWitnessProgramWrongLength"},
|
|
|
|
{ErrWitnessMalleated, "ErrWitnessMalleated"},
|
|
|
|
{ErrWitnessMalleatedP2SH, "ErrWitnessMalleatedP2SH"},
|
|
|
|
{ErrWitnessUnexpected, "ErrWitnessUnexpected"},
|
|
|
|
{ErrMinimalIf, "ErrMinimalIf"},
|
|
|
|
{ErrWitnessPubKeyType, "ErrWitnessPubKeyType"},
|
|
|
|
{ErrDiscourageUpgradableWitnessProgram, "ErrDiscourageUpgradableWitnessProgram"},
|
2017-01-07 18:31:03 +01:00
|
|
|
{0xffff, "Unknown ErrorCode (65535)"},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Detect additional error codes that don't have the stringer added.
|
|
|
|
if len(tests)-1 != int(numErrorCodes) {
|
|
|
|
t.Errorf("It appears an error code was added without adding an " +
|
|
|
|
"associated stringer test")
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("Running %d tests", len(tests))
|
|
|
|
for i, test := range tests {
|
|
|
|
result := test.in.String()
|
|
|
|
if result != test.want {
|
|
|
|
t.Errorf("String #%d\n 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",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("Running %d tests", len(tests))
|
|
|
|
for i, test := range tests {
|
|
|
|
result := test.in.Error()
|
|
|
|
if result != test.want {
|
|
|
|
t.Errorf("Error #%d\n got: %s want: %s", i, result,
|
|
|
|
test.want)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|