
Similar to #20826 but keeps the Swift implementation. There were quite a few changes in the `call` crate, and so that code now has two variants. Closes #13714 Release Notes: - Added preliminary Linux support for voice chat and viewing screenshares. --------- Co-authored-by: Kirill Bulatov <mail4score@gmail.com> Co-authored-by: Kirill Bulatov <kirill@zed.dev> Co-authored-by: Mikayla <mikayla@zed.dev>
70 lines
1.9 KiB
Rust
70 lines
1.9 KiB
Rust
// todo(windows): Actually run the tests
|
|
#![cfg(not(target_os = "windows"))]
|
|
|
|
use std::sync::Arc;
|
|
|
|
use call::Room;
|
|
use client::ChannelId;
|
|
use gpui::{Model, TestAppContext};
|
|
|
|
mod channel_buffer_tests;
|
|
mod channel_guest_tests;
|
|
mod channel_message_tests;
|
|
mod channel_tests;
|
|
mod editor_tests;
|
|
mod following_tests;
|
|
mod integration_tests;
|
|
mod notification_tests;
|
|
mod random_channel_buffer_tests;
|
|
mod random_project_collaboration_tests;
|
|
mod randomized_test_helpers;
|
|
mod remote_editing_collaboration_tests;
|
|
mod test_server;
|
|
|
|
use language::{tree_sitter_rust, Language, LanguageConfig, LanguageMatcher};
|
|
pub use randomized_test_helpers::{
|
|
run_randomized_test, save_randomized_test_plan, RandomizedTest, TestError, UserTestPlan,
|
|
};
|
|
pub use test_server::{TestClient, TestServer};
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
struct RoomParticipants {
|
|
remote: Vec<String>,
|
|
pending: Vec<String>,
|
|
}
|
|
|
|
fn room_participants(room: &Model<Room>, cx: &mut TestAppContext) -> RoomParticipants {
|
|
room.read_with(cx, |room, _| {
|
|
let mut remote = room
|
|
.remote_participants()
|
|
.iter()
|
|
.map(|(_, participant)| participant.user.github_login.clone())
|
|
.collect::<Vec<_>>();
|
|
let mut pending = room
|
|
.pending_participants()
|
|
.iter()
|
|
.map(|user| user.github_login.clone())
|
|
.collect::<Vec<_>>();
|
|
remote.sort();
|
|
pending.sort();
|
|
RoomParticipants { remote, pending }
|
|
})
|
|
}
|
|
|
|
fn channel_id(room: &Model<Room>, cx: &mut TestAppContext) -> Option<ChannelId> {
|
|
cx.read(|cx| room.read(cx).channel_id())
|
|
}
|
|
|
|
fn rust_lang() -> Arc<Language> {
|
|
Arc::new(Language::new(
|
|
LanguageConfig {
|
|
name: "Rust".into(),
|
|
matcher: LanguageMatcher {
|
|
path_suffixes: vec!["rs".to_string()],
|
|
..Default::default()
|
|
},
|
|
..Default::default()
|
|
},
|
|
Some(tree_sitter_rust::LANGUAGE.into()),
|
|
))
|
|
}
|