Add TestComponent.expect_with; test for Delay in MUC subject
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
8fececd97f
commit
7797af95b9
4 changed files with 61 additions and 20 deletions
|
@ -7,6 +7,7 @@ description = "MUC implementation allowing participants to play the Hanabi game.
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "^0.1"
|
async-trait = "^0.1"
|
||||||
|
chrono = "0.4.22"
|
||||||
env_logger = "^0.9"
|
env_logger = "^0.9"
|
||||||
futures = "^0.3"
|
futures = "^0.3"
|
||||||
lazy_static = "^1.4"
|
lazy_static = "^1.4"
|
||||||
|
|
|
@ -75,11 +75,15 @@ impl Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
enum Expect {
|
||||||
|
Element(Element),
|
||||||
|
Callback(Box<dyn FnOnce(Element) + Send + 'static>),
|
||||||
|
}
|
||||||
|
|
||||||
pub struct TestComponent {
|
pub struct TestComponent {
|
||||||
in_buffer: Vec<Element>,
|
in_buffer: Vec<Element>,
|
||||||
out_buffer: Vec<Element>,
|
out_buffer: Vec<Element>,
|
||||||
expect_buffer: Vec<Element>,
|
expect_buffer: Vec<Expect>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TestComponent {
|
impl TestComponent {
|
||||||
|
@ -93,7 +97,12 @@ impl TestComponent {
|
||||||
|
|
||||||
/// Adds elements to be expected, in the order they're being added
|
/// Adds elements to be expected, in the order they're being added
|
||||||
pub fn expect<E: Into<Element>>(&mut self, el: E) {
|
pub fn expect<E: Into<Element>>(&mut self, el: E) {
|
||||||
self.expect_buffer.push(el.into())
|
self.expect_buffer.push(Expect::Element(el.into()))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn expect_with<F: FnOnce(Element) + Send + 'static>(&mut self, callback: F) {
|
||||||
|
self.expect_buffer
|
||||||
|
.push(Expect::Callback(Box::new(callback)))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Asserts expected output and actual output are the same
|
/// Asserts expected output and actual output are the same
|
||||||
|
@ -104,11 +113,15 @@ impl TestComponent {
|
||||||
|
|
||||||
match (out, expected) {
|
match (out, expected) {
|
||||||
(None, None) => break,
|
(None, None) => break,
|
||||||
(Some(out), Some(expected)) => {
|
(Some(out), Some(expected)) => match expected {
|
||||||
assert_eq!(String::from(&expected), String::from(&out))
|
Expect::Element(el) => assert_eq!(String::from(&el), String::from(&out)),
|
||||||
}
|
Expect::Callback(cb) => cb(out),
|
||||||
(Some(out), None) => assert_eq!(format!(""), String::from(&out)),
|
},
|
||||||
(None, Some(expected)) => assert_eq!(String::from(&expected), format!("")),
|
(Some(out), None) => panic!("Missing matching expected element: {:?}", out),
|
||||||
|
(None, Some(expected)) => match expected {
|
||||||
|
Expect::Element(el) => panic!("Missing matching sent element: {:?}", el),
|
||||||
|
Expect::Callback(_) => panic!("Missing matching sent element"),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
42
src/tests.rs
42
src/tests.rs
|
@ -22,6 +22,7 @@ use std::str::FromStr;
|
||||||
|
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
use xmpp_parsers::{
|
use xmpp_parsers::{
|
||||||
|
delay::Delay,
|
||||||
iq::{Iq, IqType},
|
iq::{Iq, IqType},
|
||||||
message::{Message, MessageType, Subject as MessageSubject},
|
message::{Message, MessageType, Subject as MessageSubject},
|
||||||
muc::{
|
muc::{
|
||||||
|
@ -105,18 +106,35 @@ async fn test_0045_join_presence_empty_room() {
|
||||||
.into()]),
|
.into()]),
|
||||||
);
|
);
|
||||||
|
|
||||||
let mut subjects = BTreeMap::new();
|
component.expect_with(move |el| {
|
||||||
subjects.insert(String::from("en"), MessageSubject::from_str("").unwrap());
|
let roomjid = COMPONENT_JID.clone().with_node("room");
|
||||||
component.expect(Message {
|
|
||||||
// Set by the first participant
|
let mut subjects = BTreeMap::new();
|
||||||
from: Some(Jid::Full(to)),
|
subjects.insert(String::from("en"), MessageSubject::from_str("").unwrap());
|
||||||
to: Some(Jid::Full(from)),
|
let expected: Element = Message {
|
||||||
id: None,
|
// Set by the first participant
|
||||||
type_: MessageType::Groupchat,
|
from: Some(Jid::Full(to)),
|
||||||
bodies: BTreeMap::new(),
|
to: Some(Jid::Full(from)),
|
||||||
subjects,
|
id: None,
|
||||||
thread: None,
|
type_: MessageType::Groupchat,
|
||||||
payloads: Vec::new(),
|
bodies: BTreeMap::new(),
|
||||||
|
subjects,
|
||||||
|
thread: None,
|
||||||
|
payloads: Vec::new(),
|
||||||
|
}
|
||||||
|
.into();
|
||||||
|
|
||||||
|
let mut out = Message::try_from(el).unwrap();
|
||||||
|
assert_eq!(out.payloads.len(), 1);
|
||||||
|
let delay = Delay::try_from(out.payloads[0].clone()).unwrap();
|
||||||
|
// Ensure delay is issued from the room JID. Ignore stamp as it'll always vary.
|
||||||
|
assert_eq!(delay.from, Some(Jid::Bare(roomjid)));
|
||||||
|
|
||||||
|
out.payloads = vec![];
|
||||||
|
assert_eq!(
|
||||||
|
String::from(&expected),
|
||||||
|
String::from(&Into::<Element>::into(out))
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
handle_stanza(&mut component, &mut rooms).await.unwrap();
|
handle_stanza(&mut component, &mut rooms).await.unwrap();
|
||||||
|
|
|
@ -19,8 +19,11 @@ use crate::error::Error;
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::iter::IntoIterator;
|
use std::iter::IntoIterator;
|
||||||
|
|
||||||
|
use chrono;
|
||||||
use log::debug;
|
use log::debug;
|
||||||
use xmpp_parsers::{
|
use xmpp_parsers::{
|
||||||
|
date::DateTime,
|
||||||
|
delay::Delay,
|
||||||
message::{Message, MessageType, Subject},
|
message::{Message, MessageType, Subject},
|
||||||
muc::{
|
muc::{
|
||||||
user::{Affiliation, Item as MucItem, Role, Status as MucStatus},
|
user::{Affiliation, Item as MucItem, Role, Status as MucStatus},
|
||||||
|
@ -101,6 +104,12 @@ impl Room {
|
||||||
.subjects
|
.subjects
|
||||||
.insert(String::from("en"), Subject(String::from("")));
|
.insert(String::from("en"), Subject(String::from("")));
|
||||||
subject.type_ = MessageType::Groupchat;
|
subject.type_ = MessageType::Groupchat;
|
||||||
|
subject.payloads = vec![Delay {
|
||||||
|
from: Some(Jid::Bare(self.jid.clone())),
|
||||||
|
stamp: DateTime::from_utc(chrono::Utc::now()),
|
||||||
|
data: None,
|
||||||
|
}
|
||||||
|
.into()];
|
||||||
component.send_stanza(subject).await?;
|
component.send_stanza(subject).await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue