Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx committed Jul 19, 2024
1 parent 997d922 commit 40b2733
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions bindings_ffi/src/mls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2010,7 +2010,8 @@ mod tests {
let message_callbacks = RustStreamCallback::default();
let stream_messages = bo
.conversations()
.stream_all_messages(Box::new(message_callbacks.clone()));
.stream_all_messages(Box::new(message_callbacks.clone()))
.await;
stream_messages.wait_for_ready().await;

// Create group and send first message
Expand Down Expand Up @@ -2067,7 +2068,8 @@ mod tests {
let message_callbacks = RustStreamCallback::default();
let stream_messages = bo
.conversations()
.stream_all_messages(Box::new(message_callbacks.clone()));
.stream_all_messages(Box::new(message_callbacks.clone()))
.await;
stream_messages.wait_for_ready().await;

let first_msg_check = 2;
Expand Down Expand Up @@ -2140,7 +2142,8 @@ mod tests {

let stream = bola
.conversations()
.stream(Box::new(stream_callback.clone()));
.stream(Box::new(stream_callback.clone()))
.await;

amal.conversations()
.create_group(
Expand Down Expand Up @@ -2188,7 +2191,8 @@ mod tests {

let stream = caro
.conversations()
.stream_all_messages(Box::new(stream_callback.clone()));
.stream_all_messages(Box::new(stream_callback.clone()))
.await;
stream.wait_for_ready().await;

alix_group.send("first".as_bytes().to_vec()).await.unwrap();
Expand Down Expand Up @@ -2234,7 +2238,7 @@ mod tests {
let bola_group = bola.group(amal_group.group_id.clone()).unwrap();

let stream_callback = RustStreamCallback::default();
let stream_closer = bola_group.stream(Box::new(stream_callback.clone()));
let stream_closer = bola_group.stream(Box::new(stream_callback.clone())).await;

stream_closer.wait_for_ready().await;

Expand Down Expand Up @@ -2273,7 +2277,8 @@ mod tests {
let stream_callback = RustStreamCallback::default();
let stream_closer = bola
.conversations()
.stream_all_messages(Box::new(stream_callback.clone()));
.stream_all_messages(Box::new(stream_callback.clone()))
.await;
stream_closer.wait_for_ready().await;

amal_group.send(b"hello1".to_vec()).await.unwrap();
Expand Down Expand Up @@ -2368,11 +2373,15 @@ mod tests {
// Stream all group messages
let message_callback = RustStreamCallback::default();
let group_callback = RustStreamCallback::default();
let stream_groups = bo.conversations().stream(Box::new(group_callback.clone()));
let stream_groups = bo
.conversations()
.stream(Box::new(group_callback.clone()))
.await;

let stream_messages = bo
.conversations()
.stream_all_messages(Box::new(message_callback.clone()));
.stream_all_messages(Box::new(message_callback.clone()))
.await;
stream_messages.wait_for_ready().await;

// Create group and send first message
Expand Down

0 comments on commit 40b2733

Please sign in to comment.