mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 19:42:46 +01:00
feat: test CL and IS for single-node-quorum
This commit is contained in:
parent
a029a74389
commit
62360a3096
@ -15,6 +15,10 @@ from test_framework.test_framework import DashTestFramework
|
||||
from test_framework.util import assert_raises_rpc_error, wait_until_helper
|
||||
|
||||
|
||||
id = "0000000000000000000000000000000000000000000000000000000000000001"
|
||||
msgHash = "0000000000000000000000000000000000000000000000000000000000000002"
|
||||
msgHashConflict = "0000000000000000000000000000000000000000000000000000000000000003"
|
||||
|
||||
class LLMQSigningTest(DashTestFramework):
|
||||
def set_test_params(self):
|
||||
self.set_dash_test_params(1, 0, [["-llmqtestplatform=llmq_1_100", "-llmqtestchainlocks=llmq_1_100", "-llmqtestinstantsenddip0024=llmq_1_100"]] * 1, evo_count=2)
|
||||
@ -27,15 +31,41 @@ class LLMQSigningTest(DashTestFramework):
|
||||
self.bump_mocktime(1)
|
||||
self.generate(node, 2)
|
||||
|
||||
def run_test(self):
|
||||
def check_sigs(self, hasrecsigs, isconflicting1, isconflicting2):
|
||||
has_sig = False
|
||||
conflicting_1 = False
|
||||
conflicting_2 = False
|
||||
|
||||
for mn in self.mninfo:
|
||||
if mn.node.quorum("hasrecsig", 111, id, msgHash):
|
||||
has_sig = True
|
||||
if mn.node.quorum("isconflicting", 111, id, msgHash):
|
||||
conflicting_1 = True
|
||||
if mn.node.quorum("isconflicting", 111, id, msgHashConflict):
|
||||
conflicting_2 = True
|
||||
if has_sig != hasrecsigs:
|
||||
return False
|
||||
if conflicting_1 != isconflicting1:
|
||||
return False
|
||||
if conflicting_2 != isconflicting2:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def wait_for_sigs(self, hasrecsigs, isconflicting1, isconflicting2, timeout):
|
||||
self.wait_until(lambda: self.check_sigs(hasrecsigs, isconflicting1, isconflicting2), timeout = timeout)
|
||||
|
||||
def assert_sigs_nochange(self, hasrecsigs, isconflicting1, isconflicting2, timeout):
|
||||
assert not wait_until_helper(lambda: not self.check_sigs(hasrecsigs, isconflicting1, isconflicting2), timeout = timeout, do_assert = False)
|
||||
|
||||
|
||||
def run_test(self):
|
||||
self.nodes[0].sporkupdate("SPORK_17_QUORUM_DKG_ENABLED", 0)
|
||||
self.wait_for_sporks_same()
|
||||
|
||||
self.activate_v19(expected_activation_height=900)
|
||||
self.dynamically_add_masternode(evo=True)
|
||||
self.dynamically_add_masternode(evo=True)
|
||||
|
||||
self.connect_nodes(1, 2)
|
||||
|
||||
# move forward to next DKG
|
||||
@ -45,45 +75,25 @@ class LLMQSigningTest(DashTestFramework):
|
||||
self.generate(self.nodes[0], skip_count)
|
||||
self.generate(self.nodes[0], 30)
|
||||
|
||||
id = "0000000000000000000000000000000000000000000000000000000000000001"
|
||||
msgHash = "0000000000000000000000000000000000000000000000000000000000000002"
|
||||
msgHashConflict = "0000000000000000000000000000000000000000000000000000000000000003"
|
||||
self.log.info("We have quorum waiting for ChainLock")
|
||||
self.wait_for_best_chainlock(self.nodes[0], self.nodes[0].getbestblockhash())
|
||||
|
||||
def check_sigs(hasrecsigs, isconflicting1, isconflicting2):
|
||||
has_sig = False
|
||||
conflicting_1 = False
|
||||
conflicting_2 = False
|
||||
self.log.info("Send funds and wait InstantSend lock")
|
||||
txid = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), 1)
|
||||
self.wait_for_instantlock(txid, self.nodes[0])
|
||||
|
||||
for mn in self.mninfo:
|
||||
if mn.node.quorum("hasrecsig", 111, id, msgHash):
|
||||
has_sig = True
|
||||
if mn.node.quorum("isconflicting", 111, id, msgHash):
|
||||
conflicting_1 = True
|
||||
if mn.node.quorum("isconflicting", 111, id, msgHashConflict):
|
||||
conflicting_2 = True
|
||||
if has_sig != hasrecsigs:
|
||||
return False
|
||||
if conflicting_1 != isconflicting1:
|
||||
return False
|
||||
if conflicting_2 != isconflicting2:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def wait_for_sigs(hasrecsigs, isconflicting1, isconflicting2, timeout):
|
||||
self.wait_until(lambda: check_sigs(hasrecsigs, isconflicting1, isconflicting2), timeout = timeout)
|
||||
|
||||
def assert_sigs_nochange(hasrecsigs, isconflicting1, isconflicting2, timeout):
|
||||
assert not wait_until_helper(lambda: not check_sigs(hasrecsigs, isconflicting1, isconflicting2), timeout = timeout, do_assert = False)
|
||||
self.log.info("Test various options to sign messages with nodes")
|
||||
recsig_time = self.mocktime
|
||||
|
||||
# Initial state
|
||||
wait_for_sigs(False, False, False, 1)
|
||||
self.wait_for_sigs(False, False, False, 1)
|
||||
|
||||
# Sign first share without any optional parameter, should not result in recovered sig
|
||||
# Sign second share and test optional quorumHash parameter, should not result in recovered sig
|
||||
# 1. Providing an invalid quorum hash should fail and cause no changes for sigs
|
||||
assert not self.mninfo[1].node.quorum("sign", 111, id, msgHash, msgHash)
|
||||
assert_sigs_nochange(False, False, False, 3)
|
||||
self.assert_sigs_nochange(False, False, False, 3)
|
||||
# 2. Providing a valid quorum hash should succeed and cause no changes for sigss
|
||||
quorumHash = self.mninfo[1].node.quorum("selectquorum", 111, id)["quorumHash"]
|
||||
|
||||
@ -91,7 +101,7 @@ class LLMQSigningTest(DashTestFramework):
|
||||
sign1 = self.mninfo[0].node.quorum("sign", 111, id, msgHash)
|
||||
sign2 = self.mninfo[1].node.quorum("sign", 111, id, msgHash)
|
||||
|
||||
wait_for_sigs(True, False, True, 15)
|
||||
self.wait_for_sigs(True, False, True, 15)
|
||||
has0 = self.nodes[0].quorum("hasrecsig", 111, id, msgHash)
|
||||
has1 = self.nodes[1].quorum("hasrecsig", 111, id, msgHash)
|
||||
has2 = self.nodes[2].quorum("hasrecsig", 111, id, msgHash)
|
||||
@ -115,24 +125,26 @@ class LLMQSigningTest(DashTestFramework):
|
||||
|
||||
# Mine one more quorum, so that we have 2 active ones, nothing should change
|
||||
self.mine_single_node_quorum()
|
||||
assert_sigs_nochange(True, False, True, 3)
|
||||
|
||||
recsig_time = self.mocktime
|
||||
self.assert_sigs_nochange(True, False, True, 3)
|
||||
|
||||
# Mine 2 more quorums, so that the one used for the the recovered sig should become inactive, nothing should change
|
||||
self.mine_single_node_quorum()
|
||||
self.mine_single_node_quorum()
|
||||
assert_sigs_nochange(True, False, True, 3)
|
||||
self.assert_sigs_nochange(True, False, True, 3)
|
||||
|
||||
# fast forward until 0.5 days before cleanup is expected, recovered sig should still be valid
|
||||
self.bump_mocktime(recsig_time + int(60 * 60 * 24 * 6.5) - self.mocktime, update_schedulers=False)
|
||||
# Cleanup starts every 5 seconds
|
||||
wait_for_sigs(True, False, True, 15)
|
||||
self.wait_for_sigs(True, False, True, 15)
|
||||
# fast forward 1 day, recovered sig should not be valid anymore
|
||||
self.bump_mocktime(int(60 * 60 * 24 * 1), update_schedulers=False)
|
||||
# Cleanup starts every 5 seconds
|
||||
wait_for_sigs(False, False, False, 15)
|
||||
self.wait_for_sigs(False, False, False, 15)
|
||||
|
||||
self.log.info("Test chainlocks and InstantSend with new quorums and 2 nodes")
|
||||
self.wait_for_best_chainlock(self.nodes[0], self.nodes[0].getbestblockhash())
|
||||
txid = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), 1)
|
||||
self.wait_for_instantlock(txid, self.nodes[0])
|
||||
|
||||
if __name__ == '__main__':
|
||||
LLMQSigningTest().main()
|
||||
|
Loading…
Reference in New Issue
Block a user