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
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
use std::collections::HashMap;

use bolt_proto_derive::*;

use crate::{impl_message_with_metadata, impl_try_from_message, Value};

pub(crate) const MARKER: u8 = 0xB1;
pub(crate) const SIGNATURE: u8 = 0x01;

#[derive(Debug, Clone, Eq, PartialEq, Signature, Marker, Serialize, Deserialize)]
pub struct Hello {
    pub(crate) metadata: HashMap<String, Value>,
}

impl_message_with_metadata!(Hello);
impl_try_from_message!(Hello, Hello);

#[cfg(test)]
mod tests {
    use std::convert::TryFrom;
    use std::iter::FromIterator;
    use std::sync::{Arc, Mutex};

    use bytes::Bytes;

    use crate::serialization::*;
    use crate::value::*;

    use super::*;

    fn new_msg() -> Hello {
        Hello::new(HashMap::from_iter(vec![(
            "user_agent".to_string(),
            Value::from("MyClient/1.0"),
        )]))
    }

    #[test]
    fn get_marker() {
        assert_eq!(new_msg().get_marker().unwrap(), MARKER);
    }

    #[test]
    fn get_signature() {
        assert_eq!(new_msg().get_signature(), SIGNATURE);
    }

    #[test]
    fn try_into_bytes() {
        let msg = new_msg();
        assert_eq!(
            msg.try_into_bytes().unwrap(),
            Bytes::from_static(&[
                MARKER,
                SIGNATURE,
                map::MARKER_TINY | 1,
                string::MARKER_TINY | 10,
                b'u',
                b's',
                b'e',
                b'r',
                b'_',
                b'a',
                b'g',
                b'e',
                b'n',
                b't',
                string::MARKER_TINY | 12,
                b'M',
                b'y',
                b'C',
                b'l',
                b'i',
                b'e',
                b'n',
                b't',
                b'/',
                b'1',
                b'.',
                b'0',
            ])
        );
    }

    #[test]
    fn try_from_bytes() {
        let msg = new_msg();
        let msg_bytes = &[
            map::MARKER_TINY | 1,
            string::MARKER_TINY | 10,
            b'u',
            b's',
            b'e',
            b'r',
            b'_',
            b'a',
            b'g',
            b'e',
            b'n',
            b't',
            string::MARKER_TINY | 12,
            b'M',
            b'y',
            b'C',
            b'l',
            b'i',
            b'e',
            b'n',
            b't',
            b'/',
            b'1',
            b'.',
            b'0',
        ];
        assert_eq!(
            Hello::try_from(Arc::new(Mutex::new(Bytes::from_static(msg_bytes)))).unwrap(),
            msg
        );
    }
}