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-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-04-20 23:41:15 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2017-04-19 18:15:57 +00:00
|
|
|
pub enum ChatState {
|
|
|
|
Active,
|
|
|
|
Composing,
|
|
|
|
Gone,
|
|
|
|
Inactive,
|
|
|
|
Paused,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse_chatstate(root: &Element) -> Result<ChatState, Error> {
|
|
|
|
for _ in root.children() {
|
|
|
|
return Err(Error::ParseError("Unknown child in chatstate element."));
|
|
|
|
}
|
2017-04-20 22:16:12 +00:00
|
|
|
if root.is("active", ns::CHATSTATES) {
|
2017-04-19 18:15:57 +00:00
|
|
|
Ok(ChatState::Active)
|
2017-04-20 22:16:12 +00:00
|
|
|
} else if root.is("composing", ns::CHATSTATES) {
|
2017-04-19 18:15:57 +00:00
|
|
|
Ok(ChatState::Composing)
|
2017-04-20 22:16:12 +00:00
|
|
|
} else if root.is("gone", ns::CHATSTATES) {
|
2017-04-19 18:15:57 +00:00
|
|
|
Ok(ChatState::Gone)
|
2017-04-20 22:16:12 +00:00
|
|
|
} else if root.is("inactive", ns::CHATSTATES) {
|
2017-04-19 18:15:57 +00:00
|
|
|
Ok(ChatState::Inactive)
|
2017-04-20 22:16:12 +00:00
|
|
|
} else if root.is("paused", ns::CHATSTATES) {
|
2017-04-19 18:15:57 +00:00
|
|
|
Ok(ChatState::Paused)
|
|
|
|
} else {
|
2017-04-19 22:41:54 +00:00
|
|
|
Err(Error::ParseError("This is not a chatstate element."))
|
2017-04-19 18:15:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 02:22:42 +00:00
|
|
|
pub fn serialise(chatstate: &ChatState) -> Element {
|
|
|
|
Element::builder(match *chatstate {
|
|
|
|
ChatState::Active => "active",
|
|
|
|
ChatState::Composing => "composing",
|
|
|
|
ChatState::Gone => "gone",
|
|
|
|
ChatState::Inactive => "inactive",
|
|
|
|
ChatState::Paused => "paused",
|
|
|
|
}).ns(ns::CHATSTATES)
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2017-04-19 18:15:57 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use minidom::Element;
|
|
|
|
use error::Error;
|
|
|
|
use chatstates;
|
2017-04-23 02:22:42 +00:00
|
|
|
use ns;
|
2017-04-19 18:15:57 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_simple() {
|
|
|
|
let elem: Element = "<active xmlns='http://jabber.org/protocol/chatstates'/>".parse().unwrap();
|
|
|
|
chatstates::parse_chatstate(&elem).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_invalid() {
|
|
|
|
let elem: Element = "<coucou xmlns='http://jabber.org/protocol/chatstates'/>".parse().unwrap();
|
|
|
|
let error = chatstates::parse_chatstate(&elem).unwrap_err();
|
|
|
|
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();
|
|
|
|
let error = chatstates::parse_chatstate(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Unknown child in chatstate element.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[ignore]
|
|
|
|
fn test_invalid_attribute() {
|
|
|
|
let elem: Element = "<inactive xmlns='http://jabber.org/protocol/chatstates' coucou=''/>".parse().unwrap();
|
|
|
|
let error = chatstates::parse_chatstate(&elem).unwrap_err();
|
|
|
|
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() {
|
|
|
|
let chatstate = chatstates::ChatState::Active;
|
|
|
|
let elem = chatstates::serialise(&chatstate);
|
|
|
|
assert!(elem.is("active", ns::CHATSTATES));
|
|
|
|
}
|
2017-04-19 18:15:57 +00:00
|
|
|
}
|