mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
71b4cf307b
fac95398366f644911b58f1605e6bc37fb76782d qa: Run all tests even if wallet is not compiled (MarcoFalke) faa669cbcd1fc799517b523b0f850e01b11bf40a qa: Premine to deterministic address with -disablewallet (MarcoFalke) Pull request description: Currently the test_runner would exit if the wallet was not compiled into the Bitcoin Core executable. However, a lot of the tests run without the wallet just fine and there is no need to globally require the wallet to run the tests. Tree-SHA512: 63177260aa29126fd20f0be217a82b10b62288ab846f96f1cbcc3bd2c52702437703475d91eae3f8d821a3149fc62b725a4c5b2a7b3657b67ffcbc81532a03bb
42 lines
1.8 KiB
Python
Executable File
42 lines
1.8 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2016 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 RPC commands for signing and verifying messages."""
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import assert_equal
|
|
|
|
class SignMessagesTest(BitcoinTestFramework):
|
|
def set_test_params(self):
|
|
self.setup_clean_chain = True
|
|
self.num_nodes = 1
|
|
|
|
def skip_test_if_missing_module(self):
|
|
self.skip_if_no_wallet()
|
|
|
|
def run_test(self):
|
|
message = 'This is just a test message'
|
|
|
|
self.log.info('test signing with priv_key')
|
|
priv_key = 'cU4zhap7nPJAWeMFu4j6jLrfPmqakDAzy8zn8Fhb3oEevdm4e5Lc'
|
|
address = 'yeMpGzMj3rhtnz48XsfpB8itPHhHtgxLc3'
|
|
expected_signature = 'ICzMhjIUmmXcPWy2+9nw01zQMawo+s5FIy6F7VMkL+TmIeNq1j3AMEuw075os29kh5KYLbysKkDlDD+EAqERBd4='
|
|
signature = self.nodes[0].signmessagewithprivkey(priv_key, message)
|
|
assert_equal(expected_signature, signature)
|
|
assert self.nodes[0].verifymessage(address, signature, message)
|
|
|
|
self.log.info('test signing with an address with wallet')
|
|
address = self.nodes[0].getnewaddress()
|
|
signature = self.nodes[0].signmessage(address, message)
|
|
assert self.nodes[0].verifymessage(address, signature, message)
|
|
|
|
self.log.info('test verifying with another address should not work')
|
|
other_address = self.nodes[0].getnewaddress()
|
|
other_signature = self.nodes[0].signmessage(other_address, message)
|
|
assert not self.nodes[0].verifymessage(other_address, signature, message)
|
|
assert not self.nodes[0].verifymessage(address, other_signature, message)
|
|
|
|
if __name__ == '__main__':
|
|
SignMessagesTest().main()
|