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 = 1;
const MAX_LEN: usize = 64;

/// Type to ensure usernames sent to the API are valid.
#[derive(Debug, Serialize, Clone)]
pub struct Username(String);

impl Username {
    /// Validate and instantiate a new `Username`.
    pub fn parse<T: Into<String>>(username: T) -> Result<Self> {
        let username = username.into();

        // The length checks should check grapheme count instead of raw character count.
        let is_too_short = username.len() < MIN_LEN;

        let is_too_long = username.len() > MAX_LEN;

        if is_too_short || is_too_long {
            Err(Error::UsernameError(format!(
                "The username must be between {} and {} characters",
                MIN_LEN, MAX_LEN
            )))
        } else {
            Ok(Self(username))
        }
    }
}

impl AsRef<str> for Username {
    fn as_ref(&self) -> &str {
        &self.0
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn username_fewer_than_1_char_parses_error() {
        let short_username = Username::parse(&"a".repeat(MIN_LEN - 1));

        assert!(short_username.is_err());
    }

    #[test]
    fn password_more_than_64_char_parses_error() {
        let long_username = Username::parse(&"a".repeat(MAX_LEN + 1));

        assert!(long_username.is_err());
    }
}