xmpp_parsers/
attention.rs

1// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6use xso::{AsXml, FromXml};
7
8use crate::message::MessagePayload;
9use crate::ns;
10
11/// Requests the attention of the recipient.
12#[derive(FromXml, AsXml, Debug, Clone, PartialEq)]
13#[xml(namespace = ns::ATTENTION, name = "attention")]
14pub struct Attention;
15
16impl MessagePayload for Attention {}
17
18#[cfg(test)]
19mod tests {
20    use super::*;
21    use minidom::Element;
22    #[cfg(not(feature = "disable-validation"))]
23    use xso::error::{Error, FromElementError};
24
25    #[test]
26    fn test_size() {
27        assert_size!(Attention, 0);
28    }
29
30    #[test]
31    fn test_simple() {
32        let elem: Element = "<attention xmlns='urn:xmpp:attention:0'/>".parse().unwrap();
33        Attention::try_from(elem).unwrap();
34    }
35
36    #[cfg(not(feature = "disable-validation"))]
37    #[test]
38    fn test_invalid_child() {
39        let elem: Element = "<attention xmlns='urn:xmpp:attention:0'><coucou/></attention>"
40            .parse()
41            .unwrap();
42        let error = Attention::try_from(elem).unwrap_err();
43        let message = match error {
44            FromElementError::Invalid(Error::Other(string)) => string,
45            _ => panic!(),
46        };
47        assert_eq!(message, "Unknown child in Attention element.");
48    }
49
50    #[cfg(not(feature = "disable-validation"))]
51    #[test]
52    fn test_invalid_attribute() {
53        let elem: Element = "<attention xmlns='urn:xmpp:attention:0' coucou=''/>"
54            .parse()
55            .unwrap();
56        let error = Attention::try_from(elem).unwrap_err();
57        let message = match error {
58            FromElementError::Invalid(Error::Other(string)) => string,
59            _ => panic!(),
60        };
61        assert_eq!(message, "Unknown attribute in Attention element.");
62    }
63
64    #[test]
65    fn test_serialise() {
66        let elem: Element = "<attention xmlns='urn:xmpp:attention:0'/>".parse().unwrap();
67        let attention = Attention;
68        let elem2: Element = attention.into();
69        assert_eq!(elem, elem2);
70    }
71}