335 lines
8.5 KiB
Rust
335 lines
8.5 KiB
Rust
//! Acceptance test: runs zebrad as a subprocess and asserts its
|
|
//! output for given argument combinations matches what is expected.
|
|
|
|
#![warn(warnings, missing_docs, trivial_casts, unused_qualifications)]
|
|
#![forbid(unsafe_code)]
|
|
|
|
use color_eyre::eyre::Result;
|
|
use std::{path::PathBuf, time::Duration};
|
|
use zebra_test::prelude::*;
|
|
|
|
pub fn get_child(args: &[&str], tempdir: &PathBuf) -> Result<TestChild> {
|
|
let mut cmd = test_cmd(env!("CARGO_BIN_EXE_zebrad"), &tempdir)?;
|
|
|
|
Ok(cmd
|
|
.args(args)
|
|
.stdout(Stdio::piped())
|
|
.stderr(Stdio::piped())
|
|
.spawn2()
|
|
.unwrap())
|
|
}
|
|
|
|
#[test]
|
|
fn generate_no_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
let child = get_child(&["generate"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
let output = output.assert_success()?;
|
|
|
|
// First line
|
|
output.stdout_contains(r"# Default configuration for zebrad.")?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn generate_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(false)?;
|
|
|
|
// unexpected free argument `argument`
|
|
let child = get_child(&["generate", "argument"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
// unrecognized option `-f`
|
|
let child = get_child(&["generate", "-f"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
// missing argument to option `-o`
|
|
let child = get_child(&["generate", "-o"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
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
|
|
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 temp dir still exist
|
|
assert!(tempdir.exists());
|
|
|
|
// Check if the file was created
|
|
assert!(generated_config_path.exists());
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn help_no_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
let child = get_child(&["help"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
let output = output.assert_success()?;
|
|
|
|
// First line haves the version
|
|
output.stdout_contains(r"zebrad [0-9].[0-9].[0-9]")?;
|
|
|
|
// Make sure we are in help by looking usage string
|
|
output.stdout_contains(r"USAGE:")?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn help_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
// The subcommand "argument" wasn't recognized.
|
|
let child = get_child(&["help", "argument"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
// option `-f` does not accept an argument
|
|
let child = get_child(&["help", "-f"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn revhex_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
// Valid
|
|
let child = get_child(&["revhex", "33eeff55"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
let output = output.assert_success()?;
|
|
|
|
output.stdout_equals("55ffee33\n")?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn seed_no_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
let mut child = get_child(&["-v", "seed"], &tempdir)?;
|
|
|
|
// Run the program and kill it at 1 second
|
|
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());
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn seed_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
// unexpected free argument `argument`
|
|
let child = get_child(&["seed", "argument"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
// unrecognized option `-f`
|
|
let child = get_child(&["seed", "-f"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
// unexpected free argument `start`
|
|
let child = get_child(&["seed", "start"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn start_no_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
let mut child = get_child(&["-v", "start"], &tempdir)?;
|
|
|
|
// Run the program and kill it at 1 second
|
|
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());
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn start_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
// Any free argument is valid
|
|
let mut child = get_child(&["start", "argument"], &tempdir)?;
|
|
// Run the program and kill it at 1 second
|
|
std::thread::sleep(Duration::from_secs(1));
|
|
child.kill()?;
|
|
let output = child.wait_with_output()?;
|
|
|
|
// Make sure the command was killed
|
|
assert!(output.was_killed());
|
|
|
|
output.assert_failure()?;
|
|
|
|
// unrecognized option `-f`
|
|
let child = get_child(&["start", "-f"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn app_no_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
let child = get_child(&[], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
let output = output.assert_success()?;
|
|
|
|
output.stdout_contains(r"USAGE:")?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn version_no_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
let child = get_child(&["version"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
let output = output.assert_success()?;
|
|
|
|
output.stdout_matches(r"^zebrad [0-9].[0-9].[0-9]-[A-Za-z]*.[0-9]\n$")?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn version_args() -> Result<()> {
|
|
zebra_test::init();
|
|
let (tempdir, _guard) = tempdir(true)?;
|
|
|
|
// unexpected free argument `argument`
|
|
let child = get_child(&["version", "argument"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
// unrecognized option `-f`
|
|
let child = get_child(&["version", "-f"], &tempdir)?;
|
|
let output = child.wait_with_output()?;
|
|
output.assert_failure()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn serialized_tests() -> Result<()> {
|
|
start_no_args()?;
|
|
start_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(())
|
|
}
|