// Copyright 2024 RustFS Team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. //! Common utilities for all E2E tests //! //! This module provides general-purpose functionality needed across //! different test modules, including: //! - RustFS server process management //! - AWS S3 client creation and configuration //! - Basic health checks and server readiness detection //! - Common test constants and utilities use aws_sdk_s3::config::{Credentials, Region}; use aws_sdk_s3::{Client, Config}; use aws_smithy_http_client::Builder as SmithyHttpClientBuilder; use reqwest::Client as HttpClient; use std::ffi::OsStr; use std::fs as stdfs; use std::path::{Path, PathBuf}; use std::process::{Child, Command}; use std::sync::Once; use std::time::Duration; use tokio::fs; use tokio::net::TcpStream; use tokio::time::sleep; use tracing::{error, info, warn}; use uuid::Uuid; use walkdir::WalkDir; // Common constants for all E2E tests pub const DEFAULT_ACCESS_KEY: &str = "rustfsadmin"; pub const DEFAULT_SECRET_KEY: &str = "rustfsadmin"; pub const ENV_RUSTFS_BUILD_FEATURES: &str = "RUSTFS_BUILD_FEATURES"; pub const TEST_BUCKET: &str = "e2e-test-bucket"; const RUSTFS_FULL_FEATURE: &str = "full"; fn build_test_s3_config(endpoint_url: &str, access_key: &str, secret_key: &str, provider_name: &'static str) -> Config { let credentials = Credentials::new(access_key, secret_key, None, None, provider_name); let mut config = Config::builder() .credentials_provider(credentials) .region(Region::new("us-east-1")) .endpoint_url(endpoint_url) .force_path_style(true) .behavior_version_latest(); if endpoint_url.starts_with("http://") { config = config.http_client(SmithyHttpClientBuilder::new().build_http()); } config.build() } pub fn workspace_root() -> PathBuf { let mut path = PathBuf::from(env!("CARGO_MANIFEST_DIR")); path.pop(); // e2e_test path.pop(); // crates path } pub fn local_http_client() -> HttpClient { HttpClient::builder() .no_proxy() .build() .expect("failed to build local reqwest client") } /// Resolve the RustFS binary relative to the workspace. pub fn rustfs_binary_path() -> PathBuf { rustfs_binary_path_with_features(requested_rustfs_build_features().as_deref()) } /// Resolve the RustFS binary relative to the workspace, optionally requesting build features. pub fn rustfs_binary_path_with_features(requested_features: Option<&str>) -> PathBuf { if let Some(path) = std::env::var_os("CARGO_BIN_EXE_rustfs") { return PathBuf::from(path); } let requested_features = requested_features.and_then(normalize_rustfs_build_features); let mut binary_path = workspace_root(); binary_path.push("target"); let profile_dir = if cfg!(debug_assertions) { "debug" } else { "release" }; binary_path.push(profile_dir); binary_path.push(format!("rustfs{}", std::env::consts::EXE_SUFFIX)); let features_match = binary_features_match(&binary_path, requested_features.as_deref()); let source_is_newer = workspace_sources_newer_than_binary(&binary_path); let can_reuse_inside_e2e = running_inside_e2e_test_binary() && requested_features.is_none() && features_match; if binary_path.is_file() && features_match && (!source_is_newer || can_reuse_inside_e2e) { if source_is_newer { warn!( "RustFS binary at {:?} appears older than workspace sources; reusing it inside cargo test to avoid nested builds", binary_path ); } info!("Using existing RustFS binary at {:?}", binary_path); return binary_path; } info!("Building RustFS binary to ensure it's up to date..."); build_rustfs_binary(requested_features.as_deref()); info!("Using RustFS binary at {:?}", binary_path); binary_path } fn workspace_sources_newer_than_binary(binary_path: &PathBuf) -> bool { let Ok(binary_meta) = std::fs::metadata(binary_path) else { return true; }; let Ok(binary_modified) = binary_meta.modified() else { return true; }; let workspace = workspace_root(); let watch_roots = [ workspace.join("Cargo.toml"), workspace.join("Cargo.lock"), workspace.join("rustfs"), workspace.join("crates"), ]; watch_roots.iter().any(|path| path_is_newer_than(binary_modified, path)) } fn running_inside_e2e_test_binary() -> bool { std::env::var("CARGO_PKG_NAME").is_ok_and(|value| value == "e2e_test") } pub fn requested_rustfs_build_features() -> Option { std::env::var(ENV_RUSTFS_BUILD_FEATURES) .ok() .and_then(|value| normalize_rustfs_build_features(&value)) } pub fn normalize_rustfs_build_features(features: &str) -> Option { let features = features .split(',') .map(str::trim) .filter(|feature| !feature.is_empty()) .map(str::to_ascii_lowercase) .collect::>(); if features.is_empty() { None } else { Some(features.join(",")) } } pub fn rustfs_build_feature_enabled(requested_features: Option<&str>, required_feature: &str) -> bool { let Some(requested_features) = requested_features.and_then(normalize_rustfs_build_features) else { return true; }; requested_features .split(',') .any(|feature| feature.eq_ignore_ascii_case(RUSTFS_FULL_FEATURE) || feature.eq_ignore_ascii_case(required_feature)) } fn rustfs_binary_features_stamp_path(binary_path: &Path) -> PathBuf { binary_path.with_extension("features") } fn binary_features_match(binary_path: &Path, requested_features: Option<&str>) -> bool { let stamp_path = rustfs_binary_features_stamp_path(binary_path); let recorded = stdfs::read_to_string(stamp_path) .ok() .and_then(|value| normalize_rustfs_build_features(&value)); let requested = requested_features.and_then(normalize_rustfs_build_features); match requested.as_deref() { Some(features) => recorded.as_deref() == Some(features), None => recorded.is_none(), } } fn path_is_newer_than(binary_modified: std::time::SystemTime, path: &Path) -> bool { if path.is_file() { return std::fs::metadata(path) .and_then(|meta| meta.modified()) .map(|modified| modified > binary_modified) .unwrap_or(false); } if !path.is_dir() { return false; } WalkDir::new(path) .into_iter() .filter_entry(|entry| { let name = entry.file_name(); name != OsStr::new("target") && name != OsStr::new(".git") }) .filter_map(Result::ok) .filter(|entry| entry.file_type().is_file()) .any(|entry| { std::fs::metadata(entry.path()) .and_then(|meta| meta.modified()) .map(|modified| modified > binary_modified) .unwrap_or(false) }) } /// Build the RustFS binary using cargo fn build_rustfs_binary(requested_features: Option<&str>) { let workspace = workspace_root(); info!("Building RustFS binary from workspace: {:?}", workspace); let _profile = if cfg!(debug_assertions) { info!("Building in debug mode"); "dev" } else { info!("Building in release mode"); "release" }; let mut cmd = Command::new("cargo"); cmd.current_dir(&workspace).args(["build", "--bin", "rustfs"]); if let Some(features) = requested_features { cmd.arg("--features").arg(features); info!("Building with features: {}", features); } if !cfg!(debug_assertions) { cmd.arg("--release"); } info!( "Executing: cargo build --bin rustfs {}", if cfg!(debug_assertions) { "" } else { "--release" } ); let output = cmd.output().expect("Failed to execute cargo build command"); if !output.status.success() { let stderr = String::from_utf8_lossy(&output.stderr); panic!("Failed to build RustFS binary. Error: {stderr}"); } let mut binary_path = workspace; binary_path.push("target"); binary_path.push(if cfg!(debug_assertions) { "debug" } else { "release" }); binary_path.push(format!("rustfs{}", std::env::consts::EXE_SUFFIX)); let stamp_path = rustfs_binary_features_stamp_path(&binary_path); if let Err(err) = stdfs::write(&stamp_path, requested_features.unwrap_or_default()) { warn!("Failed to write RustFS feature stamp {:?}: {}", stamp_path, err); } info!("✅ RustFS binary built successfully"); } fn awscurl_binary_path() -> PathBuf { std::env::var_os("AWSCURL_PATH") .map(PathBuf::from) .unwrap_or_else(|| PathBuf::from("awscurl")) } pub fn awscurl_available() -> bool { let path = awscurl_binary_path(); if path.components().count() > 1 || path.is_absolute() { return path.is_file(); } std::env::var_os("PATH") .map(|paths| std::env::split_paths(&paths).any(|dir| dir.join(&path).is_file())) .unwrap_or(false) } // Global initialization static INIT: Once = Once::new(); /// Initialize tracing for all E2E tests pub fn init_logging() { INIT.call_once(|| { tracing_subscriber::fmt().with_env_filter("rustfs=info,e2e_test=debug").init(); }); } /// RustFS server environment for E2E testing pub struct RustFSTestEnvironment { pub temp_dir: String, pub address: String, pub url: String, pub access_key: String, pub secret_key: String, pub process: Option, } impl RustFSTestEnvironment { /// Create a new test environment with unique temporary directory and port pub async fn new() -> Result> { let temp_dir = format!("/tmp/rustfs_e2e_test_{}", Uuid::new_v4()); fs::create_dir_all(&temp_dir).await?; // Use a unique port for each test environment let port = Self::find_available_port().await?; let address = format!("127.0.0.1:{port}"); let url = format!("http://{address}"); Ok(Self { temp_dir, address, url, access_key: DEFAULT_ACCESS_KEY.to_string(), secret_key: DEFAULT_SECRET_KEY.to_string(), process: None, }) } /// Create a new test environment with specific address pub async fn with_address(address: &str) -> Result> { let temp_dir = format!("/tmp/rustfs_e2e_test_{}", Uuid::new_v4()); fs::create_dir_all(&temp_dir).await?; let url = format!("http://{address}"); Ok(Self { temp_dir, address: address.to_string(), url, access_key: DEFAULT_ACCESS_KEY.to_string(), secret_key: DEFAULT_SECRET_KEY.to_string(), process: None, }) } /// Find an available port for the test pub async fn find_available_port() -> Result> { use std::net::TcpListener; let listener = TcpListener::bind("127.0.0.1:0")?; let port = listener.local_addr()?.port(); drop(listener); Ok(port) } /// Kill any existing RustFS processes pub async fn cleanup_existing_processes(&self) -> Result<(), Box> { info!("Cleaning up any existing RustFS processes for {}", self.address); for pattern in [&self.address, &self.temp_dir] { let output = Command::new("pkill").args(["-f", pattern]).output(); if let Ok(output) = output && output.status.success() { info!("Killed existing RustFS processes matching: {}", pattern); sleep(Duration::from_millis(250)).await; } } Ok(()) } fn build_start_args<'a>(&'a self, extra_args: Vec<&'a str>) -> Vec<&'a str> { let mut args = vec![ "--address", &self.address, "--access-key", &self.access_key, "--secret-key", &self.secret_key, ]; args.extend(extra_args); args.push(&self.temp_dir); args } async fn start_rustfs_server_inner( &mut self, extra_args: Vec<&str>, extra_env: &[(&str, &str)], cleanup_existing: bool, ) -> Result<(), Box> { if cleanup_existing { self.cleanup_existing_processes().await?; } let args = self.build_start_args(extra_args); info!("Starting RustFS server with args: {:?}", args); let binary_path = rustfs_binary_path(); let mut command = Command::new(&binary_path); command.env("RUST_LOG", "rustfs=info,rustfs_notify=debug"); for (key, value) in extra_env { command.env(key, value); } let process = command.args(&args).spawn()?; self.process = Some(process); // Wait for server to be ready self.wait_for_server_ready().await?; Ok(()) } /// Start RustFS server with basic configuration pub async fn start_rustfs_server(&mut self, extra_args: Vec<&str>) -> Result<(), Box> { self.start_rustfs_server_inner(extra_args, &[], true).await } /// Start RustFS server with extra child-process environment variables. pub async fn start_rustfs_server_with_env( &mut self, extra_args: Vec<&str>, extra_env: &[(&str, &str)], ) -> Result<(), Box> { self.start_rustfs_server_inner(extra_args, extra_env, true).await } /// Start RustFS server without cleaning up other running RustFS processes. /// /// This is useful for tests that need multiple independent RustFS instances /// alive at the same time. pub async fn start_rustfs_server_without_cleanup( &mut self, extra_args: Vec<&str>, ) -> Result<(), Box> { self.start_rustfs_server_inner(extra_args, &[], false).await } /// Wait for RustFS server to be ready. /// /// A listening TCP port is not sufficient here: the process may accept /// connections before the S3 stack is fully initialized, which causes /// early requests to fail intermittently. Treat readiness as "S3 API /// responds successfully" instead. pub async fn wait_for_server_ready(&self) -> Result<(), Box> { info!("Waiting for RustFS server to be ready on {}", self.address); let client = self.create_s3_client(); for i in 0..60 { if TcpStream::connect(&self.address).await.is_ok() && client.list_buckets().send().await.is_ok() { info!("✅ RustFS server is ready after {} attempts", i + 1); return Ok(()); } if i == 59 { return Err("RustFS server failed to become ready within 60 seconds".into()); } sleep(Duration::from_secs(1)).await; } Ok(()) } /// Create an AWS S3 client configured for this RustFS instance pub fn create_s3_client(&self) -> Client { Client::from_conf(build_test_s3_config(&self.url, &self.access_key, &self.secret_key, "e2e-test")) } /// Create test bucket pub async fn create_test_bucket(&self, bucket_name: &str) -> Result<(), Box> { let s3_client = self.create_s3_client(); s3_client.create_bucket().bucket(bucket_name).send().await?; info!("Created test bucket: {}", bucket_name); Ok(()) } /// Delete test bucket pub async fn delete_test_bucket(&self, bucket_name: &str) -> Result<(), Box> { let s3_client = self.create_s3_client(); let _ = s3_client.delete_bucket().bucket(bucket_name).send().await; info!("Deleted test bucket: {}", bucket_name); Ok(()) } /// Stop the RustFS server pub fn stop_server(&mut self) { if let Some(mut process) = self.process.take() { info!("Stopping RustFS server"); if let Err(e) = process.kill() { error!("Failed to kill RustFS process: {}", e); } else { let _ = process.wait(); info!("RustFS server stopped"); } } } } impl Drop for RustFSTestEnvironment { fn drop(&mut self) { self.stop_server(); // Clean up temp directory if let Err(e) = std::fs::remove_dir_all(&self.temp_dir) { warn!("Failed to clean up temp directory {}: {}", self.temp_dir, e); } } } async fn execute_awscurl_with_service( url: &str, method: &str, body: Option<&str>, access_key: &str, secret_key: &str, service: &str, ) -> Result> { let mut args = vec![ "--fail-with-body", "--service", service, "--region", "us-east-1", "--access_key", access_key, "--secret_key", secret_key, "-X", method, url, ]; if let Some(body_content) = body { args.extend(&["-d", body_content]); } info!("Executing awscurl: {} {} (service={})", method, url, service); let awscurl_path = awscurl_binary_path(); let output = Command::new(&awscurl_path).args(&args).output()?; if !output.status.success() { let stderr = String::from_utf8_lossy(&output.stderr); let stdout = String::from_utf8_lossy(&output.stdout); return Err(format!("awscurl failed: stderr='{stderr}', stdout='{stdout}'").into()); } let response = String::from_utf8_lossy(&output.stdout).to_string(); Ok(response) } /// Utility function to execute awscurl commands (SigV4 service `s3` for admin APIs). pub async fn execute_awscurl( url: &str, method: &str, body: Option<&str>, access_key: &str, secret_key: &str, ) -> Result> { execute_awscurl_with_service(url, method, body, access_key, secret_key, "s3").await } /// `POST` with SigV4 `--service sts` and explicit `Content-Type: application/x-www-form-urlencoded`. /// /// RustFS `AssumeRole` is handled on `POST /` by the admin router; `is_match` requires this /// content type so s3s routes to the custom handler instead of `Unknown operation`. pub async fn awscurl_post_sts_form_urlencoded( url: &str, body: &str, access_key: &str, secret_key: &str, ) -> Result> { let args = vec![ "--fail-with-body", "--service", "sts", "--region", "us-east-1", "--access_key", access_key, "--secret_key", secret_key, "-H", "Content-Type: application/x-www-form-urlencoded", "-X", "POST", url, "-d", body, ]; info!( "Executing awscurl: POST {} (service=sts, Content-Type=application/x-www-form-urlencoded)", url ); let awscurl_path = awscurl_binary_path(); let output = Command::new(&awscurl_path).args(&args).output()?; if !output.status.success() { let stderr = String::from_utf8_lossy(&output.stderr); let stdout = String::from_utf8_lossy(&output.stdout); return Err(format!("awscurl failed: stderr='{stderr}', stdout='{stdout}'").into()); } let response = String::from_utf8_lossy(&output.stdout).to_string(); Ok(response) } /// Helper function for POST requests pub async fn awscurl_post( url: &str, body: &str, access_key: &str, secret_key: &str, ) -> Result> { execute_awscurl(url, "POST", Some(body), access_key, secret_key).await } /// Helper function for GET requests pub async fn awscurl_get( url: &str, access_key: &str, secret_key: &str, ) -> Result> { execute_awscurl(url, "GET", None, access_key, secret_key).await } /// Helper function for PUT requests pub async fn awscurl_put( url: &str, body: &str, access_key: &str, secret_key: &str, ) -> Result> { execute_awscurl(url, "PUT", Some(body), access_key, secret_key).await } /// Helper function for DELETE requests pub async fn awscurl_delete( url: &str, access_key: &str, secret_key: &str, ) -> Result> { execute_awscurl(url, "DELETE", None, access_key, secret_key).await } /// Represents a single RustFS server instance in a test cluster. /// /// Each `ClusterNode` tracks the node's network address, base URL for /// S3-compatible requests, on-disk data directory, and the underlying /// child process handle when the node is running. pub struct ClusterNode { pub address: String, pub url: String, pub data_dir: String, pub process: Option, } /// Test environment for managing a multi-node RustFS cluster. /// /// `RustFSTestClusterEnvironment` is responsible for starting and stopping /// a group of `ClusterNode`s, managing their temporary storage directory, /// and providing the shared access and secret keys used by tests to /// interact with the cluster. pub struct RustFSTestClusterEnvironment { pub nodes: Vec, pub temp_dir: String, pub access_key: String, pub secret_key: String, pub extra_env: Vec<(String, String)>, } impl RustFSTestClusterEnvironment { /// Create a new RustFS test cluster environment with the specified number of nodes. /// /// Generates a unique temporary root directory for the cluster, allocates an available TCP port /// for each node, creates an independent data directory for every node, and initializes basic /// cluster node configurations (node processes are not started at this stage). /// /// # Arguments /// /// * `node_count` - The number of nodes to create in the cluster, must be a positive integer /// (an empty cluster will cause errors in subsequent startup operations). /// /// # Returns /// /// * `Ok(Self)` - A new instance of `RustFSTestClusterEnvironment` with initialized node /// configurations and temporary directory info on success. /// * `Err(Box)` - An error if any step fails, such as temporary /// directory creation failure or available port lookup failure. pub async fn new(node_count: usize) -> Result> { if node_count == 0 { return Err("Node count must be greater than zero".into()); } let temp_dir = format!("/tmp/rustfs_cluster_test_{}", Uuid::new_v4()); fs::create_dir_all(&temp_dir).await?; let mut nodes = Vec::with_capacity(node_count); for i in 0..node_count { let port = RustFSTestEnvironment::find_available_port().await?; let address = format!("127.0.0.1:{}", port); let url = format!("http://{}", address); let data_dir = format!("{}/node{}", temp_dir, i); fs::create_dir_all(&data_dir).await?; nodes.push(ClusterNode { address, url, data_dir, process: None, }); } Ok(Self { nodes, temp_dir, access_key: DEFAULT_ACCESS_KEY.to_string(), secret_key: DEFAULT_SECRET_KEY.to_string(), extra_env: Vec::new(), }) } /// Add an extra environment variable applied to every cluster node process. pub fn set_env(&mut self, key: K, value: V) where K: Into, V: Into, { self.extra_env.push((key.into(), value.into())); } fn ensure_node_index(&self, node_idx: usize) -> Result<(), Box> { if node_idx >= self.nodes.len() { return Err(format!("node_idx {node_idx} is invalid").into()); } Ok(()) } /// Build the volumes argument string for RustFS binary (internal helper method). /// /// Concatenates the address and data directory of all cluster nodes into a single string /// used as the `RUSTFS_VOLUMES` environment variable for RustFS node processes. fn build_volumes_arg(&self) -> String { self.nodes .iter() .map(|n| format!("http://{}{}", n.address, n.data_dir)) .collect::>() .join(" ") } /// Start all node processes in the RustFS cluster and wait for the cluster service to be ready. /// /// Spawns a RustFS binary process for each node with necessary environment variable configurations, /// first waits for each node's TCP port to be reachable, then verifies the cluster's S3-compatible /// service availability via the S3 API. /// /// # Returns /// /// * `Ok(())` - All nodes start successfully and the cluster S3 service is ready for requests. /// * `Err(Box)` - An error if process spawning fails, TCP port readiness /// times out, or cluster service readiness times out. pub async fn start(&mut self) -> Result<(), Box> { let binary_path = rustfs_binary_path(); let volumes_arg = self.build_volumes_arg(); for (i, node) in self.nodes.iter_mut().enumerate() { info!("Starting cluster node {} on {}", i, node.address); let mut command = Command::new(&binary_path); command .env("RUSTFS_VOLUMES", &volumes_arg) .env("RUSTFS_ADDRESS", &node.address) .env("RUSTFS_ACCESS_KEY", &self.access_key) .env("RUSTFS_SECRET_KEY", &self.secret_key) .env("RUSTFS_CONSOLE_ENABLE", "false") .env("RUST_LOG", "rustfs=info,rustfs_notify=debug"); for (key, value) in &self.extra_env { command.env(key, value); } let process = command.current_dir(&node.data_dir).spawn()?; node.process = Some(process); } for (i, node) in self.nodes.iter().enumerate() { self.wait_for_node_ready(&node.address, i).await?; } for node_idx in 0..self.nodes.len() { self.wait_for_node_service_ready(node_idx).await?; } Ok(()) } /// Start one node process using the cluster's existing volume layout. pub async fn start_node(&mut self, node_idx: usize) -> Result<(), Box> { self.ensure_node_index(node_idx)?; if self.nodes[node_idx].process.is_some() { return Err(format!("cluster node {node_idx} is already running").into()); } let binary_path = rustfs_binary_path(); let volumes_arg = self.build_volumes_arg(); let node = &mut self.nodes[node_idx]; info!("Starting cluster node {} on {}", node_idx, node.address); let mut command = Command::new(&binary_path); command .env("RUSTFS_VOLUMES", &volumes_arg) .env("RUSTFS_ADDRESS", &node.address) .env("RUSTFS_ACCESS_KEY", &self.access_key) .env("RUSTFS_SECRET_KEY", &self.secret_key) .env("RUSTFS_CONSOLE_ENABLE", "false") .env("RUST_LOG", "rustfs=info,rustfs_notify=debug"); for (key, value) in &self.extra_env { command.env(key, value); } let process = command.current_dir(&node.data_dir).spawn()?; node.process = Some(process); self.wait_for_node_ready(&self.nodes[node_idx].address, node_idx).await?; self.wait_for_node_service_ready(node_idx).await?; Ok(()) } /// Wait for a single cluster node's TCP port to become reachable (internal helper method). /// /// Attempts to establish a TCP connection to the node's address, retries up to 60 times /// with a 1-second interval between attempts. Fails if the port is unreachable after all retries. async fn wait_for_node_ready(&self, address: &str, idx: usize) -> Result<(), Box> { for attempt in 0..60 { if TcpStream::connect(address).await.is_ok() { info!("Node {} ({}) TCP ready after {} attempts", idx, address, attempt + 1); return Ok(()); } sleep(Duration::from_secs(1)).await; } Err(format!("Node {} failed to become ready", idx).into()) } /// Wait for a specific node's S3-compatible service to be ready (internal helper method). /// /// Verifies service availability by calling the S3 `list_buckets` API against the requested node, /// retries up to 120 times with a 1-second interval between attempts. async fn wait_for_node_service_ready(&self, node_idx: usize) -> Result<(), Box> { let client = self.create_s3_client(node_idx)?; for attempt in 0..120 { match client.list_buckets().send().await { Ok(_) => { info!("Cluster node {} service ready after {} attempts", node_idx, attempt + 1); return Ok(()); } Err(_) => { sleep(Duration::from_secs(1)).await; } } } Err(format!("Cluster node {} service failed to become ready", node_idx).into()) } /// Create an S3 client configured to communicate with a specific cluster node. /// /// Configures the S3 client with the cluster's authentication credentials, a fixed `us-east-1` region, /// the target node's endpoint URL, and enforces path-style access (required for RustFS S3 compatibility). /// Performs a validity check on the node index before creating the client to avoid out-of-bounds errors. /// /// # Arguments /// /// * `node_idx` - The zero-based index of the target cluster node. Must be in the range `[0, total_nodes - 1]`. /// /// # Returns /// /// * `Ok(Client)` - A fully configured AWS S3 `Client` instance for the specified node on success. /// * `Err(Box)` - An error if the node index is invalid, or if the S3 client configuration fails. pub fn create_s3_client(&self, node_idx: usize) -> Result> { if node_idx >= self.nodes.len() { return Err("node_idx is invalid".into()); } Ok(Client::from_conf(build_test_s3_config( &self.nodes[node_idx].url, &self.access_key, &self.secret_key, "cluster-test", ))) } /// Create S3 clients for all nodes in the RustFS cluster and collect them into a vector. /// /// Iterates over all cluster node indices, calls `create_s3_client` for each index, and aggregates /// the resulting clients into a pre-allocated vector. Terminates immediately and returns an error /// if any single node's S3 client creation fails (fails fast behavior). /// /// # Returns /// /// * `Ok(Vec)` - A vector of configured S3 `Client` instances (one per cluster node) on full success. /// * `Err(Box)` - An error with a descriptive message if any client creation fails, /// including the underlying error from `create_s3_client`. pub fn create_all_clients(&self) -> Result, Box> { (0..self.nodes.len()).map(|i| self.create_s3_client(i)).try_fold( Vec::with_capacity(self.nodes.len()), |mut clients, result| match result { Ok(client) => { clients.push(client); Ok(clients) } Err(e) => Err(format!("Failed to create S3 client for node: {}", e).into()), }, ) } /// Create a test S3 bucket in the RustFS cluster. /// /// Uses the S3 client of the first cluster node to call the S3 `create_bucket` API and /// create a bucket with the specified name (follows S3 bucket naming conventions). /// /// # Arguments /// /// * `bucket_name` - The name of the bucket to create, must comply with S3 bucket naming /// rules (lowercase, no spaces, valid characters only). /// /// # Returns /// /// * `Ok(())` - The test bucket is created successfully via the S3 API. /// * `Err(Box)` - An error if the S3 `create_bucket` API call fails, /// such as invalid bucket name, insufficient permissions, or an unready cluster. pub async fn create_test_bucket(&self, bucket_name: &str) -> Result<(), Box> { let client = self.create_s3_client(0)?; client.create_bucket().bucket(bucket_name).send().await?; info!("Created test bucket: {}", bucket_name); Ok(()) } /// Stop all running node processes in the RustFS cluster. /// /// Iterates over all cluster nodes, attempts to kill the spawned RustFS process (if running), /// and waits for the process to exit. Logs an error if process termination or waiting fails, /// but does not panic (fails gracefully). /// /// This method is automatically called by the `Drop` trait when the cluster environment /// is destroyed, and can also be called manually to stop the cluster early. pub fn stop(&mut self) { for (i, node) in self.nodes.iter_mut().enumerate() { if let Some(mut process) = node.process.take() { info!("Stopping cluster node {}", i); if let Err(e) = process.kill() { error!("Failed to kill cluster node {}: {}", i, e); } if let Err(e) = process.wait() { error!("Failed to wait for cluster node {} to exit: {}", i, e); } } } } /// Stop a single cluster node and wait for its process to exit. pub fn stop_node(&mut self, node_idx: usize) -> Result<(), Box> { self.ensure_node_index(node_idx)?; let Some(mut process) = self.nodes[node_idx].process.take() else { return Ok(()); }; info!("Stopping cluster node {}", node_idx); process.kill()?; process.wait()?; Ok(()) } } impl Drop for RustFSTestClusterEnvironment { /// Clean up the RustFS test cluster environment when the instance is dropped. /// /// Automatically calls the `stop` method to terminate all running node processes, then /// attempts to delete the cluster's temporary root directory and all its contents. /// Logs a warning if directory deletion fails (does not affect program exit). fn drop(&mut self) { self.stop(); if let Err(e) = std::fs::remove_dir_all(&self.temp_dir) { warn!("Failed to clean up cluster temp directory {}: {}", self.temp_dir, e); } } } #[cfg(test)] mod tests { use super::*; #[test] fn normalizes_rustfs_build_features() { assert_eq!( normalize_rustfs_build_features(" SFTP, ftps ,, WebDAV "), Some("sftp,ftps,webdav".to_string()) ); assert_eq!(normalize_rustfs_build_features(" , "), None); } #[test] fn full_feature_enables_any_required_feature() { assert!(rustfs_build_feature_enabled(Some("full"), "sftp")); assert!(rustfs_build_feature_enabled(Some("ftps, full"), "webdav")); } #[test] fn binary_feature_stamp_matching_uses_normalized_features() { let binary_path = std::env::temp_dir().join(format!("rustfs-feature-stamp-test-{}", Uuid::new_v4())); let stamp_path = rustfs_binary_features_stamp_path(&binary_path); stdfs::write(&stamp_path, " SFTP, ftps ").expect("write feature stamp"); assert!(binary_features_match(&binary_path, Some("sftp,ftps"))); assert!(binary_features_match(&binary_path, Some(" SFTP, FTPS "))); assert!(!binary_features_match(&binary_path, Some("sftp"))); stdfs::remove_file(stamp_path).ok(); } }