xmpp-rs/src/ibb.rs

98 lines
3.3 KiB
Rust
Raw Normal View History

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/.
use ns;
use helpers::Base64;
2017-04-19 20:52:14 +00:00
generate_attribute!(Stanza, "stanza", {
Iq => "iq",
Message => "message",
}, Default = Iq);
2017-04-19 20:52:14 +00:00
generate_element_with_only_attributes!(Open, "open", ns::IBB, [
block_size: u16 = "block-size" => required,
sid: String = "sid" => required,
stanza: Stanza = "stanza" => default,
]);
generate_element_with_text!(Data, "data", ns::IBB,
[
seq: u16 = "seq" => required,
sid: String = "sid" => required
],
data: Base64<Vec<u8>>
);
generate_element_with_only_attributes!(Close, "close", ns::IBB, [
sid: String = "sid" => required,
]);
2017-04-27 18:05:51 +00:00
2017-04-19 20:52:14 +00:00
#[cfg(test)]
mod tests {
2017-05-04 22:11:10 +00:00
use super::*;
use try_from::TryFrom;
use minidom::Element;
use error::Error;
use std::error::Error as StdError;
2017-04-19 20:52:14 +00:00
#[test]
fn test_simple() {
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='3' sid='coucou'/>".parse().unwrap();
let open = Open::try_from(elem).unwrap();
assert_eq!(open.block_size, 3);
assert_eq!(open.sid, "coucou");
assert_eq!(open.stanza, Stanza::Iq);
let elem: Element = "<data xmlns='http://jabber.org/protocol/ibb' seq='0' sid='coucou'>AAAA</data>".parse().unwrap();
let data = Data::try_from(elem).unwrap();
assert_eq!(data.seq, 0);
assert_eq!(data.sid, "coucou");
assert_eq!(data.data, vec!(0, 0, 0));
let elem: Element = "<close xmlns='http://jabber.org/protocol/ibb' sid='coucou'/>".parse().unwrap();
let close = Close::try_from(elem).unwrap();
assert_eq!(close.sid, "coucou");
2017-04-19 20:52:14 +00:00
}
#[test]
fn test_invalid() {
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb'/>".parse().unwrap();
let error = Open::try_from(elem).unwrap_err();
2017-04-19 20:52:14 +00:00
let message = match error {
Error::ParseError(string) => string,
_ => panic!(),
};
assert_eq!(message, "Required attribute 'block-size' missing.");
2017-04-19 20:52:14 +00:00
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='-5'/>".parse().unwrap();
let error = Open::try_from(elem).unwrap_err();
2017-04-19 20:52:14 +00:00
let message = match error {
Error::ParseIntError(error) => error,
2017-04-19 20:52:14 +00:00
_ => panic!(),
};
assert_eq!(message.description(), "invalid digit found in string");
2017-04-19 20:52:14 +00:00
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='128'/>".parse().unwrap();
let error = Open::try_from(elem).unwrap_err();
2017-04-19 20:52:14 +00:00
let message = match error {
Error::ParseError(error) => error,
2017-04-19 20:52:14 +00:00
_ => panic!(),
};
assert_eq!(message, "Required attribute 'sid' missing.");
2017-04-19 20:52:14 +00:00
}
#[test]
fn test_invalid_stanza() {
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='128' sid='coucou' stanza='fdsq'/>".parse().unwrap();
let error = Open::try_from(elem).unwrap_err();
2017-04-19 20:52:14 +00:00
let message = match error {
Error::ParseError(string) => string,
_ => panic!(),
};
2017-06-14 00:57:02 +00:00
assert_eq!(message, "Unknown value for 'stanza' attribute.");
2017-04-19 20:52:14 +00:00
}
}