Valid generated config acceptance test (#859)
* add valid generated config test * change to pathbuf * use -c to make sure we are using the generated file * add and use a ZebraTestDir type * change approach to generate tempdir in top of each test * pass tempdir to test_cmd and set current dir to it * add and use a `generated_config_path` variable in tests
This commit is contained in:
parent
b4245f4d01
commit
e73f976194
|
@ -3,33 +3,40 @@ use color_eyre::{
|
||||||
Help, SectionExt,
|
Help, SectionExt,
|
||||||
};
|
};
|
||||||
use std::process::{Child, Command, ExitStatus, Output};
|
use std::process::{Child, Command, ExitStatus, Output};
|
||||||
use std::{fs, io::Write};
|
use std::{fs, io::Write, path::PathBuf};
|
||||||
use tempdir::TempDir;
|
use tempdir::TempDir;
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
use std::os::unix::process::ExitStatusExt;
|
use std::os::unix::process::ExitStatusExt;
|
||||||
|
|
||||||
/// Runs a command in a TempDir
|
/// Runs a command
|
||||||
pub fn test_cmd(path: &str) -> Result<(Command, impl Drop)> {
|
pub fn test_cmd(command_path: &str, tempdir: &PathBuf) -> Result<Command> {
|
||||||
let dir = TempDir::new(path)?;
|
let mut cmd = Command::new(command_path);
|
||||||
let mut cmd = Command::new(path);
|
cmd.current_dir(tempdir);
|
||||||
cmd.current_dir(dir.path());
|
|
||||||
|
|
||||||
let cache_dir = dir.path().join("state");
|
Ok(cmd)
|
||||||
fs::create_dir(&cache_dir)?;
|
}
|
||||||
|
|
||||||
fs::File::create(dir.path().join("zebrad.toml"))?.write_all(
|
/// Create a temp directory and optional config file
|
||||||
format!(
|
pub fn tempdir(create_config: bool) -> Result<(PathBuf, impl Drop)> {
|
||||||
"[state]\ncache_dir = '{}'\nmemory_cache_bytes = 256000000",
|
let dir = TempDir::new("zebrad_tests")?;
|
||||||
cache_dir
|
|
||||||
.into_os_string()
|
|
||||||
.into_string()
|
|
||||||
.map_err(|_| eyre!("tmp dir path cannot be encoded as UTF8"))?
|
|
||||||
)
|
|
||||||
.as_bytes(),
|
|
||||||
)?;
|
|
||||||
|
|
||||||
Ok((cmd, dir))
|
if create_config {
|
||||||
|
let cache_dir = dir.path().join("state");
|
||||||
|
fs::create_dir(&cache_dir)?;
|
||||||
|
fs::File::create(dir.path().join("zebrad.toml"))?.write_all(
|
||||||
|
format!(
|
||||||
|
"[state]\ncache_dir = '{}'\nmemory_cache_bytes = 256000000",
|
||||||
|
cache_dir
|
||||||
|
.into_os_string()
|
||||||
|
.into_string()
|
||||||
|
.map_err(|_| eyre!("tmp dir path cannot be encoded as UTF8"))?
|
||||||
|
)
|
||||||
|
.as_bytes(),
|
||||||
|
)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok((dir.path().to_path_buf(), dir))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait CommandExt {
|
pub trait CommandExt {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
pub use crate::command::test_cmd;
|
pub use crate::command::{tempdir, test_cmd, CommandExt, TestChild};
|
||||||
pub use crate::command::CommandExt;
|
|
||||||
pub use std::process::Stdio;
|
pub use std::process::Stdio;
|
||||||
|
|
||||||
pub use tempdir::TempDir;
|
pub use tempdir::TempDir;
|
||||||
|
|
|
@ -5,27 +5,26 @@
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
|
|
||||||
use color_eyre::eyre::Result;
|
use color_eyre::eyre::Result;
|
||||||
use std::time::Duration;
|
use std::{path::PathBuf, time::Duration};
|
||||||
use zebra_test::prelude::*;
|
use zebra_test::prelude::*;
|
||||||
|
|
||||||
pub fn get_child(args: &[&str]) -> Result<(zebra_test::command::TestChild, impl Drop)> {
|
pub fn get_child(args: &[&str], tempdir: &PathBuf) -> Result<TestChild> {
|
||||||
let (mut cmd, guard) = test_cmd(env!("CARGO_BIN_EXE_zebrad"))?;
|
let mut cmd = test_cmd(env!("CARGO_BIN_EXE_zebrad"), &tempdir)?;
|
||||||
|
|
||||||
Ok((
|
Ok(cmd
|
||||||
cmd.args(args)
|
.args(args)
|
||||||
.stdout(Stdio::piped())
|
.stdout(Stdio::piped())
|
||||||
.stderr(Stdio::piped())
|
.stderr(Stdio::piped())
|
||||||
.spawn2()
|
.spawn2()
|
||||||
.unwrap(),
|
.unwrap())
|
||||||
guard,
|
|
||||||
))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn generate_no_args() -> Result<()> {
|
fn generate_no_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
let (child, _guard) = get_child(&["generate"])?;
|
let child = get_child(&["generate"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
let output = output.assert_success()?;
|
let output = output.assert_success()?;
|
||||||
|
|
||||||
|
@ -38,28 +37,41 @@ fn generate_no_args() -> Result<()> {
|
||||||
#[test]
|
#[test]
|
||||||
fn generate_args() -> Result<()> {
|
fn generate_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(false)?;
|
||||||
|
|
||||||
// unexpected free argument `argument`
|
// unexpected free argument `argument`
|
||||||
let (child, _guard) = get_child(&["generate", "argument"])?;
|
let child = get_child(&["generate", "argument"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
// unrecognized option `-f`
|
// unrecognized option `-f`
|
||||||
let (child, _guard) = get_child(&["generate", "-f"])?;
|
let child = get_child(&["generate", "-f"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
// missing argument to option `-o`
|
// missing argument to option `-o`
|
||||||
let (child, _guard) = get_child(&["generate", "-o"])?;
|
let child = get_child(&["generate", "-o"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
|
// Add a config file name to tempdir path
|
||||||
|
let mut generated_config_path = tempdir.clone();
|
||||||
|
generated_config_path.push("zebrad.toml");
|
||||||
|
|
||||||
// Valid
|
// Valid
|
||||||
let (child, _guard) = get_child(&["generate", "-o", "file.yaml"])?;
|
let child = get_child(
|
||||||
|
&["generate", "-o", generated_config_path.to_str().unwrap()],
|
||||||
|
&tempdir.to_path_buf(),
|
||||||
|
)?;
|
||||||
|
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_success()?;
|
output.assert_success()?;
|
||||||
|
|
||||||
// Todo: Check if the file was created
|
// Check if the temp dir still exist
|
||||||
|
assert!(tempdir.exists());
|
||||||
|
|
||||||
|
// Check if the file was created
|
||||||
|
assert!(generated_config_path.exists());
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -67,8 +79,9 @@ fn generate_args() -> Result<()> {
|
||||||
#[test]
|
#[test]
|
||||||
fn help_no_args() -> Result<()> {
|
fn help_no_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
let (child, _guard) = get_child(&["help"])?;
|
let child = get_child(&["help"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
let output = output.assert_success()?;
|
let output = output.assert_success()?;
|
||||||
|
|
||||||
|
@ -84,14 +97,15 @@ fn help_no_args() -> Result<()> {
|
||||||
#[test]
|
#[test]
|
||||||
fn help_args() -> Result<()> {
|
fn help_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
// The subcommand "argument" wasn't recognized.
|
// The subcommand "argument" wasn't recognized.
|
||||||
let (child, _guard) = get_child(&["help", "argument"])?;
|
let child = get_child(&["help", "argument"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
// option `-f` does not accept an argument
|
// option `-f` does not accept an argument
|
||||||
let (child, _guard) = get_child(&["help", "-f"])?;
|
let child = get_child(&["help", "-f"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
|
@ -101,9 +115,10 @@ fn help_args() -> Result<()> {
|
||||||
#[test]
|
#[test]
|
||||||
fn revhex_args() -> Result<()> {
|
fn revhex_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
// Valid
|
// Valid
|
||||||
let (child, _guard) = get_child(&["revhex", "33eeff55"])?;
|
let child = get_child(&["revhex", "33eeff55"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
let output = output.assert_success()?;
|
let output = output.assert_success()?;
|
||||||
|
|
||||||
|
@ -114,8 +129,9 @@ fn revhex_args() -> Result<()> {
|
||||||
|
|
||||||
fn seed_no_args() -> Result<()> {
|
fn seed_no_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
let (mut child, _guard) = get_child(&["-v", "seed"])?;
|
let mut child = get_child(&["-v", "seed"], &tempdir)?;
|
||||||
|
|
||||||
// Run the program and kill it at 1 second
|
// Run the program and kill it at 1 second
|
||||||
std::thread::sleep(Duration::from_secs(1));
|
std::thread::sleep(Duration::from_secs(1));
|
||||||
|
@ -135,19 +151,20 @@ fn seed_no_args() -> Result<()> {
|
||||||
#[test]
|
#[test]
|
||||||
fn seed_args() -> Result<()> {
|
fn seed_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
// unexpected free argument `argument`
|
// unexpected free argument `argument`
|
||||||
let (child, _guard) = get_child(&["seed", "argument"])?;
|
let child = get_child(&["seed", "argument"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
// unrecognized option `-f`
|
// unrecognized option `-f`
|
||||||
let (child, _guard) = get_child(&["seed", "-f"])?;
|
let child = get_child(&["seed", "-f"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
// unexpected free argument `start`
|
// unexpected free argument `start`
|
||||||
let (child, _guard) = get_child(&["seed", "start"])?;
|
let child = get_child(&["seed", "start"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
|
@ -156,8 +173,9 @@ fn seed_args() -> Result<()> {
|
||||||
|
|
||||||
fn start_no_args() -> Result<()> {
|
fn start_no_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
let (mut child, _guard) = get_child(&["-v", "start"])?;
|
let mut child = get_child(&["-v", "start"], &tempdir)?;
|
||||||
|
|
||||||
// Run the program and kill it at 1 second
|
// Run the program and kill it at 1 second
|
||||||
std::thread::sleep(Duration::from_secs(1));
|
std::thread::sleep(Duration::from_secs(1));
|
||||||
|
@ -176,9 +194,10 @@ fn start_no_args() -> Result<()> {
|
||||||
|
|
||||||
fn start_args() -> Result<()> {
|
fn start_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
// Any free argument is valid
|
// Any free argument is valid
|
||||||
let (mut child, _guard) = get_child(&["start", "argument"])?;
|
let mut child = get_child(&["start", "argument"], &tempdir)?;
|
||||||
// Run the program and kill it at 1 second
|
// Run the program and kill it at 1 second
|
||||||
std::thread::sleep(Duration::from_secs(1));
|
std::thread::sleep(Duration::from_secs(1));
|
||||||
child.kill()?;
|
child.kill()?;
|
||||||
|
@ -190,7 +209,7 @@ fn start_args() -> Result<()> {
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
// unrecognized option `-f`
|
// unrecognized option `-f`
|
||||||
let (child, _guard) = get_child(&["start", "-f"])?;
|
let child = get_child(&["start", "-f"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
|
@ -200,8 +219,9 @@ fn start_args() -> Result<()> {
|
||||||
#[test]
|
#[test]
|
||||||
fn app_no_args() -> Result<()> {
|
fn app_no_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
let (child, _guard) = get_child(&[])?;
|
let child = get_child(&[], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
let output = output.assert_success()?;
|
let output = output.assert_success()?;
|
||||||
|
|
||||||
|
@ -213,8 +233,9 @@ fn app_no_args() -> Result<()> {
|
||||||
#[test]
|
#[test]
|
||||||
fn version_no_args() -> Result<()> {
|
fn version_no_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
let (child, _guard) = get_child(&["version"])?;
|
let child = get_child(&["version"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
let output = output.assert_success()?;
|
let output = output.assert_success()?;
|
||||||
|
|
||||||
|
@ -226,14 +247,15 @@ fn version_no_args() -> Result<()> {
|
||||||
#[test]
|
#[test]
|
||||||
fn version_args() -> Result<()> {
|
fn version_args() -> Result<()> {
|
||||||
zebra_test::init();
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(true)?;
|
||||||
|
|
||||||
// unexpected free argument `argument`
|
// unexpected free argument `argument`
|
||||||
let (child, _guard) = get_child(&["version", "argument"])?;
|
let child = get_child(&["version", "argument"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
// unrecognized option `-f`
|
// unrecognized option `-f`
|
||||||
let (child, _guard) = get_child(&["version", "-f"])?;
|
let child = get_child(&["version", "-f"], &tempdir)?;
|
||||||
let output = child.wait_with_output()?;
|
let output = child.wait_with_output()?;
|
||||||
output.assert_failure()?;
|
output.assert_failure()?;
|
||||||
|
|
||||||
|
@ -245,6 +267,68 @@ fn serialized_tests() -> Result<()> {
|
||||||
start_no_args()?;
|
start_no_args()?;
|
||||||
start_args()?;
|
start_args()?;
|
||||||
seed_no_args()?;
|
seed_no_args()?;
|
||||||
|
valid_generated_config()?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn valid_generated_config() -> Result<()> {
|
||||||
|
zebra_test::init();
|
||||||
|
let (tempdir, _guard) = tempdir(false)?;
|
||||||
|
|
||||||
|
// Add a config file name to tempdir path
|
||||||
|
let mut generated_config_path = tempdir.clone();
|
||||||
|
generated_config_path.push("zebrad.toml");
|
||||||
|
|
||||||
|
// Generate configuration in temp dir path
|
||||||
|
let child = get_child(
|
||||||
|
&["generate", "-o", generated_config_path.to_str().unwrap()],
|
||||||
|
&tempdir.to_path_buf(),
|
||||||
|
)?;
|
||||||
|
|
||||||
|
let output = child.wait_with_output()?;
|
||||||
|
output.assert_success()?;
|
||||||
|
|
||||||
|
// Check if the file was created
|
||||||
|
assert!(generated_config_path.exists());
|
||||||
|
|
||||||
|
// Run start using temp dir and kill it at 1 second
|
||||||
|
let mut child = get_child(
|
||||||
|
&["-c", generated_config_path.to_str().unwrap(), "start"],
|
||||||
|
&tempdir.to_path_buf(),
|
||||||
|
)?;
|
||||||
|
std::thread::sleep(Duration::from_secs(1));
|
||||||
|
child.kill()?;
|
||||||
|
|
||||||
|
let output = child.wait_with_output()?;
|
||||||
|
let output = output.assert_failure()?;
|
||||||
|
|
||||||
|
output.stdout_contains(r"Starting zebrad")?;
|
||||||
|
|
||||||
|
// Make sure the command was killed
|
||||||
|
assert!(output.was_killed());
|
||||||
|
|
||||||
|
// Run seed using temp dir and kill it at 1 second
|
||||||
|
let mut child = get_child(
|
||||||
|
&["-c", generated_config_path.to_str().unwrap(), "seed"],
|
||||||
|
&tempdir.to_path_buf(),
|
||||||
|
)?;
|
||||||
|
std::thread::sleep(Duration::from_secs(1));
|
||||||
|
child.kill()?;
|
||||||
|
|
||||||
|
let output = child.wait_with_output()?;
|
||||||
|
let output = output.assert_failure()?;
|
||||||
|
|
||||||
|
output.stdout_contains(r"Starting zebrad in seed mode")?;
|
||||||
|
|
||||||
|
// Make sure the command was killed
|
||||||
|
assert!(output.was_killed());
|
||||||
|
|
||||||
|
// Check if the temp dir still exist
|
||||||
|
assert!(tempdir.exists());
|
||||||
|
|
||||||
|
// Check if the created config file still exist
|
||||||
|
assert!(generated_config_path.exists());
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue