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

178 lines
4 KiB
Rust
Raw Normal View History

2018-09-01 19:21:11 +02:00
mod support;
use serde_json::json;
2018-12-06 21:26:23 +01:00
use ra_lsp_server::req::{Runnables, RunnablesParams, CodeActionRequest, CodeActionParams};
use languageserver_types::{Position, Range, CodeActionContext};
2018-09-01 19:21:11 +02:00
2018-10-15 19:15:53 +02:00
use crate::support::project;
2018-09-01 19:21:11 +02:00
2018-09-02 15:36:03 +02:00
const LOG: &'static str = "";
2018-09-02 13:46:15 +02:00
2018-09-01 19:21:11 +02:00
#[test]
2018-09-02 15:36:03 +02:00
fn test_runnables_no_project() {
let server = project(
r"
2018-09-01 19:21:11 +02:00
//- lib.rs
#[test]
fn foo() {
}
",
);
2018-09-01 19:21:11 +02:00
server.request::<Runnables>(
RunnablesParams {
text_document: server.doc_id("lib.rs"),
position: None,
},
json!([
2018-09-01 19:21:11 +02:00
{
"args": [ "test", "--", "foo", "--nocapture" ],
"bin": "cargo",
"env": { "RUST_BACKTRACE": "short" },
"label": "test foo",
"range": {
"end": { "character": 1, "line": 2 },
"start": { "character": 0, "line": 0 }
}
2018-10-25 12:42:53 +02:00
},
{
"args": [
"check",
"--all"
],
"bin": "cargo",
"env": {},
"label": "cargo check --all",
"range": {
"end": {
"character": 0,
"line": 0
},
"start": {
"character": 0,
"line": 0
}
}
2018-09-01 19:21:11 +02:00
}
]),
2018-09-01 19:21:11 +02:00
);
}
2018-09-02 13:46:15 +02:00
2018-09-02 15:36:03 +02:00
#[test]
fn test_runnables_project() {
let server = project(
r#"
2018-09-02 15:36:03 +02:00
//- Cargo.toml
[package]
name = "foo"
version = "0.0.0"
//- src/lib.rs
pub fn foo() {}
//- tests/spam.rs
#[test]
fn test_eggs() {}
"#,
);
2018-09-03 22:32:42 +02:00
server.wait_for_feedback("workspace loaded");
2018-09-02 15:36:03 +02:00
server.request::<Runnables>(
RunnablesParams {
text_document: server.doc_id("tests/spam.rs"),
position: None,
},
json!([
2018-09-02 15:36:03 +02:00
{
"args": [ "test", "--package", "foo", "--test", "spam", "--", "test_eggs", "--nocapture" ],
"bin": "cargo",
"env": { "RUST_BACKTRACE": "short" },
"label": "test test_eggs",
"range": {
"end": { "character": 17, "line": 1 },
"start": { "character": 0, "line": 0 }
}
2018-10-25 12:42:53 +02:00
},
{
"args": [
"check",
"--package",
"foo",
"--test",
"spam"
],
"bin": "cargo",
"env": {},
"label": "cargo check -p foo",
"range": {
"end": {
"character": 0,
"line": 0
},
"start": {
"character": 0,
"line": 0
}
}
2018-09-02 15:36:03 +02:00
}
])
2018-09-02 15:36:03 +02:00
);
}
2018-12-06 21:26:23 +01:00
#[test]
fn test_missing_module_code_action() {
let server = project(
r#"
//- Cargo.toml
[package]
name = "foo"
version = "0.0.0"
//- src/lib.rs
mod bar;
fn main() {}
"#,
);
server.wait_for_feedback("workspace loaded");
let empty_context = || CodeActionContext {
diagnostics: Vec::new(),
only: None,
};
server.request::<CodeActionRequest>(
CodeActionParams {
text_document: server.doc_id("src/lib.rs"),
range: Range::new(Position::new(0, 0), Position::new(0, 7)),
context: empty_context(),
},
json!([
{
"arguments": [
{
"cursorPosition": null,
"fileSystemEdits": [
{
"type": "createFile",
"uri": "file:///[..]/src/bar.rs"
}
],
"label": "create module",
"sourceFileEdits": []
}
],
"command": "ra-lsp.applySourceChange",
"title": "create module"
}
]),
);
server.request::<CodeActionRequest>(
CodeActionParams {
text_document: server.doc_id("src/lib.rs"),
range: Range::new(Position::new(2, 0), Position::new(2, 7)),
context: empty_context(),
},
json!([]),
);
}