mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
ce3bcab3ab
* rpc: Introduce "mnauth" RPC command to fake masternode authentications * test: Test "mnauth" RPC command * test: Add rpc_mnauth.py to BASE_SCRIPTS * Update src/rpc/misc.cpp Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com> * Update test/functional/rpc_mnauth.py Co-authored-by: PastaPastaPasta <6443210+PastaPastaPasta@users.noreply.github.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com> Co-authored-by: PastaPastaPasta <6443210+PastaPastaPasta@users.noreply.github.com>
58 lines
2.5 KiB
Python
Executable File
58 lines
2.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2021 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.mininode import *
|
|
from test_framework.test_framework import DashTestFramework
|
|
from test_framework.util import assert_equal, assert_raises_rpc_error
|
|
|
|
'''
|
|
rpc_mnauth.py
|
|
|
|
Tests mnauth RPC command
|
|
'''
|
|
|
|
|
|
class FakeMNAUTHTest(DashTestFramework):
|
|
def set_test_params(self):
|
|
self.set_dash_test_params(2, 1, fast_dip3_enforcement=True)
|
|
|
|
def run_test(self):
|
|
|
|
masternode = self.mninfo[0]
|
|
p2p_masternode = masternode.node.add_p2p_connection(P2PInterface())
|
|
network_thread_start()
|
|
p2p_masternode.wait_for_verack()
|
|
|
|
protx_hash = masternode.proTxHash
|
|
public_key = masternode.pubKeyOperator
|
|
|
|
# The peerinfo should not yet contain verified_proregtx_hash/verified_pubkey_hash
|
|
assert("verified_proregtx_hash" not in masternode.node.getpeerinfo()[-1])
|
|
assert("verified_pubkey_hash" not in masternode.node.getpeerinfo()[-1])
|
|
# Fake-Authenticate the P2P connection to the masternode
|
|
node_id = masternode.node.getpeerinfo()[-1]["id"]
|
|
assert(masternode.node.mnauth(node_id, protx_hash, public_key))
|
|
# The peerinfo should now contain verified_proregtx_hash and verified_pubkey_hash
|
|
peerinfo = masternode.node.getpeerinfo()[-1]
|
|
assert("verified_proregtx_hash" in peerinfo)
|
|
assert("verified_pubkey_hash" in peerinfo)
|
|
assert_equal(peerinfo["verified_proregtx_hash"], protx_hash)
|
|
assert_equal(peerinfo["verified_pubkey_hash"], bytes_to_hex_str(hash256(hex_str_to_bytes(public_key))[::-1]))
|
|
# Test some error cases
|
|
null_hash = "0000000000000000000000000000000000000000000000000000000000000000"
|
|
assert_raises_rpc_error(-8, "proTxHash invalid", masternode.node.mnauth,
|
|
node_id,
|
|
null_hash,
|
|
public_key)
|
|
assert_raises_rpc_error(-8, "publicKey invalid", masternode.node.mnauth,
|
|
node_id,
|
|
protx_hash,
|
|
null_hash)
|
|
assert(not masternode.node.mnauth(-1, protx_hash, public_key))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
FakeMNAUTHTest().main()
|