test: add some more unit tests
Check and Lint / Rustfmt (push) Successful in 17s
Check and Lint / Check (push) Successful in 22s
Check and Lint / Clippy (push) Successful in 19s
Check and Lint / Build RPM (push) Successful in 20s
Test and Coverage / Test (push) Successful in 20s
Release / Semantic release (push) Successful in 51s
Test and Coverage / Coverage (push) Successful in 50s
Release / Build and push RPM (push) Successful in 21s
Check and Lint / Rustfmt (pull_request) Successful in 18s
Check and Lint / Check (pull_request) Successful in 19s
Check and Lint / Clippy (pull_request) Successful in 20s
Check and Lint / Build RPM (pull_request) Successful in 21s
Test and Coverage / Test (pull_request) Successful in 19s
Test and Coverage / Coverage (pull_request) Successful in 39s

This commit was merged in pull request #13.
This commit is contained in:
2026-07-30 12:16:32 +02:00
parent dc6ec72e77
commit e4304a299d
2 changed files with 100 additions and 0 deletions
+49
View File
@@ -192,4 +192,53 @@ mod tests {
"expected field path in error, got: {message}"
);
}
#[test]
fn join_relative_keeps_relative_paths() {
assert_eq!(
join_relative(Path::new("/base"), Path::new("sub/x.py")),
PathBuf::from("/base/sub/x.py")
);
}
#[test]
fn join_relative_strips_leading_slash() {
assert_eq!(
join_relative(Path::new("/base"), Path::new("/sub/x.py")),
PathBuf::from("/base/sub/x.py")
);
}
#[test]
fn absolute_entry_points_resolve_relative_to_dir() {
// A leading slash on an entry point is treated as relative to `dir`,
// not as an absolute path.
let json = r#"{
"deployments_base": "/apps",
"default_venv_name": ".venv",
"default_gui_file": "src/gui.py",
"default_server_file": "src/server.py",
"map": { "x10sa": { "dir": "d", "gui_file": "/abs/gui.py" } }
}"#;
let config = load_config(json).unwrap();
assert_eq!(
config.entries["x10sa"].gui_file,
PathBuf::from("/apps/d/abs/gui.py")
);
}
#[test]
fn custom_venv_overrides_default() {
let config = load_config(SAMPLE).unwrap();
// x10sa sets "venv": "pxii"; x06da falls back to ".venv".
assert_eq!(
config.entries["x10sa"].python,
PathBuf::from("/apps/aaredaq-pxii/pxii/bin/python")
);
assert_eq!(
config.entries["x06da"].python,
PathBuf::from("/apps/aaredaq-pxiii/.venv/bin/python")
);
}
}
+51
View File
@@ -155,3 +155,54 @@ fn dir_list<'a>(title: &'a str, items: &'a [String], focused: bool) -> List<'a>
.highlight_style(Style::default().add_modifier(Modifier::BOLD | Modifier::REVERSED))
.highlight_symbol("> ")
}
#[cfg(test)]
mod tests {
use super::*;
fn items(n: usize) -> Vec<String> {
(0..n).map(|i| i.to_string()).collect()
}
#[test]
fn initial_state_selects_first_when_nonempty() {
assert_eq!(initial_state(&items(3)).selected(), Some(0));
}
#[test]
fn initial_state_selects_nothing_when_empty() {
assert_eq!(initial_state(&items(0)).selected(), None);
}
#[test]
fn select_relative_moves_within_bounds() {
let items = items(3);
let mut state = initial_state(&items);
select_relative(&items, &mut state, 1);
assert_eq!(state.selected(), Some(1));
}
#[test]
fn select_relative_wraps_forward_past_end() {
let items = items(3);
let mut state = ListState::default();
state.select(Some(2));
select_relative(&items, &mut state, 1);
assert_eq!(state.selected(), Some(0));
}
#[test]
fn select_relative_wraps_backward_past_start() {
let items = items(3);
let mut state = initial_state(&items);
select_relative(&items, &mut state, -1);
assert_eq!(state.selected(), Some(2));
}
#[test]
fn select_relative_on_empty_is_noop() {
let mut state = ListState::default();
select_relative(&items(0), &mut state, 1);
assert_eq!(state.selected(), None);
}
}