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
use serde::Serialize;
use crate::error::{Error, Result};
const MIN_LEN: usize = 8;
const MAX_LEN: usize = 1024;
#[derive(Debug, Serialize, Clone)]
pub struct Password(String);
impl Password {
pub fn parse<T: Into<String>>(password: T) -> Result<Self> {
let password = password.into();
let is_too_short = password.len() < MIN_LEN;
let is_too_long = password.len() > MAX_LEN;
if is_too_short || is_too_long {
Err(Error::PasswordError(format!(
"The password must be between {} and {} characters",
MIN_LEN, MAX_LEN
)))
} else {
Ok(Self(password))
}
}
}
impl AsRef<str> for Password {
fn as_ref(&self) -> &str {
&self.0
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn password_fewer_than_8_char_parses_error() {
let short_password = Password::parse(&"a".repeat(MIN_LEN - 1));
assert!(short_password.is_err());
}
#[test]
fn password_more_than_1024_char_parses_error() {
let long_password = Password::parse(&"a".repeat(MAX_LEN + 1));
assert!(long_password.is_err());
}
}