63 lines
1.4 KiB
Rust
63 lines
1.4 KiB
Rust
use std::{fmt, io, path::PathBuf};
|
|
|
|
use crate::misc::And;
|
|
|
|
pub enum SearchError {
|
|
MultipleCandidates {
|
|
candidates: Vec<PathBuf>,
|
|
},
|
|
Io {
|
|
directory: PathBuf,
|
|
io_error: io::Error,
|
|
},
|
|
NotFound,
|
|
}
|
|
|
|
impl fmt::Display for SearchError {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
match self {
|
|
SearchError::Io {
|
|
directory,
|
|
io_error,
|
|
} => write!(
|
|
f,
|
|
"I/O error reading directory `{}`: {}",
|
|
directory.display(),
|
|
io_error
|
|
),
|
|
SearchError::MultipleCandidates { candidates } => write!(
|
|
f,
|
|
"Multiple candidate justfiles found in `{}`: {}",
|
|
candidates[0].parent().unwrap().display(),
|
|
And(
|
|
&candidates
|
|
.iter()
|
|
.map(|candidate| format!("`{}`", candidate.file_name().unwrap().to_string_lossy()))
|
|
.collect::<Vec<String>>()
|
|
),
|
|
),
|
|
SearchError::NotFound => write!(f, "No justfile found"),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn multiple_candidates_formatting() {
|
|
let error = SearchError::MultipleCandidates {
|
|
candidates: vec![
|
|
PathBuf::from("/foo/justfile"),
|
|
PathBuf::from("/foo/JUSTFILE"),
|
|
],
|
|
};
|
|
|
|
assert_eq!(
|
|
error.to_string(),
|
|
"Multiple candidate justfiles found in `/foo`: `justfile` and `JUSTFILE`"
|
|
)
|
|
}
|
|
}
|