mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-21 14:54:49 +01:00
test: dont use ws fixture coz leave wont work
This commit is contained in:
parent
ed0e05ffe2
commit
bf9ea18d67
1 changed files with 14 additions and 5 deletions
|
@ -115,14 +115,23 @@ async fn test_lookup_after_leave() {
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
async fn test_attach_after_leave() {
|
async fn test_attach_after_leave() {
|
||||||
super::fixture! {
|
super::fixture! {
|
||||||
WorkspaceFixture::one("alice", "test-attach-after-leave") => |client, workspace| {
|
ClientFixture::of("alice") => |client| {
|
||||||
let ws_name = workspace.id();
|
let ws_name = uuid::Uuid::new_v4().to_string();
|
||||||
drop(workspace);
|
client.create_workspace(&ws_name).await?;
|
||||||
client.leave_workspace(&ws_name);
|
|
||||||
|
let could_attach = client.attach_workspace(&ws_name).await.is_ok();
|
||||||
|
let clean_leave = client.leave_workspace(&ws_name);
|
||||||
// TODO this is very server specific! disconnect may be instant or caught with next
|
// TODO this is very server specific! disconnect may be instant or caught with next
|
||||||
// keepalive, let's arbitrarily say that after 20 seconds we should have been disconnected
|
// keepalive, let's arbitrarily say that after 20 seconds we should have been disconnected
|
||||||
tokio::time::sleep(std::time::Duration::from_secs(20)).await;
|
tokio::time::sleep(std::time::Duration::from_secs(20)).await;
|
||||||
client.attach_workspace(&ws_name).await?;
|
let could_attach_again = client.attach_workspace(&ws_name).await;
|
||||||
|
let could_delete = client.delete_workspace(&ws_name).await;
|
||||||
|
|
||||||
|
assert_or_err!(could_attach);
|
||||||
|
assert_or_err!(clean_leave);
|
||||||
|
could_attach_again?;
|
||||||
|
could_delete?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue