-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add group consistency bug test
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7652,4 +7652,50 @@ mod tests { | |
|
||
Ok(()) | ||
} | ||
|
||
/// Test group consistency. | ||
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] | ||
async fn test_add_member_bug() -> Result<()> { | ||
let mut tcm = TestContextManager::new(); | ||
|
||
let alice = &tcm.alice().await; | ||
let bob = &tcm.bob().await; | ||
|
||
let alice_bob_contact_id = Contact::create(alice, "Bob", "[email protected]").await?; | ||
let alice_fiona_contact_id = Contact::create(alice, "Fiona", "[email protected]").await?; | ||
|
||
// Create a group. | ||
let alice_chat_id = | ||
create_group_chat(alice, ProtectionStatus::Unprotected, "Group chat").await?; | ||
add_contact_to_chat(alice, alice_chat_id, alice_bob_contact_id).await?; | ||
add_contact_to_chat(alice, alice_chat_id, alice_fiona_contact_id).await?; | ||
|
||
// Promote the group. | ||
let alice_sent_msg = alice | ||
.send_text(alice_chat_id, "Hi! I created a group.") | ||
.await; | ||
let bob_received_msg = bob.recv_msg(&alice_sent_msg).await; | ||
|
||
let bob_chat_id = bob_received_msg.get_chat_id(); | ||
bob_chat_id.accept(&bob).await?; | ||
|
||
// Alice removes Fiona from the chat. | ||
remove_contact_from_chat(alice, alice_chat_id, alice_fiona_contact_id).await?; | ||
let _alice_sent_add_msg = alice.pop_sent_msg().await; | ||
|
||
SystemTime::shift(Duration::from_secs(3600)); | ||
|
||
// Bob sends a message | ||
// to Alice and Fiona because he still has not received | ||
// a message about Fiona being removed. | ||
let bob_sent_msg = bob.send_text(bob_chat_id, "Hi Alice!").await; | ||
|
||
// Alice receives a message. | ||
// This should not add Fiona back. | ||
let _alice_received_msg = alice.recv_msg(&bob_sent_msg).await; | ||
|
||
assert_eq!(get_chat_contacts(alice, alice_chat_id).await?.len(), 2); | ||
|
||
Ok(()) | ||
} | ||
} |