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
// Copyright (c) 2016-2017 Martijn Rijkeboer <[email protected]>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use std::fmt::Display;
use uuid::Uuid;

/// The identifier for a group.
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, PartialOrd, Ord)]
pub struct GroupUuid(pub Uuid);

impl GroupUuid {
    /// Create a new random group identifier.
    pub fn new_random() -> GroupUuid {
        GroupUuid(Uuid::new_v4())
    }

    /// Create a nil/zero group identifier.
    pub fn nil() -> GroupUuid {
        GroupUuid(Uuid::nil())
    }
}

impl Default for GroupUuid {
    fn default() -> GroupUuid {
        GroupUuid::nil()
    }
}

impl Display for GroupUuid {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> Result<(), ::std::fmt::Error> {
        f.write_str(self.0.to_string().as_str())
    }
}

#[cfg(test)]
mod tests {

    use super::*;
    use uuid::Uuid;

    #[test]
    fn test_new_random_returns_random_group_uuids() {
        let a = GroupUuid::new_random();
        let b = GroupUuid::new_random();
        assert!(a != b);
    }

    #[test]
    fn test_nil_returns_nil_uuid() {
        let expected = Uuid::nil();
        let actual = GroupUuid::nil().0;
        assert_eq!(actual, expected);
    }

    #[test]
    fn test_default_returns_nil_group_uuid() {
        let expected = GroupUuid::nil();
        let actual = GroupUuid::default();
        assert_eq!(actual, expected);
    }
}