use std::ffi::OsStr;
use std::sync::{Mutex, OnceLock};
pub fn test_env_lock() -> &'static Mutex<()> {
static LOCK: OnceLock<Mutex<()>> = OnceLock::new();
LOCK.get_or_init(|| Mutex::new(()))
}
pub struct EnvVarGuard {
key: &'static str,
prev: Option<String>,
}
impl EnvVarGuard {
pub fn set<V: AsRef<OsStr>>(key: &'static str, value: V) -> Self {
let prev = std::env::var(key).ok();
std::env::set_var(key, value);
Self { key, prev }
}
pub fn clear(key: &'static str) -> Self {
let prev = std::env::var(key).ok();
std::env::remove_var(key);
Self { key, prev }
}
}
impl Drop for EnvVarGuard {
fn drop(&mut self) {
if let Some(prev) = &self.prev {
std::env::set_var(self.key, prev);
} else {
std::env::remove_var(self.key);
}
}
}