mirror of
https://github.com/ClementTsang/bottom.git
synced 2026-07-09 06:01:04 +00:00
319 lines
8.5 KiB
Rust
319 lines
8.5 KiB
Rust
//! Tests config files that have sometimes caused issues despite being valid.
|
|
|
|
use std::{io::Read, process::Stdio, thread, time::Duration};
|
|
#[cfg(feature = "default")]
|
|
use std::{io::Write, path::Path};
|
|
|
|
use predicates::prelude::*;
|
|
|
|
use crate::util::{btm_command, spawn_btm_in_pty};
|
|
|
|
fn reader_to_string(mut reader: Box<dyn Read>) -> String {
|
|
let mut buf = String::default();
|
|
reader.read_to_string(&mut buf).unwrap();
|
|
|
|
buf
|
|
}
|
|
|
|
fn run_and_kill(args: &[&str]) {
|
|
let (master, mut handle) = spawn_btm_in_pty(args);
|
|
let reader = master.try_clone_reader().unwrap();
|
|
let _ = master.take_writer().unwrap();
|
|
|
|
const TIMES_CHECKED: u64 = 6; // Check 6 times, once every 500ms, for 3 seconds total.
|
|
|
|
for _ in 0..TIMES_CHECKED {
|
|
thread::sleep(Duration::from_millis(500));
|
|
match handle.try_wait() {
|
|
Ok(Some(exit)) => {
|
|
println!("output: {}", reader_to_string(reader));
|
|
panic!("program terminated unexpectedly (exit status: {exit:?})");
|
|
}
|
|
Err(e) => {
|
|
println!("output: {}", reader_to_string(reader));
|
|
panic!("error while trying to wait: {e}")
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
|
|
handle.kill().unwrap();
|
|
}
|
|
|
|
fn run_and_kill_cfg(path: &str) {
|
|
run_and_kill(&["-C", path]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_basic() {
|
|
run_and_kill(&[]);
|
|
}
|
|
|
|
/// A test to ensure that a bad config will fail the `run_and_kill` function.
|
|
#[test]
|
|
#[should_panic]
|
|
fn test_bad_basic() {
|
|
run_and_kill(&["--this_does_not_exist"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_empty() {
|
|
run_and_kill_cfg("./tests/valid_configs/empty_config.toml");
|
|
}
|
|
|
|
#[cfg(feature = "default")]
|
|
fn test_uncommented_default_config(original: &Path, test_name: &str) {
|
|
use regex::Regex;
|
|
|
|
// Take the default config file and uncomment everything.
|
|
let default_config = match std::fs::File::open(original) {
|
|
Ok(mut default_config_file) => {
|
|
let mut buf = String::new();
|
|
default_config_file
|
|
.read_to_string(&mut buf)
|
|
.expect("can read file");
|
|
|
|
buf
|
|
}
|
|
Err(err) => {
|
|
println!("Could not open default config, skipping {test_name}. Error: {err:?}");
|
|
return;
|
|
}
|
|
};
|
|
|
|
let default_config = Regex::new(r"(?m)^#([a-zA-Z\[])")
|
|
.unwrap()
|
|
.replace_all(&default_config, "$1");
|
|
|
|
let default_config = Regex::new(r"(?m)^#(\s\s+)([a-zA-Z\[])")
|
|
.unwrap()
|
|
.replace_all(&default_config, "$2");
|
|
|
|
let mut uncommented_config = match tempfile::NamedTempFile::new() {
|
|
Ok(tf) => tf,
|
|
Err(err) => {
|
|
println!("Could not create a temp file, skipping {test_name}. Error: {err:?}");
|
|
return;
|
|
}
|
|
};
|
|
|
|
if let Err(err) = uncommented_config.write_all(default_config.as_bytes()) {
|
|
println!("Could not write to temp file, skipping {test_name}. Error: {err:?}");
|
|
return;
|
|
}
|
|
|
|
run_and_kill(&["-C", &uncommented_config.path().to_string_lossy()]);
|
|
|
|
uncommented_config.close().unwrap();
|
|
}
|
|
|
|
#[cfg(feature = "default")]
|
|
#[test]
|
|
fn test_default() {
|
|
test_uncommented_default_config(
|
|
Path::new("./sample_configs/default_config.toml"),
|
|
"test_default",
|
|
);
|
|
}
|
|
|
|
#[cfg(feature = "default")]
|
|
#[test]
|
|
fn test_new_default() {
|
|
use tempfile::TempPath;
|
|
|
|
let new_temp_default_path = match tempfile::NamedTempFile::new() {
|
|
Ok(temp_file) => temp_file.into_temp_path(),
|
|
Err(err) => {
|
|
println!("Could not create a temp file, skipping test_new_default. Error: {err:?}");
|
|
return;
|
|
}
|
|
};
|
|
|
|
// This is a hack because we need a temp file that doesn't exist.
|
|
let actual_temp_default_path = new_temp_default_path.to_path_buf();
|
|
new_temp_default_path.close().unwrap();
|
|
|
|
if !actual_temp_default_path.exists() {
|
|
run_and_kill(&["-C", &(actual_temp_default_path.to_string_lossy())]);
|
|
|
|
// Re-take control over the temp path to ensure it gets deleted.
|
|
let actual_temp_default_path = TempPath::from_path(actual_temp_default_path);
|
|
test_uncommented_default_config(&actual_temp_default_path, "test_new_default");
|
|
|
|
actual_temp_default_path.close().unwrap();
|
|
} else {
|
|
println!("temp path we want to check exists, skip test_new_default test.");
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_demo() {
|
|
let path: &str = "./sample_configs/demo_config.toml";
|
|
if std::path::Path::new(path).exists() {
|
|
run_and_kill(&["-C", path]);
|
|
} else {
|
|
println!("Could not read demo config.");
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_many_proc() {
|
|
run_and_kill_cfg("./tests/valid_configs/many_proc.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_all_proc() {
|
|
run_and_kill_cfg("./tests/valid_configs/all_proc.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_cpu_doughnut() {
|
|
run_and_kill_cfg("./tests/valid_configs/cpu_doughnut.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_theme() {
|
|
run_and_kill_cfg("./tests/valid_configs/theme.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_styling_sanity_check() {
|
|
run_and_kill_cfg("./tests/valid_configs/styling.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_styling_sanity_check_2() {
|
|
run_and_kill_cfg("./tests/valid_configs/all_styling.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_color_spelling_is_valid() {
|
|
run_and_kill_cfg("./tests/valid_configs/all_styling_color.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_filtering() {
|
|
run_and_kill_cfg("./tests/valid_configs/filtering.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_proc_columns() {
|
|
run_and_kill_cfg("./tests/valid_configs/proc_columns.toml");
|
|
}
|
|
|
|
#[cfg(target_os = "linux")]
|
|
#[test]
|
|
fn test_linux_only() {
|
|
run_and_kill_cfg("./tests/valid_configs/os_specific/linux.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_temp_disk_sort_columns() {
|
|
run_and_kill_cfg("./tests/valid_configs/temp_disk_sort_columns.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_proc_default_sort() {
|
|
run_and_kill_cfg("./tests/valid_configs/proc_default_sort.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_newer_memory() {
|
|
run_and_kill_cfg("./tests/valid_configs/widget/memory.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_newer_cpu() {
|
|
run_and_kill_cfg("./tests/valid_configs/widget/cpu.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_newer_processes() {
|
|
run_and_kill_cfg("./tests/valid_configs/widget/processes.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_newer_network() {
|
|
run_and_kill_cfg("./tests/valid_configs/widget/network.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_network_alias() {
|
|
run_and_kill_cfg("./tests/valid_configs/network_alias.toml");
|
|
}
|
|
|
|
/// This uses deprecated network settings - once they are removed, this test file should be moved to invalid configs.
|
|
#[test]
|
|
fn test_deprecated_network() {
|
|
run_and_kill_cfg("./tests/valid_configs/deprecated/network.toml");
|
|
}
|
|
|
|
/// This uses deprecated process settings - once they are removed, this test file should be moved to invalid configs.
|
|
#[test]
|
|
fn test_deprecated_processes() {
|
|
run_and_kill_cfg("./tests/valid_configs/deprecated/processes.toml");
|
|
}
|
|
|
|
/// This uses deprecated CPU settings - once they are removed, this test file should be moved to invalid configs.
|
|
#[test]
|
|
fn test_deprecated_cpu() {
|
|
run_and_kill_cfg("./tests/valid_configs/deprecated/cpu.toml");
|
|
}
|
|
|
|
/// This uses deprecated memory settings - once they are removed, this test file should be moved to invalid configs.
|
|
#[test]
|
|
fn test_deprecated_memory() {
|
|
run_and_kill_cfg("./tests/valid_configs/deprecated/memory.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_newer_temperature() {
|
|
run_and_kill_cfg("./tests/valid_configs/widget/temperature.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_disk_io_graph() {
|
|
run_and_kill_cfg("./tests/valid_configs/widget/disk_io_graph.toml");
|
|
}
|
|
|
|
#[test]
|
|
fn test_disk_space_graph() {
|
|
run_and_kill_cfg("./tests/valid_configs/widget/disk_space_graph.toml");
|
|
}
|
|
|
|
/// This uses deprecated temperature settings - once they are removed, this test file should be moved to invalid configs.
|
|
#[test]
|
|
fn test_deprecated_temperature() {
|
|
run_and_kill_cfg("./tests/valid_configs/deprecated/temperature.toml");
|
|
}
|
|
|
|
/// Test that deprecated warnings are not shown for config options that are not actually set,
|
|
/// even when a `[flags]` section is present.
|
|
#[test]
|
|
fn test_no_spurious_deprecated_warnings() {
|
|
let mut child = btm_command(&["-C", "./tests/valid_configs/empty_flags.toml"])
|
|
.stdout(Stdio::piped())
|
|
.stderr(Stdio::piped())
|
|
.spawn()
|
|
.unwrap();
|
|
|
|
thread::sleep(Duration::from_secs(1));
|
|
child.kill().unwrap();
|
|
child.wait().unwrap();
|
|
|
|
let stderr_str = {
|
|
let mut stderr = child.stderr.take().unwrap();
|
|
let mut buf = String::new();
|
|
|
|
stderr.read_to_string(&mut buf).unwrap();
|
|
buf
|
|
};
|
|
|
|
assert!(
|
|
predicate::str::contains("deprecated")
|
|
.not()
|
|
.eval(&stderr_str),
|
|
"Expected no deprecated warnings, but got: {stderr_str}"
|
|
);
|
|
}
|