-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathinfo.rs
126 lines (108 loc) Β· 2.71 KB
/
info.rs
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
use {super::*, ord::subcommand::index::info::TransactionsOutput};
#[test]
fn json_with_satoshi_index() {
let core = mockcore::spawn();
let (tempdir, _) = CommandBuilder::new("--index-sats index update")
.core(&core)
.run();
CommandBuilder::new("--index-sats index info")
.temp_dir(tempdir)
.core(&core)
.stdout_regex(
r#"\{
"blocks_indexed": 1,
"branch_pages": \d+,
"fragmented_bytes": \d+,
"index_file_size": \d+,
"index_path": ".*\.redb",
"leaf_pages": \d+,
"metadata_bytes": \d+,
"outputs_traversed": 1,
"page_size": \d+,
"sat_ranges": 1,
"stored_bytes": \d+,
"tables": .*,
"total_bytes": \d+,
"transactions": \[
\{
"starting_block_count": 0,
"starting_timestamp": \d+
\}
\],
"tree_height": \d+,
"utxos_indexed": 1
\}
"#,
)
.run_and_extract_stdout();
}
#[test]
fn json_without_satoshi_index() {
let core = mockcore::spawn();
let (tempdir, _) = CommandBuilder::new("index update").core(&core).run();
CommandBuilder::new("index info")
.core(&core)
.temp_dir(tempdir)
.stdout_regex(
r#"\{
"blocks_indexed": 1,
"branch_pages": \d+,
"fragmented_bytes": \d+,
"index_file_size": \d+,
"index_path": ".*\.redb",
"leaf_pages": \d+,
"metadata_bytes": \d+,
"outputs_traversed": 0,
"page_size": \d+,
"sat_ranges": 0,
"stored_bytes": \d+,
"tables": .*,
"total_bytes": \d+,
"transactions": \[
\{
"starting_block_count": 0,
"starting_timestamp": \d+
\}
\],
"tree_height": \d+,
"utxos_indexed": 1
\}
"#,
)
.run_and_extract_stdout();
}
#[test]
fn transactions() {
let core = mockcore::spawn();
let (tempdir, _) = CommandBuilder::new("index update").core(&core).run();
let output = CommandBuilder::new("index info --transactions")
.temp_dir(tempdir.clone())
.core(&core)
.run_and_deserialize_output::<Vec<TransactionsOutput>>();
assert!(output.is_empty());
core.mine_blocks(10);
CommandBuilder::new("index update")
.temp_dir(tempdir.clone())
.core(&core)
.run();
let output = CommandBuilder::new("index info --transactions")
.temp_dir(tempdir.clone())
.core(&core)
.stdout_regex(".*")
.run_and_deserialize_output::<Vec<TransactionsOutput>>();
assert_eq!(output[0].start, 0);
assert_eq!(output[0].end, 1);
assert_eq!(output[0].count, 1);
core.mine_blocks(10);
CommandBuilder::new("index update")
.temp_dir(tempdir.clone())
.core(&core)
.run();
let output = CommandBuilder::new("index info --transactions")
.temp_dir(tempdir.clone())
.core(&core)
.run_and_deserialize_output::<Vec<TransactionsOutput>>();
assert_eq!(output[1].start, 1);
assert_eq!(output[1].end, 11);
assert_eq!(output[1].count, 10);
}