mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-27 13:01:29 +00:00

* fix type inference issue in eyre macro autoderef behavior * use the upstream example * update testcase compile err output * remove cruft * bump version for breaking change
56 lines
1.4 KiB
Rust
56 lines
1.4 KiB
Rust
use eyre::{eyre, Report};
|
|
use std::error::Error as StdError;
|
|
use std::io;
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("outer")]
|
|
struct MyError {
|
|
source: io::Error,
|
|
}
|
|
|
|
#[test]
|
|
fn test_boxed_str() {
|
|
let error = Box::<dyn StdError + Send + Sync>::from("oh no!");
|
|
let error: Report = eyre!(error);
|
|
assert_eq!("oh no!", error.to_string());
|
|
assert_eq!(
|
|
"oh no!",
|
|
error
|
|
.downcast_ref::<Box<dyn StdError + Send + Sync>>()
|
|
.unwrap()
|
|
.to_string()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_boxed_thiserror() {
|
|
let error = MyError {
|
|
source: io::Error::new(io::ErrorKind::Other, "oh no!"),
|
|
};
|
|
let error: Report = eyre!(error);
|
|
assert_eq!("oh no!", error.source().unwrap().to_string());
|
|
}
|
|
|
|
#[test]
|
|
fn test_boxed_eyre() {
|
|
let error: Report = eyre!("oh no!").wrap_err("it failed");
|
|
let error = eyre!(error);
|
|
assert_eq!("oh no!", error.source().unwrap().to_string());
|
|
}
|
|
|
|
#[test]
|
|
fn test_boxed_sources() {
|
|
let error = MyError {
|
|
source: io::Error::new(io::ErrorKind::Other, "oh no!"),
|
|
};
|
|
let error = Box::<dyn StdError + Send + Sync>::from(error);
|
|
let error: Report = eyre!(error).wrap_err("it failed");
|
|
assert_eq!("it failed", error.to_string());
|
|
assert_eq!("outer", error.source().unwrap().to_string());
|
|
assert_eq!(
|
|
"oh no!",
|
|
error.source().unwrap().source().unwrap().to_string()
|
|
);
|
|
}
|