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/.
|
|
|
|
|
|
2018-12-18 14:27:30 +00:00
|
|
|
|
use crate::iq::IqSetPayload;
|
2024-01-06 18:14:37 +00:00
|
|
|
|
use crate::util::text_node_codecs::{Base64, Codec};
|
2017-04-19 20:52:14 +00:00
|
|
|
|
|
2018-07-02 11:47:32 +00:00
|
|
|
|
generate_id!(
|
2018-12-18 14:32:05 +00:00
|
|
|
|
/// An identifier matching a stream.
|
|
|
|
|
StreamId
|
|
|
|
|
);
|
2018-07-02 11:16:00 +00:00
|
|
|
|
|
2018-07-02 11:47:32 +00:00
|
|
|
|
generate_attribute!(
|
|
|
|
|
/// Which stanza type to use to exchange data.
|
|
|
|
|
Stanza, "stanza", {
|
|
|
|
|
/// `<iq/>` gives a feedback on whether the chunk has been received or not,
|
|
|
|
|
/// which is useful in the case the recipient might not receive them in a
|
|
|
|
|
/// timely manner, or to do your own throttling based on the results.
|
2017-06-13 23:50:57 +00:00
|
|
|
|
Iq => "iq",
|
2018-07-02 11:47:32 +00:00
|
|
|
|
|
|
|
|
|
/// `<message/>` can be faster, since it doesn’t require any feedback, but in
|
|
|
|
|
/// practice it will be throttled by the servers on the way.
|
2017-06-13 23:50:57 +00:00
|
|
|
|
Message => "message",
|
|
|
|
|
}, Default = Iq);
|
2017-04-19 20:52:14 +00:00
|
|
|
|
|
2018-07-02 11:47:32 +00:00
|
|
|
|
generate_element!(
|
|
|
|
|
/// Starts an In-Band Bytestream session with the given parameters.
|
|
|
|
|
Open, "open", IBB,
|
2018-05-28 14:42:35 +00:00
|
|
|
|
attributes: [
|
2018-07-02 11:47:32 +00:00
|
|
|
|
/// Maximum size in bytes for each chunk.
|
2019-02-24 19:26:40 +00:00
|
|
|
|
block_size: Required<u16> = "block-size",
|
2018-07-02 11:47:32 +00:00
|
|
|
|
|
|
|
|
|
/// The identifier to be used to create a stream.
|
2019-02-24 19:26:40 +00:00
|
|
|
|
sid: Required<StreamId> = "sid",
|
2018-07-02 11:47:32 +00:00
|
|
|
|
|
|
|
|
|
/// Which stanza type to use to exchange data.
|
2019-02-24 19:26:40 +00:00
|
|
|
|
stanza: Default<Stanza> = "stanza",
|
2017-10-31 17:58:11 +00:00
|
|
|
|
]);
|
2017-07-29 02:44:35 +00:00
|
|
|
|
|
2018-05-16 13:08:17 +00:00
|
|
|
|
impl IqSetPayload for Open {}
|
|
|
|
|
|
2018-08-02 17:07:07 +00:00
|
|
|
|
generate_element!(
|
2018-07-02 11:47:32 +00:00
|
|
|
|
/// Exchange a chunk of data in an open stream.
|
|
|
|
|
Data, "data", IBB,
|
2018-08-02 17:07:07 +00:00
|
|
|
|
attributes: [
|
2018-07-02 11:47:32 +00:00
|
|
|
|
/// Sequence number of this chunk, must wraparound after 65535.
|
2019-02-24 19:26:40 +00:00
|
|
|
|
seq: Required<u16> = "seq",
|
2018-07-02 11:47:32 +00:00
|
|
|
|
|
|
|
|
|
/// The identifier of the stream on which data is being exchanged.
|
2019-02-24 19:26:40 +00:00
|
|
|
|
sid: Required<StreamId> = "sid"
|
2017-11-16 20:17:11 +00:00
|
|
|
|
],
|
2018-08-02 17:07:07 +00:00
|
|
|
|
text: (
|
|
|
|
|
/// Vector of bytes to be exchanged.
|
2024-01-06 18:14:37 +00:00
|
|
|
|
data: Base64
|
2018-08-02 17:07:07 +00:00
|
|
|
|
)
|
2017-11-16 20:17:11 +00:00
|
|
|
|
);
|
|
|
|
|
|
2018-05-16 13:08:17 +00:00
|
|
|
|
impl IqSetPayload for Data {}
|
|
|
|
|
|
2018-07-02 11:47:32 +00:00
|
|
|
|
generate_element!(
|
|
|
|
|
/// Close an open stream.
|
|
|
|
|
Close, "close", IBB,
|
2018-05-28 14:42:35 +00:00
|
|
|
|
attributes: [
|
2018-07-02 11:47:32 +00:00
|
|
|
|
/// The identifier of the stream to be closed.
|
2019-02-24 19:26:40 +00:00
|
|
|
|
sid: Required<StreamId> = "sid",
|
2017-10-31 17:58:11 +00:00
|
|
|
|
]);
|
2017-04-27 18:05:51 +00:00
|
|
|
|
|
2018-05-16 13:08:17 +00:00
|
|
|
|
impl IqSetPayload for Close {}
|
|
|
|
|
|
2017-04-19 20:52:14 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2017-05-04 22:11:10 +00:00
|
|
|
|
use super::*;
|
2019-01-13 11:39:51 +00:00
|
|
|
|
use crate::util::error::Error;
|
2019-09-25 08:28:44 +00:00
|
|
|
|
use crate::Element;
|
2017-04-19 20:52:14 +00:00
|
|
|
|
|
2018-10-28 12:10:48 +00:00
|
|
|
|
#[cfg(target_pointer_width = "32")]
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_size() {
|
2018-12-18 14:44:07 +00:00
|
|
|
|
assert_size!(StreamId, 12);
|
2018-10-28 12:10:48 +00:00
|
|
|
|
assert_size!(Stanza, 1);
|
|
|
|
|
assert_size!(Open, 16);
|
|
|
|
|
assert_size!(Data, 28);
|
|
|
|
|
assert_size!(Close, 12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(target_pointer_width = "64")]
|
2018-10-26 12:26:16 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_size() {
|
2018-12-18 14:44:07 +00:00
|
|
|
|
assert_size!(StreamId, 24);
|
2018-10-26 12:26:16 +00:00
|
|
|
|
assert_size!(Stanza, 1);
|
|
|
|
|
assert_size!(Open, 32);
|
|
|
|
|
assert_size!(Data, 56);
|
|
|
|
|
assert_size!(Close, 24);
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-19 20:52:14 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_simple() {
|
2018-07-02 11:16:00 +00:00
|
|
|
|
let sid = StreamId(String::from("coucou"));
|
|
|
|
|
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element =
|
|
|
|
|
"<open xmlns='http://jabber.org/protocol/ibb' block-size='3' sid='coucou'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-07-29 02:44:35 +00:00
|
|
|
|
let open = Open::try_from(elem).unwrap();
|
|
|
|
|
assert_eq!(open.block_size, 3);
|
2018-07-02 11:16:00 +00:00
|
|
|
|
assert_eq!(open.sid, sid);
|
2017-07-29 02:44:35 +00:00
|
|
|
|
assert_eq!(open.stanza, Stanza::Iq);
|
2017-04-21 02:07:21 +00:00
|
|
|
|
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element =
|
|
|
|
|
"<data xmlns='http://jabber.org/protocol/ibb' seq='0' sid='coucou'>AAAA</data>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-07-29 02:44:35 +00:00
|
|
|
|
let data = Data::try_from(elem).unwrap();
|
|
|
|
|
assert_eq!(data.seq, 0);
|
2018-07-02 11:16:00 +00:00
|
|
|
|
assert_eq!(data.sid, sid);
|
2017-07-29 02:44:35 +00:00
|
|
|
|
assert_eq!(data.data, vec!(0, 0, 0));
|
2017-04-21 02:09:10 +00:00
|
|
|
|
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<close xmlns='http://jabber.org/protocol/ibb' sid='coucou'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-07-29 02:44:35 +00:00
|
|
|
|
let close = Close::try_from(elem).unwrap();
|
2018-07-02 11:16:00 +00:00
|
|
|
|
assert_eq!(close.sid, sid);
|
2017-04-19 20:52:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_invalid() {
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-07-29 02:44:35 +00:00
|
|
|
|
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-05-21 15:03:17 +00:00
|
|
|
|
assert_eq!(message, "Required attribute 'block-size' missing.");
|
2017-04-19 20:52:14 +00:00
|
|
|
|
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='-5'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-07-29 02:44:35 +00:00
|
|
|
|
let error = Open::try_from(elem).unwrap_err();
|
2017-04-19 20:52:14 +00:00
|
|
|
|
let message = match error {
|
2017-05-21 15:03:17 +00:00
|
|
|
|
Error::ParseIntError(error) => error,
|
2017-04-19 20:52:14 +00:00
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
2020-01-21 22:46:00 +00:00
|
|
|
|
assert_eq!(message.to_string(), "invalid digit found in string");
|
2017-04-19 20:52:14 +00:00
|
|
|
|
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='128'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-07-29 02:44:35 +00:00
|
|
|
|
let error = Open::try_from(elem).unwrap_err();
|
2017-04-19 20:52:14 +00:00
|
|
|
|
let message = match error {
|
2017-05-21 15:03:17 +00:00
|
|
|
|
Error::ParseError(error) => error,
|
2017-04-19 20:52:14 +00:00
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
2017-05-21 15:03:17 +00:00
|
|
|
|
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();
|
2017-07-29 02:44:35 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|