Skip to content

Commit 14eae78

Browse files
committed
Merge #11241: [tests] Improve signmessages functional test
b3d6fc6 Improve signmessages functional test (Cristian Mircea Messel) Pull request description: This patch improves branch coverage of the test, making sure a message can not be verified with the wrong address or signature. Tree-SHA512: 984eb66af8ba1caaccfb8ce2c5cc89c634a50d2fa587bfaf6e196aaf5b89e77accd76522ac33105621ead795521ec6d90f0afcb3b6064d22e53b54d2b41c7991
2 parents 38a54a5 + b3d6fc6 commit 14eae78

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

test/functional/signmessages.py

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"""Test RPC commands for signing and verifying messages."""
66

77
from test_framework.test_framework import BitcoinTestFramework
8+
from test_framework.util import assert_equal
89

910
class SignMessagesTest(BitcoinTestFramework):
1011
def set_test_params(self):
@@ -14,20 +15,24 @@ def set_test_params(self):
1415
def run_test(self):
1516
message = 'This is just a test message'
1617

17-
# Test the signing with a privkey
18-
privKey = 'cUeKHd5orzT3mz8P9pxyREHfsWtVfgsfDjiZZBcjUBAaGk1BTj7N'
18+
self.log.info('test signing with priv_key')
19+
priv_key = 'cUeKHd5orzT3mz8P9pxyREHfsWtVfgsfDjiZZBcjUBAaGk1BTj7N'
1920
address = 'mpLQjfK79b7CCV4VMJWEWAj5Mpx8Up5zxB'
20-
signature = self.nodes[0].signmessagewithprivkey(privKey, message)
21-
22-
# Verify the message
21+
expected_signature = 'INbVnW4e6PeRmsv2Qgu8NuopvrVjkcxob+sX8OcZG0SALhWybUjzMLPdAsXI46YZGb0KQTRii+wWIQzRpG/U+S0='
22+
signature = self.nodes[0].signmessagewithprivkey(priv_key, message)
23+
assert_equal(expected_signature, signature)
2324
assert(self.nodes[0].verifymessage(address, signature, message))
2425

25-
# Test the signing with an address with wallet
26+
self.log.info('test signing with an address with wallet')
2627
address = self.nodes[0].getnewaddress()
2728
signature = self.nodes[0].signmessage(address, message)
28-
29-
# Verify the message
3029
assert(self.nodes[0].verifymessage(address, signature, message))
3130

31+
self.log.info('test verifying with another address should not work')
32+
other_address = self.nodes[0].getnewaddress()
33+
other_signature = self.nodes[0].signmessage(other_address, message)
34+
assert(not self.nodes[0].verifymessage(other_address, signature, message))
35+
assert(not self.nodes[0].verifymessage(address, other_signature, message))
36+
3237
if __name__ == '__main__':
3338
SignMessagesTest().main()

0 commit comments

Comments
 (0)