use std::process::Command; use std::fs; #[cfg(test)] mod integration { use Command; use fs; #[test] fn no_args() { let output = Command::new("./target/debug/wham") .output() .expect("failed to execute process"); let expected_error = "The following required arguments were not provided"; let out = String::from_utf8_lossy(&output.stderr); assert!(out.contains(expected_error)); } #[test] fn data_out_of_bonds() { let output = Command::new("./target/debug/wham") .args(&["--bins", "100", "--min", "2.0", "--max", "3.0", "-T", "300"]) .args(&["-f", "example/1d/metadata.dat"]) .args(&["-o", "/dev/null"]) .output() .expect("failed to execute process"); let output = String::from_utf8_lossy(&output.stderr); println!("{}", output); assert!(output.to_string().contains( "No data points in histogram boundaries" )); } #[test] fn unparseable_bias_pos() { let output = Command::new("./target/debug/wham") .args(&["--bins", "100", "--min", "-3.0", "--max", "3.0", "-T", "300"]) .args(&["-f", "tests/metadata_unparseable1.dat"]) .args(&["-o", "/dev/null"]) .output() .expect("failed to execute process"); let output = String::from_utf8_lossy(&output.stderr); println!("{}", output); assert!(output.to_string().contains( "Failed to read bias position in line 1" )); } #[test] fn unparseable_bias_fc() { let output = Command::new("./target/debug/wham") .args(&["--bins", "100", "--min", "-3.0", "--max", "3.0", "-T", "300"]) .args(&["-f", "tests/metadata_unparseable2.dat"]) .args(&["-o", "/dev/null"]) .output() .expect("failed to execute process"); let output = String::from_utf8_lossy(&output.stderr); println!("{}", output); assert!(output.to_string().contains( "Failed to read bias fc in line 1" )); } #[test] fn no_convergence() { let output = Command::new("./target/debug/wham") .args(&["--bins", "100", "--min", "-3.0", "--max", "3.0", "-T", "300"]) .args(&["--iterations", "10"]) .args(&["-f", "example/1d/metadata.dat"]) .args(&["-o", "/dev/null"]) .output() .expect("failed to execute process"); let output = String::from_utf8_lossy(&output.stderr); println!("{}", output); assert!(output.to_string().contains( "Error: WHAM not converged! (max iterations reached)" )); } #[test] fn unparseable_timeseries() { let output = Command::new("./target/debug/wham") .args(&["--bins", "100", "--min", "-3.0", "--max", "3.0", "-T", "300"]) .args(&["-f", "tests/metadata_unparseable3.dat"]) .args(&["-o", "/dev/null"]) .output() .expect("failed to execute process"); let output = String::from_utf8_lossy(&output.stderr); println!("{}", output); assert!(output.to_string().contains( "Failed to parse line" )); } #[test] fn unparseable_timeseries_empty() { let output = Command::new("./target/debug/wham") .args(&["--bins", "100", "--min", "-3.0", "--max", "3.0", "-T", "300"]) .args(&["-f", "tests/metadata_unparseable4.dat"]) .args(&["-o", "/dev/null"]) .output() .expect("failed to execute process"); let output = String::from_utf8_lossy(&output.stderr); println!("{}", output); assert!(output.to_string().contains( "Wrong number of columns in line" )); } #[test] fn wham_1d() {; Command::new("./target/debug/wham") .args(&["--bins", "100", "--max", "3.14", "--min", "-3.14", "-T", "300", "--cyclic"]) .args(&["-f", "example/1d/metadata.dat"]) .args(&["-o", "/tmp/wham_test_1d.out"]) .output() .expect("failed to execute process"); assert!(fs::metadata("/tmp/wham_test_1d.out").is_ok()); let output = Command::new("diff") .arg("/tmp/wham_test_1d.out") .arg("example/1d/wham.out") .output() .expect("failed to run diff"); let output_len = String::from_utf8_lossy(&output.stdout).len(); assert_eq!(output_len, 0); } #[test] #[ignore] // expensive fn wham_2d() {; Command::new("./target/debug/wham") .args(&["--bins", "100,100", "--max", "3.14,3.14", "--min", "-3.14,-3.14", "-T", "300", "--cyclic"]) .args(&["-f", "example/2d/metadata.dat"]) .args(&["-o", "/tmp/wham_test_2d.out"]) .output() .expect("failed to execute process"); assert!(fs::metadata("/tmp/wham_test_2d.out").is_ok()); let output = Command::new("diff") .arg("/tmp/wham_test_2d.out") .arg("example/2d/wham.out") .output() .expect("failed to run diff"); let output_len = String::from_utf8_lossy(&output.stdout).len(); assert_eq!(output_len, 0); } }