rust/crates/ra_lsp_server/tests/heavy_tests/support.rs

255 lines
7.9 KiB
Rust
Raw Normal View History

2018-09-01 12:21:11 -05:00
use std::{
2018-09-02 04:34:06 -05:00
cell::{Cell, RefCell},
fs,
path::{Path, PathBuf},
2018-09-02 06:46:15 -05:00
sync::Once,
time::Duration,
2018-09-01 12:21:11 -05:00
};
2018-12-06 12:03:39 -06:00
use crossbeam_channel::{after, select, Receiver};
2019-08-30 12:18:57 -05:00
use lsp_server::{Connection, Message, Notification, Request};
2019-01-14 04:55:56 -06:00
use lsp_types::{
2019-08-30 12:18:57 -05:00
notification::{DidOpenTextDocument, Exit},
request::Shutdown,
ClientCapabilities, DidOpenTextDocumentParams, GotoCapability, TextDocumentClientCapabilities,
TextDocumentIdentifier, TextDocumentItem, Url,
2018-09-01 12:21:11 -05:00
};
use serde::Serialize;
use serde_json::{to_string_pretty, Value};
2018-12-30 14:33:04 -06:00
use tempfile::TempDir;
use test_utils::{find_mismatch, parse_fixture};
2018-09-01 12:21:11 -05:00
2019-08-06 07:41:22 -05:00
use ra_lsp_server::{main_loop, req, ServerConfig};
2018-09-01 12:21:11 -05:00
pub struct Project<'a> {
fixture: &'a str,
2019-08-19 07:41:18 -05:00
with_sysroot: bool,
tmp_dir: Option<TempDir>,
roots: Vec<PathBuf>,
}
impl<'a> Project<'a> {
pub fn with_fixture(fixture: &str) -> Project {
2019-08-19 07:41:18 -05:00
Project { fixture, tmp_dir: None, roots: vec![], with_sysroot: false }
}
pub fn tmp_dir(mut self, tmp_dir: TempDir) -> Project<'a> {
self.tmp_dir = Some(tmp_dir);
self
}
pub fn root(mut self, path: &str) -> Project<'a> {
self.roots.push(path.into());
self
}
2019-08-19 07:41:18 -05:00
pub fn with_sysroot(mut self, sysroot: bool) -> Project<'a> {
self.with_sysroot = sysroot;
self
}
pub fn server(self) -> Server {
let tmp_dir = self.tmp_dir.unwrap_or_else(|| TempDir::new().unwrap());
static INIT: Once = Once::new();
INIT.call_once(|| {
2019-11-29 18:35:03 -06:00
let _ = env_logger::builder().is_test(true).try_init().unwrap();
2019-05-27 06:20:11 -05:00
ra_prof::set_filter(if crate::PROFILE.is_empty() {
ra_prof::Filter::disabled()
} else {
ra_prof::Filter::from_spec(&crate::PROFILE)
});
});
2018-09-01 12:21:11 -05:00
let mut paths = vec![];
2018-10-31 13:37:32 -05:00
for entry in parse_fixture(self.fixture) {
let path = tmp_dir.path().join(entry.meta);
fs::create_dir_all(path.parent().unwrap()).unwrap();
fs::write(path.as_path(), entry.text.as_bytes()).unwrap();
paths.push((path, entry.text));
}
let roots = self.roots.into_iter().map(|root| tmp_dir.path().join(root)).collect();
2019-08-19 07:41:18 -05:00
Server::new(tmp_dir, self.with_sysroot, roots, paths)
2018-09-01 12:21:11 -05:00
}
}
pub fn project(fixture: &str) -> Server {
Project::with_fixture(fixture).server()
2018-09-01 12:21:11 -05:00
}
pub struct Server {
req_id: Cell<u64>,
messages: RefCell<Vec<Message>>,
2018-09-01 12:21:11 -05:00
dir: TempDir,
2019-08-30 12:18:57 -05:00
_thread: jod_thread::JoinHandle<()>,
client: Connection,
2018-09-01 12:21:11 -05:00
}
impl Server {
2019-08-19 07:41:18 -05:00
fn new(
dir: TempDir,
with_sysroot: bool,
roots: Vec<PathBuf>,
files: Vec<(PathBuf, String)>,
) -> Server {
2018-09-01 12:21:11 -05:00
let path = dir.path().to_path_buf();
let roots = if roots.is_empty() { vec![path] } else { roots };
2019-08-30 12:18:57 -05:00
let (connection, client) = Connection::memory();
2019-08-30 12:18:57 -05:00
let _thread = jod_thread::Builder::new()
.name("test server".to_string())
.spawn(move || {
main_loop(
roots,
ClientCapabilities {
workspace: None,
text_document: Some(TextDocumentClientCapabilities {
definition: Some(GotoCapability {
dynamic_registration: None,
link_support: Some(true),
}),
..Default::default()
}),
window: None,
experimental: None,
},
2019-08-19 07:41:18 -05:00
ServerConfig { with_sysroot, ..ServerConfig::default() },
connection,
)
.unwrap()
2019-08-30 12:18:57 -05:00
})
.expect("failed to spawn a thread");
let res =
Server { req_id: Cell::new(1), dir, messages: Default::default(), client, _thread };
2018-09-08 04:08:46 -05:00
2018-09-01 12:21:11 -05:00
for (path, text) in files {
2019-08-30 12:18:57 -05:00
res.notification::<DidOpenTextDocument>(DidOpenTextDocumentParams {
text_document: TextDocumentItem {
uri: Url::from_file_path(path).unwrap(),
language_id: "rust".to_string(),
version: 0,
text,
},
2019-08-30 12:18:57 -05:00
})
2018-09-01 12:21:11 -05:00
}
res
}
pub fn doc_id(&self, rel_path: &str) -> TextDocumentIdentifier {
let path = self.dir.path().join(rel_path);
2019-02-08 05:49:43 -06:00
TextDocumentIdentifier { uri: Url::from_file_path(path).unwrap() }
2018-09-01 12:21:11 -05:00
}
2019-05-27 06:20:11 -05:00
pub fn notification<N>(&self, params: N::Params)
where
N: lsp_types::notification::Notification,
2019-05-27 06:20:11 -05:00
N::Params: Serialize,
{
let r = Notification::new(N::METHOD.to_string(), params);
2019-05-27 06:20:11 -05:00
self.send_notification(r)
}
pub fn request<R>(&self, params: R::Params, expected_resp: Value)
2018-09-01 12:21:11 -05:00
where
R: lsp_types::request::Request,
2018-09-01 12:21:11 -05:00
R::Params: Serialize,
{
2019-01-10 15:37:10 -06:00
let actual = self.send_request::<R>(params);
2019-06-03 09:01:10 -05:00
if let Some((expected_part, actual_part)) = find_mismatch(&expected_resp, &actual) {
panic!(
"JSON mismatch\nExpected:\n{}\nWas:\n{}\nExpected part:\n{}\nActual part:\n{}\n",
to_string_pretty(&expected_resp).unwrap(),
to_string_pretty(&actual).unwrap(),
to_string_pretty(expected_part).unwrap(),
to_string_pretty(actual_part).unwrap(),
2019-06-03 09:01:10 -05:00
);
}
2018-09-01 12:21:11 -05:00
}
2019-01-10 15:37:10 -06:00
pub fn send_request<R>(&self, params: R::Params) -> Value
2018-09-01 12:21:11 -05:00
where
R: lsp_types::request::Request,
2018-09-01 12:21:11 -05:00
R::Params: Serialize,
{
2019-01-10 15:37:10 -06:00
let id = self.req_id.get();
self.req_id.set(id + 1);
let r = Request::new(id.into(), R::METHOD.to_string(), params);
2018-09-02 08:36:03 -05:00
self.send_request_(r)
}
fn send_request_(&self, r: Request) -> Value {
let id = r.id.clone();
2019-08-30 12:18:57 -05:00
self.client.sender.send(r.into()).unwrap();
2018-09-02 04:34:06 -05:00
while let Some(msg) = self.recv() {
2018-09-01 12:21:11 -05:00
match msg {
Message::Request(req) => panic!("unexpected request: {:?}", req),
Message::Notification(_) => (),
Message::Response(res) => {
2018-09-01 12:21:11 -05:00
assert_eq!(res.id, id);
if let Some(err) = res.error {
panic!("error response: {:#?}", err);
}
return res.result.unwrap();
}
}
}
panic!("no response");
}
pub fn wait_until_workspace_is_loaded(&self) {
self.wait_for_message_cond(1, &|msg: &Message| match msg {
Message::Notification(n) if n.method == "window/showMessage" => {
let msg =
n.clone().extract::<req::ShowMessageParams>("window/showMessage").unwrap();
msg.message.starts_with("workspace loaded")
}
_ => false,
})
}
fn wait_for_message_cond(&self, n: usize, cond: &dyn Fn(&Message) -> bool) {
2018-09-03 16:49:21 -05:00
let mut total = 0;
2018-09-02 06:46:15 -05:00
for msg in self.messages.borrow().iter() {
if cond(msg) {
2018-09-03 16:49:21 -05:00
total += 1
2018-09-02 06:46:15 -05:00
}
}
2018-09-03 16:49:21 -05:00
while total < n {
let msg = self.recv().expect("no response");
if cond(&msg) {
2018-09-03 16:49:21 -05:00
total += 1;
2018-09-02 06:46:15 -05:00
}
}
}
fn recv(&self) -> Option<Message> {
2019-08-30 12:18:57 -05:00
recv_timeout(&self.client.receiver).map(|msg| {
self.messages.borrow_mut().push(msg.clone());
msg
})
2018-09-02 04:34:06 -05:00
}
fn send_notification(&self, not: Notification) {
2019-08-30 12:18:57 -05:00
self.client.sender.send(Message::Notification(not)).unwrap();
2018-09-01 12:21:11 -05:00
}
pub fn path(&self) -> &Path {
self.dir.path()
}
2018-09-01 12:21:11 -05:00
}
impl Drop for Server {
fn drop(&mut self) {
2019-08-30 12:18:57 -05:00
self.request::<Shutdown>((), Value::Null);
self.notification::<Exit>(());
2018-09-01 12:21:11 -05:00
}
}
2018-09-08 04:08:46 -05:00
fn recv_timeout(receiver: &Receiver<Message>) -> Option<Message> {
2019-05-29 14:14:06 -05:00
let timeout = Duration::from_secs(120);
2018-09-08 04:08:46 -05:00
select! {
2018-12-30 14:23:31 -06:00
recv(receiver) -> msg => msg.ok(),
recv(after(timeout)) -> _ => panic!("timed out"),
2018-09-08 04:08:46 -05:00
}
}