-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfeature_part_smsg_rollingcache.py
executable file
·80 lines (61 loc) · 2.53 KB
/
feature_part_smsg_rollingcache.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python3
# Copyright (c) 2019 The Particl Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
import time
from test_framework.test_particl import (
GhostTestFramework,
isclose
)
KEEP_FUNDING_TX_DATA = 86400 * 31
class SmsgRollingCacheTest(GhostTestFramework):
def set_test_params(self):
self.setup_clean_chain = True # Don't copy from cache
self.num_nodes = 3
self.extra_args = [ ['-debug', '-reservebalance=10000000'] for i in range(self.num_nodes) ]
def skip_test_if_missing_module(self):
self.skip_if_no_wallet()
def setup_network(self, split=False):
self.add_nodes(self.num_nodes, extra_args=self.extra_args)
self.start_nodes()
self.connect_nodes_bi(0, 1)
self.connect_nodes_bi(0, 2)
def run_test(self):
nodes = self.nodes
self.import_genesis_coins_a(nodes[0])
self.import_genesis_coins_b(nodes[1])
nodes[2].extkeyimportmaster(nodes[2].mnemonic('new')['master'])
address1 = nodes[1].getnewaddress()
nodes[1].smsgaddlocaladdress(address1)
nodes[2].smsgaddaddress(address1, nodes[1].smsglocalkeys()['wallet_keys'][0]['public_key'])
address0 = nodes[0].getnewaddress()
address1 = nodes[1].getnewaddress()
nodes[0].smsgaddlocaladdress(address0)
nodes[1].smsgaddaddress(address0, nodes[0].smsglocalkeys()['wallet_keys'][0]['public_key'])
text = 'Some text to test'
ro = nodes[1].smsgsend(address1, address0, text, True, 10)
assert(ro['result'] == 'Sent.')
assert(isclose(ro['fee'], 0.00159000))
self.stakeBlocks(1, nStakeNode=1)
self.log.info('Waiting for paid smsg to send')
for i in range(20):
txns = nodes[1].smsgdebug('dumpfundingtxids')
if len(txns['txns']) < 1:
time.sleep(1)
continue
break
assert(len(txns['txns']) > 0)
now = int(time.time())
for i in range(len(nodes)):
nodes[i].setmocktime(now + KEEP_FUNDING_TX_DATA, True)
self.log.info('Waiting for rolling cache to expire')
for i in range(60):
txns = nodes[1].smsgdebug('dumpfundingtxids')
if len(txns['txns']) > 0:
time.sleep(1)
continue
break
assert(len(txns['txns']) == 0)
self.log.info('Done.')
if __name__ == '__main__':
SmsgRollingCacheTest().main()