forked from fractal-bitcoin/ord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_server.rs
142 lines (119 loc) Β· 3.94 KB
/
test_server.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
use {
super::*,
axum_server::Handle,
bitcoincore_rpc::{Auth, Client, RpcApi},
ord::{parse_ord_server_args, Index},
reqwest::blocking::Response,
};
pub(crate) struct TestServer {
bitcoin_rpc_url: String,
ord_server_handle: Handle,
port: u16,
#[allow(unused)]
tempdir: TempDir,
}
impl TestServer {
pub(crate) fn spawn(core: &mockcore::Handle) -> Self {
Self::spawn_with_server_args(core, &[], &[])
}
pub(crate) fn spawn_with_args(core: &mockcore::Handle, ord_args: &[&str]) -> Self {
Self::spawn_with_server_args(core, ord_args, &[])
}
pub(crate) fn spawn_with_server_args(
core: &mockcore::Handle,
ord_args: &[&str],
ord_server_args: &[&str],
) -> Self {
let tempdir = TempDir::new().unwrap();
let cookiefile = tempdir.path().join("cookie");
fs::write(&cookiefile, "username:password").unwrap();
let port = TcpListener::bind("127.0.0.1:0")
.unwrap()
.local_addr()
.unwrap()
.port();
let (settings, server) = parse_ord_server_args(&format!(
"ord --bitcoin-rpc-url {} --cookie-file {} --bitcoin-data-dir {} --datadir {} {} server {} --http-port {port} --address 127.0.0.1",
core.url(),
cookiefile.to_str().unwrap(),
tempdir.path().display(),
tempdir.path().display(),
ord_args.join(" "),
ord_server_args.join(" "),
));
let index = Arc::new(Index::open(&settings).unwrap());
let ord_server_handle = Handle::new();
{
let index = index.clone();
let ord_server_handle = ord_server_handle.clone();
thread::spawn(|| server.run(settings, index, ord_server_handle).unwrap());
}
for i in 0.. {
match reqwest::blocking::get(format!("http://127.0.0.1:{port}/status")) {
Ok(_) => break,
Err(err) => {
if i == 400 {
panic!("ord server failed to start: {err}");
}
}
}
thread::sleep(Duration::from_millis(50));
}
Self {
bitcoin_rpc_url: core.url(),
ord_server_handle,
port,
tempdir,
}
}
pub(crate) fn url(&self) -> Url {
format!("http://127.0.0.1:{}", self.port).parse().unwrap()
}
#[track_caller]
pub(crate) fn assert_response_regex(&self, path: impl AsRef<str>, regex: impl AsRef<str>) {
self.sync_server();
let path = path.as_ref();
let response = reqwest::blocking::get(self.url().join(path.as_ref()).unwrap()).unwrap();
let status = response.status();
assert_eq!(status, StatusCode::OK, "bad status for {path}: {status}");
let text = response.text().unwrap();
assert_regex_match!(text, regex.as_ref());
}
#[track_caller]
pub(crate) fn assert_response(&self, path: impl AsRef<str>, expected_response: &str) {
self.sync_server();
let response = reqwest::blocking::get(self.url().join(path.as_ref()).unwrap()).unwrap();
assert_eq!(
response.status(),
StatusCode::OK,
"{}",
response.text().unwrap()
);
pretty_assert_eq!(response.text().unwrap(), expected_response);
}
pub(crate) fn request(&self, path: impl AsRef<str>) -> Response {
self.sync_server();
reqwest::blocking::get(self.url().join(path.as_ref()).unwrap()).unwrap()
}
pub(crate) fn json_request(&self, path: impl AsRef<str>) -> Response {
self.sync_server();
let client = reqwest::blocking::Client::new();
client
.get(self.url().join(path.as_ref()).unwrap())
.header(reqwest::header::ACCEPT, "application/json")
.send()
.unwrap()
}
pub(crate) fn sync_server(&self) {
let client = Client::new(&self.bitcoin_rpc_url, Auth::None).unwrap();
let chain_block_count = client.get_block_count().unwrap() + 1;
let response = reqwest::blocking::get(self.url().join("/update").unwrap()).unwrap();
assert_eq!(response.status(), StatusCode::OK);
assert!(response.text().unwrap().parse::<u64>().unwrap() >= chain_block_count);
}
}
impl Drop for TestServer {
fn drop(&mut self) {
self.ord_server_handle.shutdown();
}
}