-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfeature_ins_timestampindex.py
executable file
·78 lines (55 loc) · 2.01 KB
/
feature_ins_timestampindex.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
#!/usr/bin/env python3
# Copyright (c) 2014-2015 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
# Test timestampindex generation and fetching
#
import time
from test_framework.test_particl import GhostTestFramework
from test_framework.util import assert_equal
class TimestampIndexTest(GhostTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 4
self.extra_args = [
# Nodes 0/1 are "wallet" nodes
['-debug',],
['-debug','-timestampindex'],
# Nodes 2/3 are used for testing
['-debug',],
['-debug','-timestampindex'],]
def skip_test_if_missing_module(self):
self.skip_if_no_wallet()
def setup_network(self):
self.add_nodes(self.num_nodes, extra_args=self.extra_args)
self.start_nodes()
self.connect_nodes(0, 1)
self.connect_nodes(0, 2)
self.connect_nodes(0, 3)
self.sync_all()
def run_test(self):
nodes = self.nodes
# Stop staking
for i in range(len(nodes)):
nodes[i].reservebalance(True, 10000000)
self.import_genesis_coins_a(nodes[0])
blockhashes = []
self.stakeToHeight(1, False)
blockhashes.append(nodes[0].getblockhash(1))
time.sleep(3)
self.stakeToHeight(2, False)
blockhashes.append(nodes[0].getblockhash(2))
time.sleep(3)
self.stakeToHeight(3, False)
blockhashes.append(nodes[0].getblockhash(3))
self.sync_all()
low = self.nodes[1].getblock(blockhashes[0])['time']
high = low + 76
print('Checking timestamp index...')
hashes = self.nodes[1].getblockhashes(high, low)
assert_equal(len(hashes), len(blockhashes))
assert_equal(hashes, blockhashes)
print('Passed\n')
if __name__ == '__main__':
TimestampIndexTest().main()