Implement Room::set_location
This commit is contained in:
parent
1e45198b9f
commit
456dde200c
8 changed files with 256 additions and 2 deletions
|
@ -5,7 +5,7 @@ use crate::{
|
|||
};
|
||||
use ::rpc::Peer;
|
||||
use anyhow::anyhow;
|
||||
use call::{room, Room};
|
||||
use call::{room, ParticipantLocation, Room};
|
||||
use client::{
|
||||
self, test::FakeHttpClient, Channel, ChannelDetails, ChannelList, Client, Connection,
|
||||
Credentials, EstablishConnectionError, User, UserStore, RECEIVE_TIMEOUT,
|
||||
|
@ -40,7 +40,7 @@ use serde_json::json;
|
|||
use settings::{Formatter, Settings};
|
||||
use sqlx::types::time::OffsetDateTime;
|
||||
use std::{
|
||||
cell::RefCell,
|
||||
cell::{Cell, RefCell},
|
||||
env, mem,
|
||||
ops::Deref,
|
||||
path::{Path, PathBuf},
|
||||
|
@ -637,6 +637,164 @@ async fn test_room_events(
|
|||
}
|
||||
}
|
||||
|
||||
#[gpui::test(iterations = 10)]
|
||||
async fn test_room_location(
|
||||
deterministic: Arc<Deterministic>,
|
||||
cx_a: &mut TestAppContext,
|
||||
cx_b: &mut TestAppContext,
|
||||
) {
|
||||
deterministic.forbid_parking();
|
||||
let mut server = TestServer::start(cx_a.foreground(), cx_a.background()).await;
|
||||
let client_a = server.create_client(cx_a, "user_a").await;
|
||||
let client_b = server.create_client(cx_b, "user_b").await;
|
||||
client_a.fs.insert_tree("/a", json!({})).await;
|
||||
client_b.fs.insert_tree("/b", json!({})).await;
|
||||
|
||||
let (project_a, _) = client_a.build_local_project("/a", cx_a).await;
|
||||
let (project_b, _) = client_b.build_local_project("/b", cx_b).await;
|
||||
|
||||
let (room_id, mut rooms) = server
|
||||
.create_rooms(&mut [(&client_a, cx_a), (&client_b, cx_b)])
|
||||
.await;
|
||||
|
||||
let room_a = rooms.remove(0);
|
||||
let room_a_notified = Rc::new(Cell::new(false));
|
||||
cx_a.update({
|
||||
let room_a_notified = room_a_notified.clone();
|
||||
|cx| {
|
||||
cx.observe(&room_a, move |_, _| room_a_notified.set(true))
|
||||
.detach()
|
||||
}
|
||||
});
|
||||
|
||||
let room_b = rooms.remove(0);
|
||||
let room_b_notified = Rc::new(Cell::new(false));
|
||||
cx_b.update({
|
||||
let room_b_notified = room_b_notified.clone();
|
||||
|cx| {
|
||||
cx.observe(&room_b, move |_, _| room_b_notified.set(true))
|
||||
.detach()
|
||||
}
|
||||
});
|
||||
|
||||
let project_a_id = project_a
|
||||
.update(cx_a, |project, cx| project.share(room_id, cx))
|
||||
.await
|
||||
.unwrap();
|
||||
deterministic.run_until_parked();
|
||||
assert!(room_a_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_a, cx_a),
|
||||
vec![("user_b".to_string(), ParticipantLocation::External)]
|
||||
);
|
||||
assert!(room_b_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_b, cx_b),
|
||||
vec![("user_a".to_string(), ParticipantLocation::External)]
|
||||
);
|
||||
|
||||
let project_b_id = project_b
|
||||
.update(cx_b, |project, cx| project.share(room_id, cx))
|
||||
.await
|
||||
.unwrap();
|
||||
deterministic.run_until_parked();
|
||||
assert!(room_a_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_a, cx_a),
|
||||
vec![("user_b".to_string(), ParticipantLocation::External)]
|
||||
);
|
||||
assert!(room_b_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_b, cx_b),
|
||||
vec![("user_a".to_string(), ParticipantLocation::External)]
|
||||
);
|
||||
|
||||
room_a
|
||||
.update(cx_a, |room, cx| room.set_location(Some(&project_a), cx))
|
||||
.await
|
||||
.unwrap();
|
||||
deterministic.run_until_parked();
|
||||
assert!(room_a_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_a, cx_a),
|
||||
vec![("user_b".to_string(), ParticipantLocation::External)]
|
||||
);
|
||||
assert!(room_b_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_b, cx_b),
|
||||
vec![(
|
||||
"user_a".to_string(),
|
||||
ParticipantLocation::Project {
|
||||
project_id: project_a_id
|
||||
}
|
||||
)]
|
||||
);
|
||||
|
||||
room_b
|
||||
.update(cx_b, |room, cx| room.set_location(Some(&project_b), cx))
|
||||
.await
|
||||
.unwrap();
|
||||
deterministic.run_until_parked();
|
||||
assert!(room_a_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_a, cx_a),
|
||||
vec![(
|
||||
"user_b".to_string(),
|
||||
ParticipantLocation::Project {
|
||||
project_id: project_b_id
|
||||
}
|
||||
)]
|
||||
);
|
||||
assert!(room_b_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_b, cx_b),
|
||||
vec![(
|
||||
"user_a".to_string(),
|
||||
ParticipantLocation::Project {
|
||||
project_id: project_a_id
|
||||
}
|
||||
)]
|
||||
);
|
||||
|
||||
room_b
|
||||
.update(cx_b, |room, cx| room.set_location(None, cx))
|
||||
.await
|
||||
.unwrap();
|
||||
deterministic.run_until_parked();
|
||||
assert!(room_a_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_a, cx_a),
|
||||
vec![("user_b".to_string(), ParticipantLocation::External)]
|
||||
);
|
||||
assert!(room_b_notified.take());
|
||||
assert_eq!(
|
||||
participant_locations(&room_b, cx_b),
|
||||
vec![(
|
||||
"user_a".to_string(),
|
||||
ParticipantLocation::Project {
|
||||
project_id: project_a_id
|
||||
}
|
||||
)]
|
||||
);
|
||||
|
||||
fn participant_locations(
|
||||
room: &ModelHandle<Room>,
|
||||
cx: &TestAppContext,
|
||||
) -> Vec<(String, ParticipantLocation)> {
|
||||
room.read_with(cx, |room, _| {
|
||||
room.remote_participants()
|
||||
.values()
|
||||
.map(|participant| {
|
||||
(
|
||||
participant.user.github_login.to_string(),
|
||||
participant.location,
|
||||
)
|
||||
})
|
||||
.collect()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
#[gpui::test(iterations = 10)]
|
||||
async fn test_propagate_saves_and_fs_changes(
|
||||
cx_a: &mut TestAppContext,
|
||||
|
|
|
@ -151,6 +151,7 @@ impl Server {
|
|||
.add_message_handler(Server::leave_room)
|
||||
.add_request_handler(Server::call)
|
||||
.add_message_handler(Server::decline_call)
|
||||
.add_request_handler(Server::update_participant_location)
|
||||
.add_request_handler(Server::share_project)
|
||||
.add_message_handler(Server::unshare_project)
|
||||
.add_request_handler(Server::join_project)
|
||||
|
@ -719,6 +720,23 @@ impl Server {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
async fn update_participant_location(
|
||||
self: Arc<Server>,
|
||||
request: TypedEnvelope<proto::UpdateParticipantLocation>,
|
||||
response: Response<proto::UpdateParticipantLocation>,
|
||||
) -> Result<()> {
|
||||
let room_id = request.payload.room_id;
|
||||
let location = request
|
||||
.payload
|
||||
.location
|
||||
.ok_or_else(|| anyhow!("invalid location"))?;
|
||||
let mut store = self.store().await;
|
||||
let room = store.update_participant_location(room_id, location, request.sender_id)?;
|
||||
self.room_updated(room);
|
||||
response.send(proto::Ack {})?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn room_updated(&self, room: &proto::Room) {
|
||||
for participant in &room.participants {
|
||||
self.peer
|
||||
|
|
|
@ -585,6 +585,37 @@ impl Store {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn update_participant_location(
|
||||
&mut self,
|
||||
room_id: RoomId,
|
||||
location: proto::ParticipantLocation,
|
||||
connection_id: ConnectionId,
|
||||
) -> Result<&proto::Room> {
|
||||
let room = self
|
||||
.rooms
|
||||
.get_mut(&room_id)
|
||||
.ok_or_else(|| anyhow!("no such room"))?;
|
||||
if let Some(proto::participant_location::Variant::Project(project)) =
|
||||
location.variant.as_ref()
|
||||
{
|
||||
anyhow::ensure!(
|
||||
room.participants
|
||||
.iter()
|
||||
.any(|participant| participant.project_ids.contains(&project.id)),
|
||||
"no such project"
|
||||
);
|
||||
}
|
||||
|
||||
let participant = room
|
||||
.participants
|
||||
.iter_mut()
|
||||
.find(|participant| participant.peer_id == connection_id.0)
|
||||
.ok_or_else(|| anyhow!("no such room"))?;
|
||||
participant.location = Some(location);
|
||||
|
||||
Ok(room)
|
||||
}
|
||||
|
||||
pub fn share_project(
|
||||
&mut self,
|
||||
room_id: RoomId,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue