Allow simulate_guest and simulate_host to fail when host disconnects

This commit is contained in:
Antonio Scandurra 2022-04-08 11:29:00 +02:00
parent fae9048a2a
commit da976012a9

View file

@ -1118,6 +1118,7 @@ mod tests {
}, },
time::Duration, time::Duration,
}; };
use util::TryFutureExt;
use workspace::{Item, SplitDirection, Workspace, WorkspaceParams}; use workspace::{Item, SplitDirection, Workspace, WorkspaceParams};
#[cfg(test)] #[cfg(test)]
@ -5151,6 +5152,7 @@ mod tests {
}); });
host_language_registry.add(Arc::new(language)); host_language_registry.add(Arc::new(language));
let host_disconnected = Rc::new(AtomicBool::new(false));
user_ids.push(host.current_user_id(&host_cx)); user_ids.push(host.current_user_id(&host_cx));
clients.push(cx.foreground().spawn(host.simulate_host( clients.push(cx.foreground().spawn(host.simulate_host(
host_project, host_project,
@ -5158,7 +5160,7 @@ mod tests {
operations.clone(), operations.clone(),
max_operations, max_operations,
rng.clone(), rng.clone(),
&mut host_cx, host_cx,
))); )));
while operations.get() < max_operations { while operations.get() < max_operations {
@ -5200,24 +5202,28 @@ mod tests {
operations.clone(), operations.clone(),
max_operations, max_operations,
rng.clone(), rng.clone(),
host_disconnected.clone(),
guest_cx, guest_cx,
))); )));
log::info!("Guest {} added", guest_id); log::info!("Guest {} added", guest_id);
} else if rng.lock().gen_bool(0.05) { } else if rng.lock().gen_bool(0.05) {
host_disconnected.store(true, SeqCst);
server.forbid_connections();
server.disconnect_client(user_ids[0]); server.disconnect_client(user_ids[0]);
cx.foreground().advance_clock(RECEIVE_TIMEOUT); cx.foreground().advance_clock(RECEIVE_TIMEOUT);
let mut clients = futures::future::join_all(clients).await; let mut clients = futures::future::join_all(clients).await;
cx.foreground().run_until_parked(); cx.foreground().run_until_parked();
let store = server.store.read(); let (host, mut host_cx) = clients.remove(0);
let (host, host_cx) = clients.remove(0);
host.project host.project
.as_ref() .as_ref()
.unwrap() .unwrap()
.read_with(&host_cx, |project, _| assert!(!project.is_shared())); .read_with(&host_cx, |project, _| assert!(!project.is_shared()));
for (guest, guest_cx) in clients { for (guest, mut guest_cx) in clients {
assert!(store assert!(server
.store
.read()
.contacts_for_user(guest.current_user_id(&guest_cx)) .contacts_for_user(guest.current_user_id(&guest_cx))
.is_empty()); .is_empty());
guest guest
@ -5225,7 +5231,9 @@ mod tests {
.as_ref() .as_ref()
.unwrap() .unwrap()
.read_with(&guest_cx, |project, _| assert!(project.is_read_only())); .read_with(&guest_cx, |project, _| assert!(project.is_read_only()));
guest_cx.update(|_| drop(guest));
} }
host_cx.update(|_| drop(host));
return; return;
} }
@ -5619,7 +5627,16 @@ mod tests {
} }
async fn simulate_host( async fn simulate_host(
&mut self, mut self,
project: ModelHandle<Project>,
files: Arc<Mutex<Vec<PathBuf>>>,
operations: Rc<Cell<usize>>,
max_operations: usize,
rng: Arc<Mutex<StdRng>>,
mut cx: TestAppContext,
) -> (Self, TestAppContext) {
async fn simulate_host_internal(
client: &mut TestClient,
project: ModelHandle<Project>, project: ModelHandle<Project>,
files: Arc<Mutex<Vec<PathBuf>>>, files: Arc<Mutex<Vec<PathBuf>>>,
operations: Rc<Cell<usize>>, operations: Rc<Cell<usize>>,
@ -5654,11 +5671,15 @@ mod tests {
} }
} }
10..=80 if !files.lock().is_empty() => { 10..=80 if !files.lock().is_empty() => {
let buffer = if self.buffers.is_empty() || rng.lock().gen() { let buffer = if client.buffers.is_empty() || rng.lock().gen() {
let file = files.lock().choose(&mut *rng.lock()).unwrap().clone(); let file = files.lock().choose(&mut *rng.lock()).unwrap().clone();
let (worktree, path) = project let (worktree, path) = project
.update(cx, |project, cx| { .update(cx, |project, cx| {
project.find_or_create_local_worktree(file.clone(), true, cx) project.find_or_create_local_worktree(
file.clone(),
true,
cx,
)
}) })
.await?; .await?;
let project_path = let project_path =
@ -5673,10 +5694,11 @@ mod tests {
.update(cx, |project, cx| project.open_buffer(project_path, cx)) .update(cx, |project, cx| project.open_buffer(project_path, cx))
.await .await
.unwrap(); .unwrap();
self.buffers.insert(buffer.clone()); client.buffers.insert(buffer.clone());
buffer buffer
} else { } else {
self.buffers client
.buffers
.iter() .iter()
.choose(&mut *rng.lock()) .choose(&mut *rng.lock())
.unwrap() .unwrap()
@ -5689,7 +5711,7 @@ mod tests {
"Host: dropping buffer {:?}", "Host: dropping buffer {:?}",
buffer.read(cx).file().unwrap().full_path(cx) buffer.read(cx).file().unwrap().full_path(cx)
); );
self.buffers.remove(&buffer); client.buffers.remove(&buffer);
drop(buffer); drop(buffer);
}); });
} else { } else {
@ -5730,12 +5752,25 @@ mod tests {
cx.background().simulate_random_delay().await; cx.background().simulate_random_delay().await;
} }
self.project = Some(project);
log::info!("Host done");
Ok(()) Ok(())
} }
simulate_host_internal(
&mut self,
project.clone(),
files,
operations,
max_operations,
rng,
&mut cx,
)
.log_err()
.await;
log::info!("Host done");
self.project = Some(project);
(self, cx)
}
pub async fn simulate_guest( pub async fn simulate_guest(
mut self, mut self,
guest_id: usize, guest_id: usize,
@ -5743,11 +5778,22 @@ mod tests {
operations: Rc<Cell<usize>>, operations: Rc<Cell<usize>>,
max_operations: usize, max_operations: usize,
rng: Arc<Mutex<StdRng>>, rng: Arc<Mutex<StdRng>>,
host_disconnected: Rc<AtomicBool>,
mut cx: TestAppContext, mut cx: TestAppContext,
) -> (Self, TestAppContext) { ) -> (Self, TestAppContext) {
async fn simulate_guest_internal(
client: &mut TestClient,
guest_id: usize,
project: ModelHandle<Project>,
operations: Rc<Cell<usize>>,
max_operations: usize,
rng: Arc<Mutex<StdRng>>,
cx: &mut TestAppContext,
) -> anyhow::Result<()> {
while operations.get() < max_operations { while operations.get() < max_operations {
let buffer = if self.buffers.is_empty() || rng.lock().gen() { let buffer = if client.buffers.is_empty() || rng.lock().gen() {
let worktree = if let Some(worktree) = project.read_with(&cx, |project, cx| { let worktree = if let Some(worktree) =
project.read_with(cx, |project, cx| {
project project
.worktrees(&cx) .worktrees(&cx)
.filter(|worktree| { .filter(|worktree| {
@ -5765,7 +5811,7 @@ mod tests {
operations.set(operations.get() + 1); operations.set(operations.get() + 1);
let (worktree_root_name, project_path) = let (worktree_root_name, project_path) =
worktree.read_with(&cx, |worktree, _| { worktree.read_with(cx, |worktree, _| {
let entry = worktree let entry = worktree
.entries(false) .entries(false)
.filter(|e| e.is_file()) .filter(|e| e.is_file())
@ -5784,25 +5830,25 @@ mod tests {
worktree_root_name, worktree_root_name,
); );
let buffer = project let buffer = project
.update(&mut cx, |project, cx| { .update(cx, |project, cx| {
project.open_buffer(project_path.clone(), cx) project.open_buffer(project_path.clone(), cx)
}) })
.await .await?;
.unwrap();
log::info!( log::info!(
"Guest {}: opened path {:?} in worktree {} ({}) with buffer id {}", "Guest {}: opened path {:?} in worktree {} ({}) with buffer id {}",
guest_id, guest_id,
project_path.1, project_path.1,
project_path.0, project_path.0,
worktree_root_name, worktree_root_name,
buffer.read_with(&cx, |buffer, _| buffer.remote_id()) buffer.read_with(cx, |buffer, _| buffer.remote_id())
); );
self.buffers.insert(buffer.clone()); client.buffers.insert(buffer.clone());
buffer buffer
} else { } else {
operations.set(operations.get() + 1); operations.set(operations.get() + 1);
self.buffers client
.buffers
.iter() .iter()
.choose(&mut *rng.lock()) .choose(&mut *rng.lock())
.unwrap() .unwrap()
@ -5818,12 +5864,12 @@ mod tests {
guest_id, guest_id,
buffer.read(cx).file().unwrap().full_path(cx) buffer.read(cx).file().unwrap().full_path(cx)
); );
self.buffers.remove(&buffer); client.buffers.remove(&buffer);
drop(buffer); drop(buffer);
}); });
} }
10..=19 => { 10..=19 => {
let completions = project.update(&mut cx, |project, cx| { let completions = project.update(cx, |project, cx| {
log::info!( log::info!(
"Guest {}: requesting completions for buffer {} ({:?})", "Guest {}: requesting completions for buffer {} ({:?})",
guest_id, guest_id,
@ -5834,17 +5880,19 @@ mod tests {
project.completions(&buffer, offset, cx) project.completions(&buffer, offset, cx)
}); });
let completions = cx.background().spawn(async move { let completions = cx.background().spawn(async move {
completions.await.expect("completions request failed"); completions
.await
.map_err(|err| anyhow!("completions request failed: {:?}", err))
}); });
if rng.lock().gen_bool(0.3) { if rng.lock().gen_bool(0.3) {
log::info!("Guest {}: detaching completions request", guest_id); log::info!("Guest {}: detaching completions request", guest_id);
completions.detach(); cx.update(|cx| completions.detach_and_log_err(cx));
} else { } else {
completions.await; completions.await?;
} }
} }
20..=29 => { 20..=29 => {
let code_actions = project.update(&mut cx, |project, cx| { let code_actions = project.update(cx, |project, cx| {
log::info!( log::info!(
"Guest {}: requesting code actions for buffer {} ({:?})", "Guest {}: requesting code actions for buffer {} ({:?})",
guest_id, guest_id,
@ -5855,17 +5903,19 @@ mod tests {
project.code_actions(&buffer, range, cx) project.code_actions(&buffer, range, cx)
}); });
let code_actions = cx.background().spawn(async move { let code_actions = cx.background().spawn(async move {
code_actions.await.expect("code actions request failed"); code_actions.await.map_err(|err| {
anyhow!("code actions request failed: {:?}", err)
})
}); });
if rng.lock().gen_bool(0.3) { if rng.lock().gen_bool(0.3) {
log::info!("Guest {}: detaching code actions request", guest_id); log::info!("Guest {}: detaching code actions request", guest_id);
code_actions.detach(); cx.update(|cx| code_actions.detach_and_log_err(cx));
} else { } else {
code_actions.await; code_actions.await?;
} }
} }
30..=39 if buffer.read_with(&cx, |buffer, _| buffer.is_dirty()) => { 30..=39 if buffer.read_with(cx, |buffer, _| buffer.is_dirty()) => {
let (requested_version, save) = buffer.update(&mut cx, |buffer, cx| { let (requested_version, save) = buffer.update(cx, |buffer, cx| {
log::info!( log::info!(
"Guest {}: saving buffer {} ({:?})", "Guest {}: saving buffer {} ({:?})",
guest_id, guest_id,
@ -5875,18 +5925,21 @@ mod tests {
(buffer.version(), buffer.save(cx)) (buffer.version(), buffer.save(cx))
}); });
let save = cx.background().spawn(async move { let save = cx.background().spawn(async move {
let (saved_version, _) = save.await.expect("save request failed"); let (saved_version, _) = save
.await
.map_err(|err| anyhow!("save request failed: {:?}", err))?;
assert!(saved_version.observed_all(&requested_version)); assert!(saved_version.observed_all(&requested_version));
Ok::<_, anyhow::Error>(())
}); });
if rng.lock().gen_bool(0.3) { if rng.lock().gen_bool(0.3) {
log::info!("Guest {}: detaching save request", guest_id); log::info!("Guest {}: detaching save request", guest_id);
save.detach(); cx.update(|cx| save.detach_and_log_err(cx));
} else { } else {
save.await; save.await?;
} }
} }
40..=44 => { 40..=44 => {
let prepare_rename = project.update(&mut cx, |project, cx| { let prepare_rename = project.update(cx, |project, cx| {
log::info!( log::info!(
"Guest {}: preparing rename for buffer {} ({:?})", "Guest {}: preparing rename for buffer {} ({:?})",
guest_id, guest_id,
@ -5897,17 +5950,19 @@ mod tests {
project.prepare_rename(buffer, offset, cx) project.prepare_rename(buffer, offset, cx)
}); });
let prepare_rename = cx.background().spawn(async move { let prepare_rename = cx.background().spawn(async move {
prepare_rename.await.expect("prepare rename request failed"); prepare_rename.await.map_err(|err| {
anyhow!("prepare rename request failed: {:?}", err)
})
}); });
if rng.lock().gen_bool(0.3) { if rng.lock().gen_bool(0.3) {
log::info!("Guest {}: detaching prepare rename request", guest_id); log::info!("Guest {}: detaching prepare rename request", guest_id);
prepare_rename.detach(); cx.update(|cx| prepare_rename.detach_and_log_err(cx));
} else { } else {
prepare_rename.await; prepare_rename.await?;
} }
} }
45..=49 => { 45..=49 => {
let definitions = project.update(&mut cx, |project, cx| { let definitions = project.update(cx, |project, cx| {
log::info!( log::info!(
"Guest {}: requesting definitions for buffer {} ({:?})", "Guest {}: requesting definitions for buffer {} ({:?})",
guest_id, guest_id,
@ -5918,18 +5973,21 @@ mod tests {
project.definition(&buffer, offset, cx) project.definition(&buffer, offset, cx)
}); });
let definitions = cx.background().spawn(async move { let definitions = cx.background().spawn(async move {
definitions.await.expect("definitions request failed") definitions
.await
.map_err(|err| anyhow!("definitions request failed: {:?}", err))
}); });
if rng.lock().gen_bool(0.3) { if rng.lock().gen_bool(0.3) {
log::info!("Guest {}: detaching definitions request", guest_id); log::info!("Guest {}: detaching definitions request", guest_id);
definitions.detach(); cx.update(|cx| definitions.detach_and_log_err(cx));
} else { } else {
self.buffers client
.extend(definitions.await.into_iter().map(|loc| loc.buffer)); .buffers
.extend(definitions.await?.into_iter().map(|loc| loc.buffer));
} }
} }
50..=54 => { 50..=54 => {
let highlights = project.update(&mut cx, |project, cx| { let highlights = project.update(cx, |project, cx| {
log::info!( log::info!(
"Guest {}: requesting highlights for buffer {} ({:?})", "Guest {}: requesting highlights for buffer {} ({:?})",
guest_id, guest_id,
@ -5940,33 +5998,37 @@ mod tests {
project.document_highlights(&buffer, offset, cx) project.document_highlights(&buffer, offset, cx)
}); });
let highlights = cx.background().spawn(async move { let highlights = cx.background().spawn(async move {
highlights.await.expect("highlights request failed"); highlights
.await
.map_err(|err| anyhow!("highlights request failed: {:?}", err))
}); });
if rng.lock().gen_bool(0.3) { if rng.lock().gen_bool(0.3) {
log::info!("Guest {}: detaching highlights request", guest_id); log::info!("Guest {}: detaching highlights request", guest_id);
highlights.detach(); cx.update(|cx| highlights.detach_and_log_err(cx));
} else { } else {
highlights.await; highlights.await?;
} }
} }
55..=59 => { 55..=59 => {
let search = project.update(&mut cx, |project, cx| { let search = project.update(cx, |project, cx| {
let query = rng.lock().gen_range('a'..='z'); let query = rng.lock().gen_range('a'..='z');
log::info!("Guest {}: project-wide search {:?}", guest_id, query); log::info!("Guest {}: project-wide search {:?}", guest_id, query);
project.search(SearchQuery::text(query, false, false), cx) project.search(SearchQuery::text(query, false, false), cx)
}); });
let search = cx let search = cx.background().spawn(async move {
.background() search
.spawn(async move { search.await.expect("search request failed") }); .await
.map_err(|err| anyhow!("search request failed: {:?}", err))
});
if rng.lock().gen_bool(0.3) { if rng.lock().gen_bool(0.3) {
log::info!("Guest {}: detaching search request", guest_id); log::info!("Guest {}: detaching search request", guest_id);
search.detach(); cx.update(|cx| search.detach_and_log_err(cx));
} else { } else {
self.buffers.extend(search.await.into_keys()); client.buffers.extend(search.await?.into_keys());
} }
} }
_ => { _ => {
buffer.update(&mut cx, |buffer, cx| { buffer.update(cx, |buffer, cx| {
log::info!( log::info!(
"Guest {}: updating buffer {} ({:?})", "Guest {}: updating buffer {} ({:?})",
guest_id, guest_id,
@ -5979,8 +6041,29 @@ mod tests {
} }
cx.background().simulate_random_delay().await; cx.background().simulate_random_delay().await;
} }
Ok(())
}
log::info!("Guest {} done", guest_id); match simulate_guest_internal(
&mut self,
guest_id,
project.clone(),
operations,
max_operations,
rng,
&mut cx,
)
.await
{
Ok(()) => log::info!("guest {} done", guest_id),
Err(err) => {
if host_disconnected.load(SeqCst) {
log::error!("guest {} simulation error - {:?}", guest_id, err);
} else {
panic!("guest {} simulation error - {:?}", guest_id, err);
}
}
}
self.project = Some(project); self.project = Some(project);
(self, cx) (self, cx)