forked from ordinals/ord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.rs
143 lines (123 loc) Β· 3.15 KB
/
settings.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
143
use super::*;
#[test]
fn default() {
CommandBuilder::new("settings")
.integration_test(false)
.stdout_regex(
r#"\{
"bitcoin_data_dir": ".*(Bitcoin|bitcoin)",
"bitcoin_rpc_limit": 12,
"bitcoin_rpc_password": null,
"bitcoin_rpc_url": "127.0.0.1:8332",
"bitcoin_rpc_username": null,
"chain": "mainnet",
"commit_interval": 5000,
"config": null,
"config_dir": null,
"cookie_file": ".*\.cookie",
"data_dir": ".*",
"height_limit": null,
"hidden": \[\],
"http_port": null,
"index": ".*index\.redb",
"index_addresses": false,
"index_cache_size": \d+,
"index_runes": false,
"index_sats": false,
"index_transactions": false,
"integration_test": false,
"no_index_inscriptions": false,
"server_password": null,
"server_url": null,
"server_username": null
\}
"#,
)
.run_and_extract_stdout();
}
#[test]
fn config_is_loaded_from_config_option() {
let tempdir = TempDir::new().unwrap();
let config = tempdir.path().join("ord.yaml");
fs::write(&config, "chain: regtest").unwrap();
CommandBuilder::new(format!("--config {} settings", config.to_str().unwrap()))
.stdout_regex(
r#".*
"chain": "regtest",
.*"#,
)
.run_and_extract_stdout();
}
#[test]
fn config_invalid_error_message() {
let tempdir = TempDir::new().unwrap();
let config = tempdir.path().join("ord.yaml");
fs::write(&config, "foo").unwrap();
CommandBuilder::new(format!("--config {} settings", config.to_str().unwrap()))
.stderr_regex("error: failed to deserialize config file `.*ord.yaml`\n\nbecause:.*")
.expected_exit_code(1)
.run_and_extract_stdout();
}
#[test]
fn config_not_found_error_message() {
let tempdir = TempDir::new().unwrap();
let config = tempdir.path().join("ord.yaml");
CommandBuilder::new(format!("--config {} settings", config.to_str().unwrap()))
.stderr_regex("error: failed to open config file `.*ord.yaml`\n\nbecause:.*")
.expected_exit_code(1)
.run_and_extract_stdout();
}
#[test]
fn config_is_loaded_from_config_dir() {
let tempdir = TempDir::new().unwrap();
fs::write(tempdir.path().join("ord.yaml"), "chain: regtest").unwrap();
CommandBuilder::new(format!(
"--config-dir {} settings",
tempdir.path().to_str().unwrap()
))
.stdout_regex(
r#".*
"chain": "regtest",
.*"#,
)
.run_and_extract_stdout();
}
#[test]
fn config_is_loaded_from_data_dir() {
CommandBuilder::new("settings")
.write("ord.yaml", "chain: regtest")
.stdout_regex(
r#".*
"chain": "regtest",
.*"#,
)
.run_and_extract_stdout();
}
#[test]
fn env_is_loaded() {
CommandBuilder::new("settings")
.stdout_regex(
r#".*
"chain": "mainnet",
.*"#,
)
.run_and_extract_stdout();
CommandBuilder::new("settings")
.env("ORD_CHAIN", "regtest")
.stdout_regex(
r#".*
"chain": "regtest",
.*"#,
)
.run_and_extract_stdout();
}
#[cfg(unix)]
#[test]
fn invalid_env_error_message() {
use std::os::unix::ffi::OsStringExt;
CommandBuilder::new("settings")
.env("ORD_BAR", OsString::from_vec(b"\xFF".into()))
.stderr_regex("error: environment variable `ORD_BAR` not valid unicode: `οΏ½`\n")
.expected_exit_code(1)
.run_and_extract_stdout();
}