Skip to content

Commit abb6152

Browse files
committed
add node info
1 parent 4f8ba38 commit abb6152

File tree

1 file changed

+115
-0
lines changed

1 file changed

+115
-0
lines changed
Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
from framework.basic_fiber import FiberTest
2+
3+
4+
class TestNodeInfo(FiberTest):
5+
6+
def test_commit_hash(self):
7+
"""
8+
9+
Returns:
10+
11+
"""
12+
pass
13+
14+
def test_public_key(self):
15+
"""
16+
check public key
17+
Returns:
18+
19+
"""
20+
21+
def test_peer_id(self):
22+
"""
23+
check peer id
24+
Returns:
25+
26+
"""
27+
28+
def test_addresses(self):
29+
"""
30+
check addresses
31+
Returns:
32+
33+
"""
34+
35+
def test_chain_hash(self):
36+
"""
37+
check chain hash
38+
Returns:
39+
40+
"""
41+
42+
def test_open_channel_auto_accept_min_ckb_funding_amount(self):
43+
"""
44+
check open_channel_auto_accept_min_ckb_funding_amount
45+
Returns:
46+
47+
"""
48+
49+
def test_auto_accept_channel_ckb_funding_amount(self):
50+
"""
51+
check auto_accept_channel_ckb_funding_amount
52+
Returns:
53+
54+
"""
55+
56+
def test_tlc_expiry_delta(self):
57+
"""
58+
check tlc_expiry_delta
59+
Returns:
60+
"""
61+
62+
def test_tlc_min_value(self):
63+
"""
64+
check tlc_min_value
65+
Returns:
66+
67+
"""
68+
69+
def test_tlc_max_value(self):
70+
"""
71+
check tlc_max_value
72+
Returns:
73+
74+
"""
75+
76+
def test_tlc_fee_proportional_millionths(self):
77+
"""
78+
check tlc_fee_proportional_millionths
79+
Returns:
80+
81+
"""
82+
83+
def test_channel_count(self):
84+
"""
85+
check channel_count
86+
Returns:
87+
"""
88+
89+
def test_pending_channel_count(self):
90+
"""
91+
check pending_channel_count
92+
Returns:
93+
94+
"""
95+
96+
def test_peers_count(self):
97+
"""
98+
check peer count
99+
Returns:
100+
101+
"""
102+
103+
def test_network_sync_status(self):
104+
"""
105+
check network_sync_status
106+
Returns:
107+
108+
"""
109+
110+
def test_udt_cfg_infos(self):
111+
"""
112+
check udt_cfg_infos
113+
Returns:
114+
115+
"""

0 commit comments

Comments
 (0)