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-29 02:50:02 +00:00
|
|
|
use minidom::{Element, IntoElements};
|
|
|
|
use minidom::convert::ElementEmitter;
|
2017-04-21 02:57:34 +00:00
|
|
|
|
|
|
|
use error::Error;
|
2017-05-01 00:50:18 +00:00
|
|
|
use jid::Jid;
|
2017-04-21 02:57:34 +00:00
|
|
|
|
|
|
|
use ns;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Delay {
|
2017-05-01 00:50:18 +00:00
|
|
|
pub from: Option<Jid>,
|
2017-04-21 02:57:34 +00:00
|
|
|
pub stamp: String,
|
|
|
|
pub data: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse_delay(root: &Element) -> Result<Delay, Error> {
|
|
|
|
if !root.is("delay", ns::DELAY) {
|
|
|
|
return Err(Error::ParseError("This is not a delay element."));
|
|
|
|
}
|
|
|
|
for _ in root.children() {
|
|
|
|
return Err(Error::ParseError("Unknown child in delay element."));
|
|
|
|
}
|
|
|
|
let from = root.attr("from").and_then(|value| value.parse().ok());
|
|
|
|
let stamp = root.attr("stamp").ok_or(Error::ParseError("Mandatory argument 'stamp' not present in delay element."))?.to_owned();
|
2017-04-21 03:01:14 +00:00
|
|
|
let data = match root.text().as_ref() {
|
|
|
|
"" => None,
|
|
|
|
text => Some(text.to_owned()),
|
|
|
|
};
|
2017-04-21 02:57:34 +00:00
|
|
|
Ok(Delay {
|
|
|
|
from: from,
|
|
|
|
stamp: stamp,
|
2017-04-21 03:01:14 +00:00
|
|
|
data: data,
|
2017-04-21 02:57:34 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-04-23 02:21:53 +00:00
|
|
|
pub fn serialise(delay: &Delay) -> Element {
|
|
|
|
Element::builder("delay")
|
|
|
|
.ns(ns::DELAY)
|
2017-05-01 00:50:18 +00:00
|
|
|
.attr("from", delay.from.clone().and_then(|value| Some(String::from(value))))
|
2017-04-23 02:21:53 +00:00
|
|
|
.attr("stamp", delay.stamp.clone())
|
|
|
|
.append(delay.data.clone())
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2017-04-29 02:50:02 +00:00
|
|
|
impl IntoElements for Delay {
|
|
|
|
fn into_elements(self, emitter: &mut ElementEmitter) {
|
|
|
|
let elem = serialise(&self);
|
|
|
|
emitter.append_child(elem)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-21 02:57:34 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2017-05-01 00:50:18 +00:00
|
|
|
use std::str::FromStr;
|
2017-04-21 02:57:34 +00:00
|
|
|
use minidom::Element;
|
|
|
|
use error::Error;
|
2017-05-01 00:50:18 +00:00
|
|
|
use jid::Jid;
|
2017-04-21 02:57:34 +00:00
|
|
|
use delay;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_simple() {
|
|
|
|
let elem: Element = "<delay xmlns='urn:xmpp:delay' from='capulet.com' stamp='2002-09-10T23:08:25Z'/>".parse().unwrap();
|
|
|
|
let delay = delay::parse_delay(&elem).unwrap();
|
2017-05-01 00:50:18 +00:00
|
|
|
assert_eq!(delay.from, Some(Jid::from_str("capulet.com").unwrap()));
|
2017-04-21 02:57:34 +00:00
|
|
|
assert_eq!(delay.stamp, "2002-09-10T23:08:25Z");
|
|
|
|
assert_eq!(delay.data, None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unknown() {
|
|
|
|
let elem: Element = "<replace xmlns='urn:xmpp:message-correct:0'/>".parse().unwrap();
|
|
|
|
let error = delay::parse_delay(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "This is not a delay element.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_invalid_child() {
|
|
|
|
let elem: Element = "<delay xmlns='urn:xmpp:delay'><coucou/></delay>".parse().unwrap();
|
|
|
|
let error = delay::parse_delay(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Unknown child in delay element.");
|
|
|
|
}
|
2017-04-23 02:21:53 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serialise() {
|
|
|
|
let elem: Element = "<delay xmlns='urn:xmpp:delay' stamp='2002-09-10T23:08:25Z'/>".parse().unwrap();
|
|
|
|
let delay = delay::Delay {
|
|
|
|
from: None,
|
|
|
|
stamp: "2002-09-10T23:08:25Z".to_owned(),
|
|
|
|
data: None,
|
|
|
|
};
|
|
|
|
let elem2 = delay::serialise(&delay);
|
|
|
|
assert_eq!(elem, elem2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serialise_data() {
|
|
|
|
let elem: Element = "<delay xmlns='urn:xmpp:delay' from='juliet@example.org' stamp='2002-09-10T23:08:25Z'>Reason</delay>".parse().unwrap();
|
|
|
|
let delay = delay::Delay {
|
2017-05-01 00:50:18 +00:00
|
|
|
from: Some(Jid::from_str("juliet@example.org").unwrap()),
|
2017-04-23 02:21:53 +00:00
|
|
|
stamp: "2002-09-10T23:08:25Z".to_owned(),
|
|
|
|
data: Some(String::from("Reason")),
|
|
|
|
};
|
|
|
|
let elem2 = delay::serialise(&delay);
|
|
|
|
assert_eq!(elem, elem2);
|
|
|
|
}
|
2017-04-21 02:57:34 +00:00
|
|
|
}
|