thiserror/tests/test_display.rs
2019-10-11 10:46:20 -07:00

66 lines
1.4 KiB
Rust

use std::fmt::Display;
use thiserror::Error;
#[derive(Error, Debug)]
#[error("braced error: {msg}")]
struct BracedError {
msg: String,
}
#[derive(Error, Debug)]
#[error("braced error")]
struct BracedUnused {
extra: usize,
}
#[derive(Error, Debug)]
#[error("tuple error: {0}")]
struct TupleError(usize);
#[derive(Error, Debug)]
#[error("unit error")]
struct UnitError;
#[derive(Error, Debug)]
enum EnumError {
#[error("braced error: {id}")]
Braced { id: usize },
#[error("tuple error: {0}")]
Tuple(usize),
#[error("unit error")]
Unit,
}
#[derive(Error, Debug)]
#[error("1 + 1 = {}", 1 + 1)]
struct Arithmetic;
#[derive(Error, Debug)]
#[error("!bool = {}", not(.0))]
struct NestedShorthand(bool);
fn not(bool: &bool) -> bool {
!*bool
}
fn assert<T: Display>(expected: &str, value: T) {
assert_eq!(expected, value.to_string());
}
#[test]
fn test_display() {
assert(
"braced error: T",
BracedError {
msg: "T".to_owned(),
},
);
assert("braced error", BracedUnused { extra: 0 });
assert("tuple error: 0", TupleError(0));
assert("unit error", UnitError);
assert("braced error: 0", EnumError::Braced { id: 0 });
assert("tuple error: 0", EnumError::Tuple(0));
assert("unit error", EnumError::Unit);
assert("1 + 1 = 2", Arithmetic);
assert("!bool = false", NestedShorthand(true));
}