|
| 1 | +use crate::utils::find_available_port; |
| 2 | +use crate::{Node, Spec}; |
| 3 | +use ckb_logger::{error, info}; |
| 4 | +use std::process::Child; |
| 5 | + |
| 6 | +use super::TorServer; |
| 7 | + |
| 8 | +// create a sender and receiver for tor_server signal |
| 9 | +static TOR_SERVER_PROCESS: std::sync::LazyLock<std::sync::Mutex<Option<Child>>> = |
| 10 | + std::sync::LazyLock::new(|| std::sync::Mutex::new(None)); |
| 11 | + |
| 12 | +static TOR_SERVER: std::sync::OnceLock<TorServer> = std::sync::OnceLock::new(); |
| 13 | + |
| 14 | +struct TorServerGuard {} |
| 15 | + |
| 16 | +impl Drop for TorServerGuard { |
| 17 | + fn drop(&mut self) { |
| 18 | + let mut child = TOR_SERVER_PROCESS.lock().unwrap(); |
| 19 | + let child = child.as_mut().unwrap(); |
| 20 | + info!("killing tor server... {}", child.id()); |
| 21 | + match child.kill() { |
| 22 | + Ok(_) => { |
| 23 | + info!("tor server exit success"); |
| 24 | + } |
| 25 | + Err(e) => { |
| 26 | + error!("tor server exit failed: {:?}", e); |
| 27 | + } |
| 28 | + }; |
| 29 | + } |
| 30 | +} |
| 31 | + |
| 32 | +pub struct TorServiceContainsPublicAddr; |
| 33 | + |
| 34 | +impl Spec for TorServiceContainsPublicAddr { |
| 35 | + crate::setup!(num_nodes: 1); |
| 36 | + |
| 37 | + fn before_run(&self) -> Vec<Node> { |
| 38 | + let tor_server = TorServer::new(); |
| 39 | + |
| 40 | + TOR_SERVER.set(tor_server.clone()); |
| 41 | + |
| 42 | + let tor_server_process = tor_server.tor_start(); |
| 43 | + *TOR_SERVER_PROCESS.lock().unwrap() = Some(tor_server_process); |
| 44 | + |
| 45 | + std::thread::sleep(std::time::Duration::from_secs(5)); |
| 46 | + |
| 47 | + let mut node0 = Node::new(self.name(), "node0"); |
| 48 | + node0.modify_app_config(|config: &mut ckb_app_config::CKBAppConfig| { |
| 49 | + config.network.onion.listen_on_onion = true; |
| 50 | + config.network.onion.onion_server = |
| 51 | + Some(format!("127.0.0.1:{}", tor_server.socks_port)); |
| 52 | + config.network.onion.tor_controller = format!("127.0.0.1:{}", tor_server.control_port); |
| 53 | + }); |
| 54 | + |
| 55 | + node0.start(); |
| 56 | + |
| 57 | + vec![node0] |
| 58 | + } |
| 59 | + |
| 60 | + fn run(&self, nodes: &mut Vec<Node>) { |
| 61 | + // when _tor_server_guard dropped, the tor server will be killed by Drop |
| 62 | + let _tor_server_guard = TorServerGuard {}; |
| 63 | + |
| 64 | + let node = &nodes[0]; |
| 65 | + |
| 66 | + let rpc_client = node.rpc_client(); |
| 67 | + let node_info = rpc_client.local_node_info(); |
| 68 | + |
| 69 | + let node_onion_addrs: Vec<_> = node_info |
| 70 | + .addresses |
| 71 | + .iter() |
| 72 | + .filter(|addr| { |
| 73 | + // check contains the onion address |
| 74 | + info!("addr: {:?}", addr.address); |
| 75 | + addr.address.contains("/onion3") |
| 76 | + }) |
| 77 | + .collect(); |
| 78 | + assert!( |
| 79 | + !node_onion_addrs.is_empty(), |
| 80 | + "node should contains onion address" |
| 81 | + ); |
| 82 | + |
| 83 | + let node_onion_p2p_addr: String = node_onion_addrs.first().unwrap().address.clone(); |
| 84 | + info!("node_onion_p2p_addr: {}", node_onion_p2p_addr); |
| 85 | + } |
| 86 | +} |
0 commit comments