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-21 02:45:05 +00:00
|
|
|
use minidom::Element;
|
|
|
|
|
|
|
|
use error::Error;
|
|
|
|
|
|
|
|
use ns;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct ExplicitMessageEncryption {
|
|
|
|
pub namespace: String,
|
|
|
|
pub name: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse_explicit_message_encryption(root: &Element) -> Result<ExplicitMessageEncryption, Error> {
|
|
|
|
if !root.is("encryption", ns::EME) {
|
|
|
|
return Err(Error::ParseError("This is not an encryption element."));
|
|
|
|
}
|
|
|
|
for _ in root.children() {
|
|
|
|
return Err(Error::ParseError("Unknown child in encryption element."));
|
|
|
|
}
|
|
|
|
let namespace = root.attr("namespace").ok_or(Error::ParseError("Mandatory argument 'namespace' not present in encryption element."))?.to_owned();
|
|
|
|
let name = root.attr("name").and_then(|value| value.parse().ok());
|
|
|
|
Ok(ExplicitMessageEncryption {
|
|
|
|
namespace: namespace,
|
|
|
|
name: name,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-04-23 02:22:02 +00:00
|
|
|
pub fn serialise(eme: &ExplicitMessageEncryption) -> Element {
|
|
|
|
Element::builder("encryption")
|
|
|
|
.ns(ns::EME)
|
|
|
|
.attr("namespace", eme.namespace.clone())
|
|
|
|
.attr("name", eme.name.clone())
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
2017-04-21 02:45:05 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use minidom::Element;
|
|
|
|
use error::Error;
|
|
|
|
use eme;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_simple() {
|
|
|
|
let elem: Element = "<encryption xmlns='urn:xmpp:eme:0' namespace='urn:xmpp:otr:0'/>".parse().unwrap();
|
|
|
|
let encryption = eme::parse_explicit_message_encryption(&elem).unwrap();
|
|
|
|
assert_eq!(encryption.namespace, "urn:xmpp:otr:0");
|
|
|
|
assert_eq!(encryption.name, None);
|
|
|
|
|
|
|
|
let elem: Element = "<encryption xmlns='urn:xmpp:eme:0' namespace='some.unknown.mechanism' name='SuperMechanism'/>".parse().unwrap();
|
|
|
|
let encryption = eme::parse_explicit_message_encryption(&elem).unwrap();
|
|
|
|
assert_eq!(encryption.namespace, "some.unknown.mechanism");
|
|
|
|
assert_eq!(encryption.name, Some(String::from("SuperMechanism")));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unknown() {
|
|
|
|
let elem: Element = "<replace xmlns='urn:xmpp:message-correct:0'/>".parse().unwrap();
|
|
|
|
let error = eme::parse_explicit_message_encryption(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "This is not an encryption element.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_invalid_child() {
|
|
|
|
let elem: Element = "<encryption xmlns='urn:xmpp:eme:0'><coucou/></encryption>".parse().unwrap();
|
|
|
|
let error = eme::parse_explicit_message_encryption(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Unknown child in encryption element.");
|
|
|
|
}
|
2017-04-23 02:22:02 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serialise() {
|
|
|
|
let elem: Element = "<encryption xmlns='urn:xmpp:eme:0' namespace='coucou'/>".parse().unwrap();
|
|
|
|
let eme = eme::ExplicitMessageEncryption { namespace: String::from("coucou"), name: None };
|
|
|
|
let elem2 = eme::serialise(&eme);
|
|
|
|
assert_eq!(elem, elem2);
|
|
|
|
}
|
2017-04-21 02:45:05 +00:00
|
|
|
}
|