2017-04-29 21:14:34 +00:00
|
|
|
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2018-12-18 14:27:30 +00:00
|
|
|
use crate::message::MessagePayload;
|
2018-09-20 18:58:27 +00:00
|
|
|
|
2017-11-24 04:27:35 +00:00
|
|
|
generate_element_enum!(
|
|
|
|
/// Enum representing chatstate elements part of the
|
|
|
|
/// `http://jabber.org/protocol/chatstates` namespace.
|
2018-05-14 14:30:28 +00:00
|
|
|
ChatState, "chatstate", CHATSTATES, {
|
2017-11-24 04:27:35 +00:00
|
|
|
/// `<active xmlns='http://jabber.org/protocol/chatstates'/>`
|
|
|
|
Active => "active",
|
2017-07-20 22:47:21 +00:00
|
|
|
|
2017-11-24 04:27:35 +00:00
|
|
|
/// `<composing xmlns='http://jabber.org/protocol/chatstates'/>`
|
|
|
|
Composing => "composing",
|
2017-07-20 22:47:21 +00:00
|
|
|
|
2017-11-24 04:27:35 +00:00
|
|
|
/// `<gone xmlns='http://jabber.org/protocol/chatstates'/>`
|
|
|
|
Gone => "gone",
|
2017-07-20 22:47:21 +00:00
|
|
|
|
2017-11-24 04:27:35 +00:00
|
|
|
/// `<inactive xmlns='http://jabber.org/protocol/chatstates'/>`
|
|
|
|
Inactive => "inactive",
|
2017-07-20 22:47:21 +00:00
|
|
|
|
2017-11-24 04:27:35 +00:00
|
|
|
/// `<paused xmlns='http://jabber.org/protocol/chatstates'/>`
|
|
|
|
Paused => "paused",
|
2017-05-06 19:33:58 +00:00
|
|
|
}
|
2017-11-24 04:27:35 +00:00
|
|
|
);
|
2017-04-23 02:22:42 +00:00
|
|
|
|
2018-09-20 18:58:27 +00:00
|
|
|
impl MessagePayload for ChatState {}
|
|
|
|
|
2017-04-19 18:15:57 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2017-05-06 19:33:58 +00:00
|
|
|
use super::*;
|
2018-12-18 14:27:30 +00:00
|
|
|
use crate::ns;
|
2019-10-22 23:32:41 +00:00
|
|
|
use crate::util::error::Error;
|
2019-09-25 08:28:44 +00:00
|
|
|
use crate::Element;
|
2019-04-12 08:58:42 +00:00
|
|
|
use std::convert::TryFrom;
|
2017-04-19 18:15:57 +00:00
|
|
|
|
2018-10-26 12:26:16 +00:00
|
|
|
#[test]
|
|
|
|
fn test_size() {
|
|
|
|
assert_size!(ChatState, 1);
|
|
|
|
}
|
|
|
|
|
2017-04-19 18:15:57 +00:00
|
|
|
#[test]
|
|
|
|
fn test_simple() {
|
2018-12-18 14:32:05 +00:00
|
|
|
let elem: Element = "<active xmlns='http://jabber.org/protocol/chatstates'/>"
|
|
|
|
.parse()
|
|
|
|
.unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
ChatState::try_from(elem).unwrap();
|
2017-04-19 18:15:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_invalid() {
|
2018-12-18 14:32:05 +00:00
|
|
|
let elem: Element = "<coucou xmlns='http://jabber.org/protocol/chatstates'/>"
|
|
|
|
.parse()
|
|
|
|
.unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
let error = ChatState::try_from(elem).unwrap_err();
|
2017-04-19 18:15:57 +00:00
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
2017-04-19 23:43:17 +00:00
|
|
|
assert_eq!(message, "This is not a chatstate element.");
|
2017-04-19 18:15:57 +00:00
|
|
|
}
|
|
|
|
|
2019-01-12 21:00:46 +00:00
|
|
|
#[cfg(not(feature = "disable-validation"))]
|
2017-04-19 18:15:57 +00:00
|
|
|
#[test]
|
|
|
|
fn test_invalid_child() {
|
2018-12-18 14:32:05 +00:00
|
|
|
let elem: Element = "<gone xmlns='http://jabber.org/protocol/chatstates'><coucou/></gone>"
|
|
|
|
.parse()
|
|
|
|
.unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
let error = ChatState::try_from(elem).unwrap_err();
|
2017-04-19 18:15:57 +00:00
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Unknown child in chatstate element.");
|
|
|
|
}
|
|
|
|
|
2019-01-12 21:00:46 +00:00
|
|
|
#[cfg(not(feature = "disable-validation"))]
|
2017-04-19 18:15:57 +00:00
|
|
|
#[test]
|
|
|
|
fn test_invalid_attribute() {
|
2018-12-18 14:32:05 +00:00
|
|
|
let elem: Element = "<inactive xmlns='http://jabber.org/protocol/chatstates' coucou=''/>"
|
|
|
|
.parse()
|
|
|
|
.unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
let error = ChatState::try_from(elem).unwrap_err();
|
2017-04-19 18:15:57 +00:00
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Unknown attribute in chatstate element.");
|
|
|
|
}
|
2017-04-23 02:22:42 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serialise() {
|
2017-05-06 19:33:58 +00:00
|
|
|
let chatstate = ChatState::Active;
|
2017-05-23 22:31:33 +00:00
|
|
|
let elem: Element = chatstate.into();
|
2017-04-23 02:22:42 +00:00
|
|
|
assert!(elem.is("active", ns::CHATSTATES));
|
|
|
|
}
|
2017-04-19 18:15:57 +00:00
|
|
|
}
|