2020-09-28 06:18:50 +00:00
|
|
|
use std::{collections::HashMap, env::var, thread::sleep, time::Duration};
|
|
|
|
use testcontainers::{
|
2021-02-16 06:09:09 +00:00
|
|
|
core::{Container, Docker, WaitForMessage},
|
2020-09-28 06:18:50 +00:00
|
|
|
Image,
|
|
|
|
};
|
|
|
|
|
2020-11-01 23:02:28 +00:00
|
|
|
pub const MONEROD_DAEMON_CONTAINER_NAME: &str = "monerod";
|
|
|
|
pub const MONEROD_DEFAULT_NETWORK: &str = "monero_network";
|
2020-09-28 06:18:50 +00:00
|
|
|
pub const MONEROD_RPC_PORT: u16 = 48081;
|
2020-11-01 23:02:28 +00:00
|
|
|
pub const WALLET_RPC_PORT: u16 = 48083;
|
2020-09-28 06:18:50 +00:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Monero {
|
|
|
|
args: Args,
|
|
|
|
entrypoint: Option<String>,
|
2020-11-01 23:02:28 +00:00
|
|
|
wait_for_message: String,
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Image for Monero {
|
|
|
|
type Args = Args;
|
|
|
|
type EnvVars = HashMap<String, String>;
|
|
|
|
type Volumes = HashMap<String, String>;
|
|
|
|
type EntryPoint = str;
|
|
|
|
|
|
|
|
fn descriptor(&self) -> String {
|
2021-04-19 07:19:03 +00:00
|
|
|
"xmrto/monero:v0.17.2.0".to_owned()
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn wait_until_ready<D: Docker>(&self, container: &Container<'_, D, Self>) {
|
|
|
|
container
|
|
|
|
.logs()
|
|
|
|
.stdout
|
2020-11-01 23:02:28 +00:00
|
|
|
.wait_for_message(&self.wait_for_message)
|
2020-09-28 06:18:50 +00:00
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let additional_sleep_period =
|
|
|
|
var("MONERO_ADDITIONAL_SLEEP_PERIOD").map(|value| value.parse());
|
|
|
|
|
|
|
|
if let Ok(Ok(sleep_period)) = additional_sleep_period {
|
|
|
|
let sleep_period = Duration::from_millis(sleep_period);
|
|
|
|
|
|
|
|
sleep(sleep_period)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn args(&self) -> <Self as Image>::Args {
|
|
|
|
self.args.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn volumes(&self) -> Self::Volumes {
|
|
|
|
HashMap::new()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn env_vars(&self) -> Self::EnvVars {
|
|
|
|
HashMap::new()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn with_args(self, args: <Self as Image>::Args) -> Self {
|
|
|
|
Monero { args, ..self }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn with_entrypoint(self, entrypoint: &Self::EntryPoint) -> Self {
|
|
|
|
Self {
|
|
|
|
entrypoint: Some(entrypoint.to_string()),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn entrypoint(&self) -> Option<String> {
|
|
|
|
self.entrypoint.to_owned()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Monero {
|
|
|
|
fn default() -> Self {
|
|
|
|
Monero {
|
|
|
|
args: Args::default(),
|
|
|
|
entrypoint: Some("".into()),
|
2020-11-02 03:42:08 +00:00
|
|
|
wait_for_message: "core RPC server started ok".to_string(),
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Monero {
|
2020-11-02 05:00:35 +00:00
|
|
|
pub fn wallet(name: &str, daemon_address: String) -> Self {
|
|
|
|
let wallet = WalletArgs::new(name, daemon_address, WALLET_RPC_PORT);
|
2020-11-01 23:02:28 +00:00
|
|
|
let default = Monero::default();
|
2020-09-28 06:18:50 +00:00
|
|
|
Self {
|
|
|
|
args: Args {
|
2020-11-01 23:02:28 +00:00
|
|
|
image_args: ImageArgs::WalletArgs(wallet),
|
2020-09-28 06:18:50 +00:00
|
|
|
},
|
2020-11-01 23:02:28 +00:00
|
|
|
wait_for_message: "Run server thread name: RPC".to_string(),
|
|
|
|
..default
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 23:02:28 +00:00
|
|
|
#[derive(Clone, Debug)]
|
2020-09-28 06:18:50 +00:00
|
|
|
pub struct Args {
|
2020-11-01 23:02:28 +00:00
|
|
|
image_args: ImageArgs,
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
|
2020-11-01 23:02:28 +00:00
|
|
|
impl Default for Args {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
image_args: ImageArgs::MonerodArgs(MonerodArgs::default()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub enum ImageArgs {
|
2020-10-29 01:52:29 +00:00
|
|
|
MonerodArgs(MonerodArgs),
|
|
|
|
WalletArgs(WalletArgs),
|
|
|
|
}
|
|
|
|
|
2020-11-01 23:02:28 +00:00
|
|
|
impl ImageArgs {
|
|
|
|
fn args(&self) -> String {
|
|
|
|
match self {
|
|
|
|
ImageArgs::MonerodArgs(monerod_args) => monerod_args.args(),
|
|
|
|
ImageArgs::WalletArgs(wallet_args) => wallet_args.args(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-28 06:18:50 +00:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct MonerodArgs {
|
|
|
|
pub regtest: bool,
|
|
|
|
pub offline: bool,
|
|
|
|
pub rpc_payment_allow_free_loopback: bool,
|
|
|
|
pub confirm_external_bind: bool,
|
|
|
|
pub non_interactive: bool,
|
|
|
|
pub no_igd: bool,
|
|
|
|
pub hide_my_port: bool,
|
|
|
|
pub rpc_bind_ip: String,
|
|
|
|
pub rpc_bind_port: u16,
|
|
|
|
pub fixed_difficulty: u32,
|
|
|
|
pub data_dir: String,
|
2020-11-01 23:02:28 +00:00
|
|
|
pub log_level: u32,
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct WalletArgs {
|
|
|
|
pub disable_rpc_login: bool,
|
|
|
|
pub confirm_external_bind: bool,
|
2020-11-02 03:42:08 +00:00
|
|
|
pub wallet_dir: String,
|
2020-09-28 06:18:50 +00:00
|
|
|
pub rpc_bind_ip: String,
|
|
|
|
pub rpc_bind_port: u16,
|
|
|
|
pub daemon_address: String,
|
|
|
|
pub log_level: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sane defaults for a mainnet regtest instance.
|
|
|
|
impl Default for MonerodArgs {
|
|
|
|
fn default() -> Self {
|
|
|
|
MonerodArgs {
|
|
|
|
regtest: true,
|
|
|
|
offline: true,
|
|
|
|
rpc_payment_allow_free_loopback: true,
|
|
|
|
confirm_external_bind: true,
|
|
|
|
non_interactive: true,
|
|
|
|
no_igd: true,
|
|
|
|
hide_my_port: true,
|
|
|
|
rpc_bind_ip: "0.0.0.0".to_string(),
|
|
|
|
rpc_bind_port: MONEROD_RPC_PORT,
|
|
|
|
fixed_difficulty: 1,
|
|
|
|
data_dir: "/monero".to_string(),
|
2020-11-01 23:02:28 +00:00
|
|
|
log_level: 2,
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MonerodArgs {
|
|
|
|
// Return monerod args as is single string so we can pass it to bash.
|
|
|
|
fn args(&self) -> String {
|
|
|
|
let mut args = vec!["monerod".to_string()];
|
|
|
|
|
|
|
|
if self.regtest {
|
|
|
|
args.push("--regtest".to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.offline {
|
|
|
|
args.push("--offline".to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.rpc_payment_allow_free_loopback {
|
|
|
|
args.push("--rpc-payment-allow-free-loopback".to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.confirm_external_bind {
|
|
|
|
args.push("--confirm-external-bind".to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.non_interactive {
|
|
|
|
args.push("--non-interactive".to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.no_igd {
|
|
|
|
args.push("--no-igd".to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.hide_my_port {
|
|
|
|
args.push("--hide-my-port".to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
if !self.rpc_bind_ip.is_empty() {
|
|
|
|
args.push(format!("--rpc-bind-ip {}", self.rpc_bind_ip));
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.rpc_bind_port != 0 {
|
|
|
|
args.push(format!("--rpc-bind-port {}", self.rpc_bind_port));
|
|
|
|
}
|
|
|
|
|
|
|
|
if !self.data_dir.is_empty() {
|
|
|
|
args.push(format!("--data-dir {}", self.data_dir));
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.fixed_difficulty != 0 {
|
|
|
|
args.push(format!("--fixed-difficulty {}", self.fixed_difficulty));
|
|
|
|
}
|
|
|
|
|
2020-11-01 23:02:28 +00:00
|
|
|
if self.log_level != 0 {
|
|
|
|
args.push(format!("--log-level {}", self.log_level));
|
|
|
|
}
|
|
|
|
|
2020-09-28 06:18:50 +00:00
|
|
|
args.join(" ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl WalletArgs {
|
2020-11-02 05:00:35 +00:00
|
|
|
pub fn new(wallet_name: &str, daemon_address: String, rpc_port: u16) -> Self {
|
2020-09-28 06:18:50 +00:00
|
|
|
WalletArgs {
|
|
|
|
disable_rpc_login: true,
|
|
|
|
confirm_external_bind: true,
|
2020-11-02 03:42:08 +00:00
|
|
|
wallet_dir: wallet_name.into(),
|
2020-09-28 06:18:50 +00:00
|
|
|
rpc_bind_ip: "0.0.0.0".into(),
|
|
|
|
rpc_bind_port: rpc_port,
|
|
|
|
daemon_address,
|
|
|
|
log_level: 4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return monero-wallet-rpc args as is single string so we can pass it to bash.
|
|
|
|
fn args(&self) -> String {
|
|
|
|
let mut args = vec!["monero-wallet-rpc".to_string()];
|
|
|
|
|
|
|
|
if self.disable_rpc_login {
|
|
|
|
args.push("--disable-rpc-login".to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.confirm_external_bind {
|
|
|
|
args.push("--confirm-external-bind".to_string())
|
|
|
|
}
|
|
|
|
|
2020-11-02 03:42:08 +00:00
|
|
|
if !self.wallet_dir.is_empty() {
|
|
|
|
args.push(format!("--wallet-dir {}", self.wallet_dir));
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !self.rpc_bind_ip.is_empty() {
|
|
|
|
args.push(format!("--rpc-bind-ip {}", self.rpc_bind_ip));
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.rpc_bind_port != 0 {
|
|
|
|
args.push(format!("--rpc-bind-port {}", self.rpc_bind_port));
|
|
|
|
}
|
|
|
|
|
|
|
|
if !self.daemon_address.is_empty() {
|
|
|
|
args.push(format!("--daemon-address {}", self.daemon_address));
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.log_level != 0 {
|
|
|
|
args.push(format!("--log-level {}", self.log_level));
|
|
|
|
}
|
|
|
|
|
|
|
|
args.join(" ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntoIterator for Args {
|
|
|
|
type Item = String;
|
|
|
|
type IntoIter = ::std::vec::IntoIter<String>;
|
|
|
|
|
|
|
|
fn into_iter(self) -> <Self as IntoIterator>::IntoIter {
|
2021-02-03 05:20:59 +00:00
|
|
|
vec![
|
|
|
|
"/bin/bash".to_string(),
|
|
|
|
"-c".to_string(),
|
|
|
|
format!("{} ", self.image_args.args()),
|
|
|
|
]
|
|
|
|
.into_iter()
|
2020-09-28 06:18:50 +00:00
|
|
|
}
|
|
|
|
}
|