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/.
|
|
|
|
|
2017-07-29 05:26:50 +00:00
|
|
|
#![deny(missing_docs)]
|
|
|
|
|
2017-07-20 19:03:15 +00:00
|
|
|
use try_from::TryFrom;
|
2017-05-06 19:33:58 +00:00
|
|
|
|
2017-04-19 18:15:57 +00:00
|
|
|
use minidom::Element;
|
|
|
|
|
|
|
|
use error::Error;
|
|
|
|
|
2017-04-20 22:16:12 +00:00
|
|
|
use ns;
|
2017-04-19 18:15:57 +00:00
|
|
|
|
2017-07-20 22:47:21 +00:00
|
|
|
/// Enum representing chatstate elements part of the
|
|
|
|
/// `http://jabber.org/protocol/chatstates` namespace.
|
2017-04-20 23:41:15 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2017-04-19 18:15:57 +00:00
|
|
|
pub enum ChatState {
|
2017-07-20 22:47:21 +00:00
|
|
|
/// `<active xmlns='http://jabber.org/protocol/chatstates'/>`
|
2017-04-19 18:15:57 +00:00
|
|
|
Active,
|
2017-07-20 22:47:21 +00:00
|
|
|
|
|
|
|
/// `<composing xmlns='http://jabber.org/protocol/chatstates'/>`
|
2017-04-19 18:15:57 +00:00
|
|
|
Composing,
|
2017-07-20 22:47:21 +00:00
|
|
|
|
|
|
|
/// `<gone xmlns='http://jabber.org/protocol/chatstates'/>`
|
2017-04-19 18:15:57 +00:00
|
|
|
Gone,
|
2017-07-20 22:47:21 +00:00
|
|
|
|
|
|
|
/// `<inactive xmlns='http://jabber.org/protocol/chatstates'/>`
|
2017-04-19 18:15:57 +00:00
|
|
|
Inactive,
|
2017-07-20 22:47:21 +00:00
|
|
|
|
|
|
|
/// `<paused xmlns='http://jabber.org/protocol/chatstates'/>`
|
2017-04-19 18:15:57 +00:00
|
|
|
Paused,
|
|
|
|
}
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
impl TryFrom<Element> for ChatState {
|
2017-07-20 19:03:15 +00:00
|
|
|
type Err = Error;
|
2017-05-06 19:33:58 +00:00
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
fn try_from(elem: Element) -> Result<ChatState, Error> {
|
2017-10-10 17:09:58 +00:00
|
|
|
check_ns_only!(elem, "chatstate", ns::CHATSTATES);
|
|
|
|
check_no_children!(elem, "chatstate");
|
2017-10-31 15:47:38 +00:00
|
|
|
check_no_attributes!(elem, "chatstate");
|
2017-06-25 18:55:55 +00:00
|
|
|
Ok(match elem.name() {
|
|
|
|
"active" => ChatState::Active,
|
|
|
|
"composing" => ChatState::Composing,
|
|
|
|
"gone" => ChatState::Gone,
|
|
|
|
"inactive" => ChatState::Inactive,
|
|
|
|
"paused" => ChatState::Paused,
|
|
|
|
_ => return Err(Error::ParseError("This is not a chatstate element.")),
|
|
|
|
})
|
2017-04-19 18:15:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-20 19:36:13 +00:00
|
|
|
impl From<ChatState> for Element {
|
|
|
|
fn from(chatstate: ChatState) -> Element {
|
|
|
|
Element::builder(match chatstate {
|
2017-05-06 19:33:58 +00:00
|
|
|
ChatState::Active => "active",
|
|
|
|
ChatState::Composing => "composing",
|
|
|
|
ChatState::Gone => "gone",
|
|
|
|
ChatState::Inactive => "inactive",
|
|
|
|
ChatState::Paused => "paused",
|
|
|
|
}).ns(ns::CHATSTATES)
|
|
|
|
.build()
|
|
|
|
}
|
2017-04-23 02:22:42 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 18:15:57 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2017-05-06 19:33:58 +00:00
|
|
|
use super::*;
|
2017-04-19 18:15:57 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_simple() {
|
|
|
|
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() {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_invalid_child() {
|
|
|
|
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.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_invalid_attribute() {
|
|
|
|
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
|
|
|
}
|