mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
77 lines
3.5 KiB
Python
Executable File
77 lines
3.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2021-2024 The Dash Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
from test_framework.test_framework import DashTestFramework
|
|
from test_framework.util import assert_equal, assert_raises_rpc_error
|
|
|
|
'''
|
|
rpc_verifychainlock.py
|
|
|
|
Test the following RPC:
|
|
- gettxchainlocks
|
|
- verifychainlock
|
|
|
|
'''
|
|
|
|
|
|
class RPCVerifyChainLockTest(DashTestFramework):
|
|
def set_test_params(self):
|
|
# -whitelist is needed to avoid the trickling logic on node0
|
|
self.set_dash_test_params(5, 3, [["-whitelist=127.0.0.1"], [], [], [], []])
|
|
self.set_dash_llmq_test_params(3, 2)
|
|
|
|
def cl_helper(self, height, chainlock, mempool):
|
|
return {'height': height, 'chainlock': chainlock, 'mempool': mempool}
|
|
|
|
def run_test(self):
|
|
node0 = self.nodes[0]
|
|
node1 = self.nodes[1]
|
|
self.nodes[0].sporkupdate("SPORK_17_QUORUM_DKG_ENABLED", 0)
|
|
self.wait_for_sporks_same()
|
|
self.mine_quorum()
|
|
self.wait_for_chainlocked_block(node0, self.generate(node0, 1, sync_fun=self.no_op)[0])
|
|
chainlock = node0.getbestchainlock()
|
|
block_hash = chainlock["blockhash"]
|
|
height = chainlock["height"]
|
|
chainlock_signature = chainlock["signature"]
|
|
# No "blockHeight"
|
|
assert node0.verifychainlock(block_hash, chainlock_signature)
|
|
# Invalid "blockHeight"
|
|
assert not node0.verifychainlock(block_hash, chainlock_signature, 0)
|
|
# Valid "blockHeight"
|
|
assert node0.verifychainlock(block_hash, chainlock_signature, height)
|
|
# Invalid "blockHash"
|
|
assert not node0.verifychainlock(node0.getblockhash(0), chainlock_signature, height)
|
|
self.wait_for_chainlocked_block_all_nodes(block_hash)
|
|
# Isolate node1, mine a block on node0 and wait for its ChainLock
|
|
node1.setnetworkactive(False)
|
|
self.generate(node0, 1, sync_fun=self.no_op)
|
|
self.wait_for_chainlocked_block(node0, self.generate(node0, 1, sync_fun=self.no_op)[0])
|
|
chainlock = node0.getbestchainlock()
|
|
assert chainlock != node1.getbestchainlock()
|
|
block_hash = chainlock["blockhash"]
|
|
height = chainlock["height"]
|
|
chainlock_signature = chainlock["signature"]
|
|
# Now it should verify on node0 without "blockHeight" but fail on node1
|
|
assert node0.verifychainlock(block_hash, chainlock_signature)
|
|
assert_raises_rpc_error(-32603, "blockHash not found", node1.verifychainlock, block_hash, chainlock_signature)
|
|
# But they should still both verify with the height provided
|
|
assert node0.verifychainlock(block_hash, chainlock_signature, height)
|
|
assert node1.verifychainlock(block_hash, chainlock_signature, height)
|
|
|
|
self.generate(node1, 1, sync_fun=self.no_op)
|
|
height1 = node1.getblockcount()
|
|
tx0 = node0.getblock(node0.getbestblockhash())['tx'][0]
|
|
tx1 = node1.getblock(node1.getbestblockhash())['tx'][0]
|
|
tx2 = node0.sendtoaddress(node0.getnewaddress(), 1)
|
|
locks0 = node0.gettxchainlocks([tx0, tx1, tx2])
|
|
locks1 = node1.gettxchainlocks([tx0, tx1, tx2])
|
|
unknown_cl_helper = self.cl_helper(-1, False, False)
|
|
assert_equal(locks0, [self.cl_helper(height, True, False), unknown_cl_helper, self.cl_helper(-1, False, True)])
|
|
assert_equal(locks1, [unknown_cl_helper, self.cl_helper(height1, False, False), unknown_cl_helper])
|
|
|
|
if __name__ == '__main__':
|
|
RPCVerifyChainLockTest().main()
|