mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-14 00:17:07 +00:00
a6e1ea3bd8
Updates some outdated docs on filtering, and adds some tests as well. In particular, this also adds a cfg_attr on tests to try and catch unknown fields; we'll be more lenient in prod builds though and allow them.
89 lines
2.1 KiB
Rust
89 lines
2.1 KiB
Rust
//! Tests config files that have sometimes caused issues despite being valid.
|
|
|
|
use std::{io::Read, thread, time::Duration};
|
|
|
|
use crate::util::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();
|
|
}
|
|
|
|
#[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(&["-C", "./tests/valid_configs/empty_config.toml"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_many_proc() {
|
|
run_and_kill(&["-C", "./tests/valid_configs/many_proc.toml"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_all_proc() {
|
|
run_and_kill(&["-C", "./tests/valid_configs/all_proc.toml"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_cpu_doughnut() {
|
|
run_and_kill(&["-C", "./tests/valid_configs/cpu_doughnut.toml"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_theme() {
|
|
run_and_kill(&["-C", "./tests/valid_configs/theme.toml"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_styling_sanity_check() {
|
|
run_and_kill(&["-C", "./tests/valid_configs/styling.toml"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_styling_sanity_check_2() {
|
|
run_and_kill(&["-C", "./tests/valid_configs/styling_2.toml"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_filtering() {
|
|
run_and_kill(&["-C", "./tests/valid_configs/filtering.toml"]);
|
|
}
|