mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
Add test for signrawtransaction
Add a brief test for signrawtransaction to ensure that compatibility is maintained.
This commit is contained in:
parent
eefff65a4b
commit
d60234885b
@ -2,7 +2,7 @@
|
||||
# Copyright (c) 2015-2017 The Bitcoin Core developers
|
||||
# Distributed under the MIT software license, see the accompanying
|
||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
"""Test transaction signing using the signrawtransactionwithwallet RPC."""
|
||||
"""Test transaction signing using the signrawtransaction* RPCs."""
|
||||
|
||||
from test_framework.test_framework import BitcoinTestFramework
|
||||
from test_framework.util import *
|
||||
@ -12,6 +12,7 @@ class SignRawTransactionsTest(BitcoinTestFramework):
|
||||
def set_test_params(self):
|
||||
self.setup_clean_chain = True
|
||||
self.num_nodes = 1
|
||||
self.extra_args = [["-deprecatedrpc=signrawtransaction"]]
|
||||
|
||||
def successful_signing_test(self):
|
||||
"""Create and sign a valid raw transaction with one input.
|
||||
@ -36,12 +37,15 @@ class SignRawTransactionsTest(BitcoinTestFramework):
|
||||
rawTxSigned = self.nodes[0].signrawtransactionwithkey(rawTx, privKeys, inputs)
|
||||
|
||||
# 1) The transaction has a complete set of signatures
|
||||
assert 'complete' in rawTxSigned
|
||||
assert_equal(rawTxSigned['complete'], True)
|
||||
assert rawTxSigned['complete']
|
||||
|
||||
# 2) No script verification error occurred
|
||||
assert 'errors' not in rawTxSigned
|
||||
|
||||
# Perform the same test on signrawtransaction
|
||||
rawTxSigned2 = self.nodes[0].signrawtransaction(rawTx, inputs, privKeys)
|
||||
assert_equal(rawTxSigned, rawTxSigned2)
|
||||
|
||||
def script_verification_error_test(self):
|
||||
"""Create and sign a raw transaction with valid (vin 0), invalid (vin 1) and one missing (vin 2) input script.
|
||||
|
||||
@ -87,8 +91,7 @@ class SignRawTransactionsTest(BitcoinTestFramework):
|
||||
rawTxSigned = self.nodes[0].signrawtransactionwithkey(rawTx, privKeys, scripts)
|
||||
|
||||
# 3) The transaction has no complete set of signatures
|
||||
assert 'complete' in rawTxSigned
|
||||
assert_equal(rawTxSigned['complete'], False)
|
||||
assert not rawTxSigned['complete']
|
||||
|
||||
# 4) Two script verification errors occurred
|
||||
assert 'errors' in rawTxSigned
|
||||
@ -109,14 +112,17 @@ class SignRawTransactionsTest(BitcoinTestFramework):
|
||||
assert_equal(rawTxSigned['errors'][1]['vout'], inputs[2]['vout'])
|
||||
assert not rawTxSigned['errors'][0]['witness']
|
||||
|
||||
# Perform same test with signrawtransaction
|
||||
rawTxSigned2 = self.nodes[0].signrawtransaction(rawTx, scripts, privKeys)
|
||||
assert_equal(rawTxSigned, rawTxSigned2)
|
||||
|
||||
# Now test signing failure for transaction with input witnesses
|
||||
p2wpkh_raw_tx = "01000000000102fff7f7881a8099afa6940d42d1e7f6362bec38171ea3edf433541db4e4ad969f00000000494830450221008b9d1dc26ba6a9cb62127b02742fa9d754cd3bebf337f7a55d114c8e5cdd30be022040529b194ba3f9281a99f2b1c0a19c0489bc22ede944ccf4ecbab4cc618ef3ed01eeffffffef51e1b804cc89d182d279655c3aa89e815b1b309fe287d9b2b55d57b90ec68a0100000000ffffffff02202cb206000000001976a9148280b37df378db99f66f85c95a783a76ac7a6d5988ac9093510d000000001976a9143bde42dbee7e4dbe6a21b2d50ce2f0167faa815988ac000247304402203609e17b84f6a7d30c80bfa610b5b4542f32a8a0d5447a12fb1366d7f01cc44a0220573a954c4518331561406f90300e8f3358f51928d43c212a8caed02de67eebee0121025476c2e83188368da1ff3e292e7acafcdb3566bb0ad253f62fc70f07aeee635711000000"
|
||||
|
||||
rawTxSigned = self.nodes[0].signrawtransactionwithwallet(p2wpkh_raw_tx)
|
||||
|
||||
# 7) The transaction has no complete set of signatures
|
||||
assert 'complete' in rawTxSigned
|
||||
assert_equal(rawTxSigned['complete'], False)
|
||||
assert not rawTxSigned['complete']
|
||||
|
||||
# 8) Two script verification errors occurred
|
||||
assert 'errors' in rawTxSigned
|
||||
@ -134,6 +140,10 @@ class SignRawTransactionsTest(BitcoinTestFramework):
|
||||
assert_equal(rawTxSigned['errors'][1]['witness'], ["304402203609e17b84f6a7d30c80bfa610b5b4542f32a8a0d5447a12fb1366d7f01cc44a0220573a954c4518331561406f90300e8f3358f51928d43c212a8caed02de67eebee01", "025476c2e83188368da1ff3e292e7acafcdb3566bb0ad253f62fc70f07aeee6357"])
|
||||
assert not rawTxSigned['errors'][0]['witness']
|
||||
|
||||
# Perform same test with signrawtransaction
|
||||
rawTxSigned2 = self.nodes[0].signrawtransaction(p2wpkh_raw_tx)
|
||||
assert_equal(rawTxSigned, rawTxSigned2)
|
||||
|
||||
def run_test(self):
|
||||
self.successful_signing_test()
|
||||
self.script_verification_error_test()
|
||||
|
Loading…
Reference in New Issue
Block a user