11 releases

0.3.0 Apr 24, 2024
0.2.8 Jan 4, 2024
0.2.7 Oct 10, 2023
0.2.6 Sep 29, 2023
0.1.0 Sep 7, 2023

#173 in Text editors

Download history 332/week @ 2024-06-14 101/week @ 2024-06-21 139/week @ 2024-06-28 208/week @ 2024-07-05 45/week @ 2024-07-12 123/week @ 2024-07-19 77/week @ 2024-07-26 236/week @ 2024-08-02 330/week @ 2024-08-09 514/week @ 2024-08-16 121/week @ 2024-08-23 425/week @ 2024-08-30 374/week @ 2024-09-06 559/week @ 2024-09-13 426/week @ 2024-09-20 385/week @ 2024-09-27

1,752 downloads per month
Used in 3 crates (via els)

MIT/Apache

38KB
869 lines

molc

molc provides a mock (fake) language client for testing language servers.

Usage

You can see specific examples of molc use in ELS.

use lsp_types::{Url, Value};

use molc::{FakeClient, LangServer, RedirectableStdout};
use molc::oneline_range;

pub struct Server {
    stdout_redirect: Option<std::sync::mpsc::Sender<Value>>,
    ...
}

impl LangServer for Server {
    fn dispatch(&mut self, msg: impl Into<Value>) -> Result<(), Box<dyn std::error::Error>> {
        self.dispatch(msg)
    }
}

impl RedirectableStdout for Server {
    fn sender(&self) -> Option<&std::sync::mpsc::Sender<Value>> {
        self.stdout_redirect.as_ref()
    }
}

impl Server {
    fn bind_fake_client() -> FakeClient<Self> {
        // The server should send responses to this channel at least during testing.
        let (sender, receiver) = std::sync::mpsc::channel();
        DummyClient::new(
            Server::new(Some(sender)),
            receiver,
        )
    }

    fn init(&mut self, msg: &Value, id: i64) -> ELSResult<()> {
        self.send_log("initializing the language server")?;
        let result = InitializeResult {
            ...
        };
        self.init_services();
        self.send_stdout(&json!({
            "jsonrpc": "2.0",
            "id": id,
            "result": result,
        }))
    }

    ...
}

#[test]
fn test_references() -> Result<(), Box<dyn std::error::Error>> {
    let mut client = Server::bind_fake_client();
    client.request_initialize()?;
    let uri = Url::from_file_path(Path::new(FILE_A).canonicalize()?).unwrap();
    client.notify_open(FILE_A)?;
    let locations = client.request_references(uri, 1, 4)?.unwrap();
    assert_eq!(locations.len(), 1);
    assert_eq!(&locations[0].range, &oneline_range(1, 4, 5));
    Ok(())
}

Dependencies

~2.2–3.5MB
~79K SLoC