1use std::path::PathBuf;
2
3#[derive(Debug, thiserror::Error, PartialEq)]
13#[allow(missing_docs)]
14pub enum Error {
15 #[error("Invalid integer (caused by {kind:?})")]
17 InvalidInteger { kind: std::num::IntErrorKind },
18
19 #[error("Invalid variant ({0})")]
21 InvalidVariant(#[from] strum::ParseError),
22
23 #[error("Invalid e-mail ({0})")]
25 InvalidEmail(#[from] email_address::Error),
26
27 #[error("Invalid URL ({0})")]
29 InvalidUrl(#[from] url::ParseError),
30
31 #[error("Invalid license ({0})")]
33 InvalidLicense(#[from] spdx::ParseError),
34
35 #[error("Invalid semver ({kind})")]
43 InvalidSemver { kind: String },
44
45 #[error("Value contains invalid characters: {invalid_char:?}")]
47 ValueContainsInvalidChars { invalid_char: char },
48
49 #[error("Incorrect length, got {length} expected {expected}")]
51 IncorrectLength { length: usize, expected: usize },
52
53 #[error("Value is missing the required delimiter: {delimiter}")]
55 DelimiterNotFound { delimiter: char },
56
57 #[error("Does not match the restrictions ({restrictions:?})")]
59 ValueDoesNotMatchRestrictions { restrictions: Vec<String> },
60
61 #[error("Value '{value}' does not match the '{regex_type}' regex: {regex}")]
63 RegexDoesNotMatch {
64 value: String,
65 regex_type: String,
66 regex: String,
67 },
68
69 #[error("Parser failed with the following error:\n{0}")]
71 ParseError(String),
72
73 #[error("Missing component: {component}")]
75 MissingComponent { component: &'static str },
76
77 #[error("The path is not absolute: {0}")]
79 PathNotAbsolute(PathBuf),
80
81 #[error("The path is not relative: {0}")]
83 PathNotRelative(PathBuf),
84
85 #[error("File name ({0}) contains invalid characters: {1:?}")]
87 FileNameContainsInvalidChars(PathBuf, char),
88
89 #[error("File name is empty")]
91 FileNameIsEmpty,
92
93 #[error("Deprecated license: {0}")]
95 DeprecatedLicense(String),
96
97 #[error("Invalid OpenPGP v4 fingerprint, only 40 uppercase hexadecimal characters are allowed")]
99 InvalidOpenPGPv4Fingerprint,
100
101 #[error("The string is not a valid OpenPGP key ID: {0}, must be 16 hexadecimal characters")]
103 InvalidOpenPGPKeyId(String),
104
105 #[error("Invalid shared object name (v1): {0}")]
107 InvalidSonameV1(&'static str),
108}
109
110impl From<std::num::ParseIntError> for crate::error::Error {
111 fn from(e: std::num::ParseIntError) -> Self {
113 Self::InvalidInteger {
114 kind: e.kind().clone(),
115 }
116 }
117}
118
119impl<'a> From<winnow::error::ParseError<&'a str, winnow::error::ContextError>>
120 for crate::error::Error
121{
122 fn from(value: winnow::error::ParseError<&'a str, winnow::error::ContextError>) -> Self {
124 Self::ParseError(value.to_string())
125 }
126}
127
128#[cfg(test)]
129mod tests {
130 use std::num::IntErrorKind;
131
132 use rstest::rstest;
133
134 use super::*;
135 use crate::openpgp::PACKAGER_REGEX;
136
137 #[rstest]
138 #[case(
139 "Invalid integer (caused by InvalidDigit)",
140 Error::InvalidInteger {
141 kind: IntErrorKind::InvalidDigit
142 }
143 )]
144 #[case(
145 "Invalid integer (caused by InvalidDigit)",
146 Error::InvalidInteger {
147 kind: IntErrorKind::InvalidDigit
148 }
149 )]
150 #[case(
151 "Invalid integer (caused by PosOverflow)",
152 Error::InvalidInteger {
153 kind: IntErrorKind::PosOverflow
154 }
155 )]
156 #[allow(deprecated)]
157 #[case(
158 "Invalid integer (caused by InvalidDigit)",
159 Error::InvalidInteger {
160 kind: IntErrorKind::InvalidDigit
161 }
162 )]
163 #[case(
164 "Value '€i²' does not match the 'packager' regex: ^(?P<name>[\\w\\s\\-().]+) <(?P<email>.*)>$",
165 Error::RegexDoesNotMatch {
166 value: "€i²".to_string(),
167 regex_type: "packager".to_string(),
168 regex: PACKAGER_REGEX.to_string(),
169 }
170 )]
171 #[case(
172 "Invalid e-mail (Missing separator character '@'.)",
173 email_address::Error::MissingSeparator.into()
174 )]
175 #[case(
176 "Invalid integer (caused by InvalidDigit)",
177 Error::InvalidInteger {
178 kind: IntErrorKind::InvalidDigit
179 }
180 )]
181 fn error_format_string(#[case] error_str: &str, #[case] error: Error) {
182 assert_eq!(error_str, format!("{}", error));
183 }
184}