2022-07-23 21:28:34 -04:00
|
|
|
use std::{error::Error, fmt, sync::Arc};
|
2022-07-22 20:34:50 -04:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
2022-07-23 21:28:34 -04:00
|
|
|
pub enum MTTError {
|
|
|
|
Generic(Generic),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Error for MTTError {
|
|
|
|
fn source(&self) -> Option<&(dyn Error + 'static)> {
|
|
|
|
match self {
|
|
|
|
MTTError::Generic(err) => err.source(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for MTTError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
match self {
|
|
|
|
MTTError::Generic(err) => write!(f, "{}", err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Generic> for MTTError {
|
|
|
|
fn from(err: Generic) -> Self {
|
|
|
|
MTTError::Generic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Generic {
|
2022-07-22 20:34:50 -04:00
|
|
|
detail: String,
|
2022-07-23 21:28:34 -04:00
|
|
|
source: Option<Arc<MTTError>>,
|
2022-07-22 20:34:50 -04:00
|
|
|
}
|
|
|
|
|
2022-07-23 21:28:34 -04:00
|
|
|
impl Generic {
|
2022-07-22 20:34:50 -04:00
|
|
|
fn new(detail: &str) -> Self {
|
|
|
|
Self {
|
|
|
|
detail: detail.to_string(),
|
2022-07-23 21:28:34 -04:00
|
|
|
source: None,
|
2022-07-22 20:34:50 -04:00
|
|
|
}
|
|
|
|
}
|
2022-07-23 21:28:34 -04:00
|
|
|
|
|
|
|
fn add_source(&mut self, source: MTTError) {
|
|
|
|
self.source = Some(Arc::new(source));
|
|
|
|
}
|
2022-07-22 20:34:50 -04:00
|
|
|
}
|
|
|
|
|
2022-07-23 21:28:34 -04:00
|
|
|
impl Error for Generic {
|
|
|
|
fn source(&self) -> Option<&(dyn Error + 'static)> {
|
|
|
|
match &self.source {
|
|
|
|
Some(err) => Some(err.as_ref()),
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Generic {
|
2022-07-22 20:34:50 -04:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
write!(f, "{}", self.detail)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
2022-07-23 21:28:34 -04:00
|
|
|
mod generics {
|
2022-07-22 20:34:50 -04:00
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_error() {
|
|
|
|
let detail = "new error";
|
2022-07-23 21:28:34 -04:00
|
|
|
let err = Generic::new(detail);
|
2022-07-22 20:34:50 -04:00
|
|
|
assert!(
|
|
|
|
err.to_string() == detail,
|
|
|
|
"\n\nGot: {}\nWant: {}\n\n",
|
|
|
|
err.to_string(),
|
|
|
|
detail
|
|
|
|
);
|
2022-07-23 21:28:34 -04:00
|
|
|
assert!(
|
|
|
|
err.source().is_none(),
|
|
|
|
"Error source should initialoze to None."
|
|
|
|
);
|
|
|
|
let error: MTTError = err.into();
|
|
|
|
assert!(
|
|
|
|
error.to_string() == detail,
|
|
|
|
"\n\nGot: {}\nWant: {}\n\n",
|
|
|
|
error.to_string(),
|
|
|
|
detail
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn error_with_source() {
|
|
|
|
let par_detail = "parent error";
|
|
|
|
let cld_detail = "child error";
|
|
|
|
let par_err = Generic::new(par_detail);
|
|
|
|
let mut cld_err = Generic::new(cld_detail);
|
|
|
|
cld_err.add_source(par_err.into());
|
|
|
|
assert!(
|
|
|
|
cld_err.source().unwrap().to_string() == par_detail,
|
|
|
|
"/n/nGot: {}\nWant: {}\n\n",
|
|
|
|
cld_err.source().unwrap().to_string(),
|
|
|
|
par_detail
|
|
|
|
);
|
|
|
|
let error: MTTError = cld_err.into();
|
|
|
|
assert!(
|
|
|
|
error.source().unwrap().to_string() == par_detail,
|
|
|
|
"/n/nGot: {}\nWant: {}\n\n",
|
|
|
|
error.source().unwrap().to_string(),
|
|
|
|
par_detail
|
|
|
|
);
|
2022-07-22 20:34:50 -04:00
|
|
|
}
|
|
|
|
}
|