mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
647f4831c1
## Issue being fixed or feature implemented old mode 100644 new mode 100755 ## What was done? `chmod +x test/functional/*.py` ## How Has This Been Tested? can now run these test directly e.g. `./test/functional/rpc_quorum.py` ## Breaking Changes n/a ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
32 lines
1.1 KiB
Python
Executable File
32 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2022 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, p2p_port
|
|
|
|
'''
|
|
rpc_quorum.py
|
|
|
|
Test "quorum" rpc subcommands
|
|
'''
|
|
|
|
class RPCMasternodeTest(DashTestFramework):
|
|
def set_test_params(self):
|
|
self.set_dash_test_params(4, 3, fast_dip3_enforcement=True)
|
|
|
|
def run_test(self):
|
|
self.nodes[0].sporkupdate("SPORK_17_QUORUM_DKG_ENABLED", 0)
|
|
self.wait_for_sporks_same()
|
|
quorum_hash = self.mine_quorum()
|
|
|
|
quorum_info = self.nodes[0].quorum("info", 100, quorum_hash)
|
|
for idx in range(0, self.mn_count):
|
|
mn = self.mninfo[idx]
|
|
for member in quorum_info["members"]:
|
|
if member["proTxHash"] == mn.proTxHash:
|
|
assert_equal(member["service"], '127.0.0.1:%d' % p2p_port(mn.node.index))
|
|
|
|
if __name__ == '__main__':
|
|
RPCMasternodeTest().main()
|