1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//! Dynomite error types
use std::{error::Error, fmt};

/// Errors that may result of attribute value conversions
#[derive(Debug, PartialEq)]
pub enum AttributeError {
    /// Will be returned if an AttributeValue is present, and is of the expected
    /// type but its contents are not well-formatted
    InvalidFormat,
    /// Will be returned if provided AttributeValue is not of the expected type
    InvalidType,
    /// Will be returned if provided attributes does not included an
    /// expected named value
    MissingField {
        /// Name of the field that is missing
        name: String,
    },
}

impl fmt::Display for AttributeError {
    fn fmt(
        &self,
        f: &mut fmt::Formatter<'_>,
    ) -> fmt::Result {
        match self {
            AttributeError::InvalidFormat => write!(f, "Invalid format"),
            AttributeError::InvalidType => write!(f, "Invalid type"),
            AttributeError::MissingField { name } => write!(f, "Missing field {}", name),
        }
    }
}

impl Error for AttributeError {}

#[cfg(test)]
mod tests {
    use super::AttributeError;
    use std::error::Error;

    #[test]
    fn attribute_error_impl_std_error() {
        fn test(_: impl Error) {}
        test(AttributeError::InvalidFormat)
    }

    #[test]
    fn invalid_format_displays() {
        assert_eq!(
            "Invalid format",
            format!("{}", AttributeError::InvalidFormat)
        )
    }

    #[test]
    fn invalid_type_displays() {
        assert_eq!("Invalid type", format!("{}", AttributeError::InvalidType))
    }

    #[test]
    fn missing_field_displays() {
        assert_eq!(
            "Missing field foo",
            format!("{}", AttributeError::MissingField { name: "foo".into() })
        )
    }
}