forked from StellarRouter/StellarRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
393 lines (337 loc) · 11.3 KB
/
Copy pathlib.rs
File metadata and controls
393 lines (337 loc) · 11.3 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
//! Shared integration test helpers for stellar-router.
use std::env;
use std::process::Command;
use std::time::Duration;
/// Configuration for Stellar testnet integration tests.
#[derive(Debug, Clone)]
pub struct TestnetConfig {
pub network: String,
pub rpc_url: String,
pub network_passphrase: String,
}
impl Default for TestnetConfig {
fn default() -> Self {
Self {
network: env::var("STELLAR_NETWORK").unwrap_or_else(|_| "testnet".to_string()),
rpc_url: env::var("STELLAR_RPC_URL")
.unwrap_or_else(|_| "https://soroban-testnet.stellar.org".to_string()),
network_passphrase: env::var("STELLAR_NETWORK_PASSPHRASE")
.unwrap_or_else(|_| "Test SDF Network ; September 2015".to_string()),
}
}
}
/// Test account with keypair.
#[derive(Debug, Clone)]
pub struct TestAccount {
pub address: String,
pub secret: String,
}
impl TestAccount {
/// Generate a new test account.
pub fn generate() -> Result<Self, String> {
let output = Command::new("stellar")
.args(["keys", "generate", "--no-fund"])
.output()
.map_err(|e| format!("Failed to generate keypair: {}", e))?;
if !output.status.success() {
return Err(format!(
"stellar keys generate failed: {}",
String::from_utf8_lossy(&output.stderr)
));
}
let stdout = String::from_utf8_lossy(&output.stdout);
let lines: Vec<&str> = stdout.lines().collect();
let address = lines
.iter()
.find(|l| l.contains("Public key:"))
.and_then(|l| l.split(':').nth(1))
.map(|s| s.trim().to_string())
.ok_or("Failed to parse public key")?;
let secret = lines
.iter()
.find(|l| l.contains("Secret key:"))
.and_then(|l| l.split(':').nth(1))
.map(|s| s.trim().to_string())
.ok_or("Failed to parse secret key")?;
Ok(Self { address, secret })
}
/// Fund this account using Friendbot.
pub fn fund(&self, network: &str) -> Result<(), String> {
let output = Command::new("stellar")
.args(["keys", "fund", &self.address, "--network", network])
.output()
.map_err(|e| format!("Failed to fund account: {}", e))?;
if !output.status.success() {
return Err(format!(
"Friendbot funding failed: {}",
String::from_utf8_lossy(&output.stderr)
));
}
std::thread::sleep(Duration::from_secs(2));
Ok(())
}
}
/// Deployed contract instance.
#[derive(Debug, Clone)]
pub struct DeployedContract {
pub contract_id: String,
pub wasm_path: String,
pub name: String,
pub network: String,
}
impl DeployedContract {
/// Deploy a contract to testnet.
pub fn deploy(
wasm_path: &str,
name: &str,
source_account: &TestAccount,
network: &str,
) -> Result<Self, String> {
let output = Command::new("stellar")
.args([
"contract",
"deploy",
"--wasm",
wasm_path,
"--network",
network,
"--source",
&source_account.address,
])
.output()
.map_err(|e| format!("Failed to deploy contract: {}", e))?;
if !output.status.success() {
return Err(format!(
"Contract deployment failed: {}",
String::from_utf8_lossy(&output.stderr)
));
}
let contract_id = String::from_utf8_lossy(&output.stdout).trim().to_string();
std::thread::sleep(Duration::from_secs(2));
Ok(Self {
contract_id,
wasm_path: wasm_path.to_string(),
name: name.to_string(),
network: network.to_string(),
})
}
/// Invoke a contract method.
pub fn invoke(
&self,
method: &str,
args: &[&str],
source_account: &TestAccount,
) -> Result<String, String> {
let mut cmd_args = vec![
"contract",
"invoke",
"--id",
&self.contract_id,
"--network",
&self.network,
"--source",
&source_account.address,
"--",
method,
];
cmd_args.extend_from_slice(args);
let output = Command::new("stellar")
.args(&cmd_args)
.output()
.map_err(|e| format!("Failed to invoke contract: {}", e))?;
if !output.status.success() {
return Err(format!(
"Contract invocation failed: {}",
String::from_utf8_lossy(&output.stderr)
));
}
Ok(String::from_utf8_lossy(&output.stdout).trim().to_string())
}
/// Try to invoke a contract method, expecting it to fail.
pub fn try_invoke(
&self,
method: &str,
args: &[&str],
source_account: &TestAccount,
) -> Result<String, String> {
let mut cmd_args = vec![
"contract",
"invoke",
"--id",
&self.contract_id,
"--network",
&self.network,
"--source",
&source_account.address,
"--",
method,
];
cmd_args.extend_from_slice(args);
let output = Command::new("stellar")
.args(&cmd_args)
.output()
.map_err(|e| format!("Failed to invoke contract: {}", e))?;
let stdout = String::from_utf8_lossy(&output.stdout).trim().to_string();
let stderr = String::from_utf8_lossy(&output.stderr).trim().to_string();
if !output.status.success() {
Err(stderr)
} else {
Ok(stdout)
}
}
}
/// Shared integration-test fixture that deploys and initializes all contracts.
pub struct TestSuite {
pub config: TestnetConfig,
pub admin: TestAccount,
pub user1: TestAccount,
pub user2: TestAccount,
pub router_core: Option<DeployedContract>,
pub router_registry: Option<DeployedContract>,
pub router_access: Option<DeployedContract>,
pub router_middleware: Option<DeployedContract>,
pub router_timelock: Option<DeployedContract>,
pub router_multicall: Option<DeployedContract>,
}
impl TestSuite {
/// Build and fully initialize the suite.
pub fn setup() -> Result<Self, String> {
let mut suite = Self::new()?;
suite.deploy_all_contracts()?;
suite.initialize_all_contracts()?;
Ok(suite)
}
/// Optional cleanup hook for local runs.
pub fn teardown(&self) {
println!("Test suite teardown complete");
}
pub fn core(&self) -> Result<&DeployedContract, String> {
self.router_core
.as_ref()
.ok_or("Core contract not deployed".to_string())
}
pub fn registry(&self) -> Result<&DeployedContract, String> {
self.router_registry
.as_ref()
.ok_or("Registry contract not deployed".to_string())
}
pub fn access(&self) -> Result<&DeployedContract, String> {
self.router_access
.as_ref()
.ok_or("Access contract not deployed".to_string())
}
pub fn middleware(&self) -> Result<&DeployedContract, String> {
self.router_middleware
.as_ref()
.ok_or("Middleware contract not deployed".to_string())
}
pub fn timelock(&self) -> Result<&DeployedContract, String> {
self.router_timelock
.as_ref()
.ok_or("Timelock contract not deployed".to_string())
}
pub fn multicall(&self) -> Result<&DeployedContract, String> {
self.router_multicall
.as_ref()
.ok_or("Multicall contract not deployed".to_string())
}
fn new() -> Result<Self, String> {
let config = TestnetConfig::default();
let admin = TestAccount::generate()?;
admin.fund(&config.network)?;
let user1 = TestAccount::generate()?;
user1.fund(&config.network)?;
let user2 = TestAccount::generate()?;
user2.fund(&config.network)?;
Ok(Self {
config,
admin,
user1,
user2,
router_core: None,
router_registry: None,
router_access: None,
router_middleware: None,
router_timelock: None,
router_multicall: None,
})
}
fn deploy_all_contracts(&mut self) -> Result<(), String> {
let network = &self.config.network;
self.router_registry = Some(DeployedContract::deploy(
"target/wasm32-unknown-unknown/release/router_registry.wasm",
"router-registry",
&self.admin,
network,
)?);
self.router_access = Some(DeployedContract::deploy(
"target/wasm32-unknown-unknown/release/router_access.wasm",
"router-access",
&self.admin,
network,
)?);
self.router_middleware = Some(DeployedContract::deploy(
"target/wasm32-unknown-unknown/release/router_middleware.wasm",
"router-middleware",
&self.admin,
network,
)?);
self.router_timelock = Some(DeployedContract::deploy(
"target/wasm32-unknown-unknown/release/router_timelock.wasm",
"router-timelock",
&self.admin,
network,
)?);
self.router_multicall = Some(DeployedContract::deploy(
"target/wasm32-unknown-unknown/release/router_multicall.wasm",
"router-multicall",
&self.admin,
network,
)?);
self.router_core = Some(DeployedContract::deploy(
"target/wasm32-unknown-unknown/release/router_core.wasm",
"router-core",
&self.admin,
network,
)?);
Ok(())
}
fn initialize_all_contracts(&self) -> Result<(), String> {
if let Some(ref core) = self.router_core {
core.invoke("initialize", &["--admin", &self.admin.address], &self.admin)?;
}
if let Some(ref registry) = self.router_registry {
registry.invoke("initialize", &["--admin", &self.admin.address], &self.admin)?;
}
if let Some(ref access) = self.router_access {
access.invoke(
"initialize",
&["--super_admin", &self.admin.address],
&self.admin,
)?;
}
if let Some(ref middleware) = self.router_middleware {
middleware.invoke("initialize", &["--admin", &self.admin.address], &self.admin)?;
}
if let Some(ref timelock) = self.router_timelock {
timelock.invoke(
"initialize",
&["--admin", &self.admin.address, "--min_delay", "60"],
&self.admin,
)?;
}
if let Some(ref multicall) = self.router_multicall {
multicall.invoke(
"initialize",
&["--admin", &self.admin.address, "--max_batch_size", "10"],
&self.admin,
)?;
}
Ok(())
}
}
impl Drop for TestSuite {
fn drop(&mut self) {
self.teardown();
}
}