rust/crates/ra_analysis/tests/tests.rs

496 lines
11 KiB
Rust
Raw Normal View History

2018-09-16 11:54:24 +02:00
extern crate ra_analysis;
extern crate ra_editor;
extern crate ra_syntax;
extern crate relative_path;
extern crate rustc_hash;
2018-08-25 13:26:34 +02:00
extern crate test_utils;
2018-08-17 15:04:34 +02:00
2018-10-31 21:41:43 +01:00
use ra_syntax::TextRange;
use test_utils::assert_eq_dbg;
2018-08-17 15:04:34 +02:00
2018-10-20 21:43:36 +02:00
use ra_analysis::{
2018-10-31 21:41:43 +01:00
mock_analysis::{analysis_and_position, single_file, single_file_with_position, MockAnalysis},
2018-11-27 23:11:29 +01:00
AnalysisChange, CrateGraph, FileId, FnSignatureInfo,
2018-10-20 21:43:36 +02:00
};
2018-11-27 23:11:29 +01:00
fn get_signature(text: &str) -> (FnSignatureInfo, Option<usize>) {
let (analysis, position) = single_file_with_position(text);
2018-11-05 12:57:41 +01:00
analysis.resolve_callable(position).unwrap().unwrap()
}
2018-08-17 15:04:34 +02:00
#[test]
fn test_resolve_module() {
2018-10-31 21:41:43 +01:00
let (analysis, pos) = analysis_and_position(
"
//- /lib.rs
mod <|>foo;
//- /foo.rs
// empty
2018-10-31 21:41:43 +01:00
",
);
2018-11-05 12:57:41 +01:00
let symbols = analysis.approximately_resolve_symbol(pos).unwrap();
2018-08-17 15:04:34 +02:00
assert_eq_dbg(
r#"[(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]"#,
&symbols,
);
2018-10-31 21:41:43 +01:00
let (analysis, pos) = analysis_and_position(
"
//- /lib.rs
mod <|>foo;
//- /foo/mod.rs
// empty
2018-10-31 21:41:43 +01:00
",
);
2018-11-05 12:57:41 +01:00
let symbols = analysis.approximately_resolve_symbol(pos).unwrap();
2018-08-17 15:04:34 +02:00
assert_eq_dbg(
r#"[(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]"#,
&symbols,
);
}
2018-08-21 17:30:10 +02:00
2018-08-27 19:58:38 +02:00
#[test]
fn test_unresolved_module_diagnostic() {
let (analysis, file_id) = single_file("mod foo;");
let diagnostics = analysis.diagnostics(file_id).unwrap();
2018-08-27 19:58:38 +02:00
assert_eq_dbg(
2018-08-29 17:35:28 +02:00
r#"[Diagnostic {
message: "unresolved module",
range: [4; 7),
fix: Some(SourceChange {
label: "create module",
source_file_edits: [],
file_system_edits: [CreateFile { anchor: FileId(1), path: "../foo.rs" }],
cursor_position: None }) }]"#,
2018-08-27 19:58:38 +02:00
&diagnostics,
);
}
2018-10-24 14:00:03 +02:00
#[test]
fn test_unresolved_module_diagnostic_no_diag_for_inline_mode() {
let (analysis, file_id) = single_file("mod foo {}");
let diagnostics = analysis.diagnostics(file_id).unwrap();
2018-10-24 14:00:03 +02:00
assert_eq_dbg(r#"[]"#, &diagnostics);
}
2018-08-28 19:29:36 +02:00
2018-08-21 17:30:10 +02:00
#[test]
fn test_resolve_parent_module() {
2018-10-31 21:41:43 +01:00
let (analysis, pos) = analysis_and_position(
"
//- /lib.rs
mod foo;
//- /foo.rs
<|>// empty
2018-10-31 21:41:43 +01:00
",
);
2018-11-05 12:57:41 +01:00
let symbols = analysis.parent_module(pos).unwrap();
2018-08-21 17:30:10 +02:00
assert_eq_dbg(
r#"[(FileId(1), FileSymbol { name: "foo", node_range: [4; 7), kind: MODULE })]"#,
&symbols,
);
}
#[test]
fn test_resolve_parent_module_for_inline() {
let (analysis, pos) = analysis_and_position(
"
//- /lib.rs
mod foo {
mod bar {
mod baz { <|> }
}
}
",
);
2018-11-05 12:57:41 +01:00
let symbols = analysis.parent_module(pos).unwrap();
assert_eq_dbg(
r#"[(FileId(1), FileSymbol { name: "bar", node_range: [18; 21), kind: MODULE })]"#,
2018-08-21 17:30:10 +02:00
&symbols,
);
}
2018-08-31 18:14:08 +02:00
#[test]
fn test_resolve_crate_root() {
2018-10-31 21:41:43 +01:00
let mock = MockAnalysis::with_files(
"
//- /lib.rs
mod foo;
//- /foo.rs
// emtpy <|>
2018-10-31 21:41:43 +01:00
",
);
let root_file = mock.id_of("/lib.rs");
let mod_file = mock.id_of("/foo.rs");
let mut host = mock.analysis_host();
assert!(host.analysis().crate_for(mod_file).unwrap().is_empty());
let mut crate_graph = CrateGraph::new();
let crate_id = crate_graph.add_crate_root(root_file);
let mut change = AnalysisChange::new();
change.set_crate_graph(crate_graph);
host.apply_change(change);
2018-08-31 18:14:08 +02:00
assert_eq!(host.analysis().crate_for(mod_file).unwrap(), vec![crate_id]);
2018-08-31 18:14:08 +02:00
}
#[test]
fn test_fn_signature_two_args_first() {
let (desc, param) = get_signature(
r#"fn foo(x: u32, y: u32) -> u32 {x + y}
fn bar() { foo(<|>3, ); }"#,
);
assert_eq!(desc.name, "foo".to_string());
assert_eq!(desc.params, vec!("x".to_string(), "y".to_string()));
assert_eq!(desc.ret_type, Some("-> u32".into()));
assert_eq!(param, Some(0));
}
#[test]
fn test_fn_signature_two_args_second() {
let (desc, param) = get_signature(
r#"fn foo(x: u32, y: u32) -> u32 {x + y}
fn bar() { foo(3, <|>); }"#,
);
assert_eq!(desc.name, "foo".to_string());
assert_eq!(desc.params, vec!("x".to_string(), "y".to_string()));
assert_eq!(desc.ret_type, Some("-> u32".into()));
assert_eq!(param, Some(1));
}
#[test]
fn test_fn_signature_for_impl() {
let (desc, param) = get_signature(
r#"struct F; impl F { pub fn new() { F{}} }
fn bar() {let _ : F = F::new(<|>);}"#,
);
assert_eq!(desc.name, "new".to_string());
assert_eq!(desc.params, Vec::<String>::new());
assert_eq!(desc.ret_type, None);
assert_eq!(param, None);
}
#[test]
fn test_fn_signature_for_method_self() {
let (desc, param) = get_signature(
r#"struct F;
impl F {
pub fn new() -> F{
F{}
}
pub fn do_it(&self) {}
}
fn bar() {
let f : F = F::new();
f.do_it(<|>);
}"#,
);
assert_eq!(desc.name, "do_it".to_string());
assert_eq!(desc.params, vec!["&self".to_string()]);
assert_eq!(desc.ret_type, None);
assert_eq!(param, None);
}
#[test]
fn test_fn_signature_for_method_with_arg() {
let (desc, param) = get_signature(
r#"struct F;
impl F {
pub fn new() -> F{
F{}
}
pub fn do_it(&self, x: i32) {}
}
fn bar() {
let f : F = F::new();
f.do_it(<|>);
}"#,
);
assert_eq!(desc.name, "do_it".to_string());
assert_eq!(desc.params, vec!["&self".to_string(), "x".to_string()]);
assert_eq!(desc.ret_type, None);
assert_eq!(param, Some(1));
2018-10-15 20:54:12 +02:00
}
#[test]
fn test_fn_signature_with_docs_simple() {
let (desc, param) = get_signature(
r#"
// test
fn foo(j: u32) -> u32 {
j
}
fn bar() {
let _ = foo(<|>);
}
"#,
);
assert_eq!(desc.name, "foo".to_string());
assert_eq!(desc.params, vec!["j".to_string()]);
assert_eq!(desc.ret_type, Some("-> u32".to_string()));
assert_eq!(param, Some(0));
assert_eq!(desc.label, "fn foo(j: u32) -> u32".to_string());
assert_eq!(desc.doc, Some("test".into()));
}
#[test]
fn test_fn_signature_with_docs() {
let (desc, param) = get_signature(
r#"
/// Adds one to the number given.
///
/// # Examples
///
/// ```
/// let five = 5;
///
/// assert_eq!(6, my_crate::add_one(5));
/// ```
pub fn add_one(x: i32) -> i32 {
x + 1
}
pub fn do() {
add_one(<|>
}"#,
);
assert_eq!(desc.name, "add_one".to_string());
assert_eq!(desc.params, vec!["x".to_string()]);
assert_eq!(desc.ret_type, Some("-> i32".to_string()));
assert_eq!(param, Some(0));
assert_eq!(desc.label, "pub fn add_one(x: i32) -> i32".to_string());
2018-10-31 21:41:43 +01:00
assert_eq!(
desc.doc,
Some(
r#"Adds one to the number given.
# Examples
```rust
let five = 5;
assert_eq!(6, my_crate::add_one(5));
2018-10-31 21:41:43 +01:00
```"#
.into()
)
);
}
#[test]
fn test_fn_signature_with_docs_impl() {
let (desc, param) = get_signature(
r#"
struct addr;
impl addr {
/// Adds one to the number given.
///
/// # Examples
///
/// ```
/// let five = 5;
///
/// assert_eq!(6, my_crate::add_one(5));
/// ```
pub fn add_one(x: i32) -> i32 {
x + 1
}
}
pub fn do_it() {
addr {};
addr::add_one(<|>);
2018-10-31 21:41:43 +01:00
}"#,
);
assert_eq!(desc.name, "add_one".to_string());
assert_eq!(desc.params, vec!["x".to_string()]);
assert_eq!(desc.ret_type, Some("-> i32".to_string()));
assert_eq!(param, Some(0));
assert_eq!(desc.label, "pub fn add_one(x: i32) -> i32".to_string());
2018-10-31 21:41:43 +01:00
assert_eq!(
desc.doc,
Some(
r#"Adds one to the number given.
# Examples
```rust
let five = 5;
assert_eq!(6, my_crate::add_one(5));
2018-10-31 21:41:43 +01:00
```"#
.into()
)
);
}
#[test]
fn test_fn_signature_with_docs_from_actix() {
let (desc, param) = get_signature(
r#"
pub trait WriteHandler<E>
where
Self: Actor,
Self::Context: ActorContext,
{
/// Method is called when writer emits error.
///
/// If this method returns `ErrorAction::Continue` writer processing
/// continues otherwise stream processing stops.
fn error(&mut self, err: E, ctx: &mut Self::Context) -> Running {
Running::Stop
}
/// Method is called when writer finishes.
///
/// By default this method stops actor's `Context`.
fn finished(&mut self, ctx: &mut Self::Context) {
ctx.stop()
}
}
pub fn foo() {
WriteHandler r;
r.finished(<|>);
}
2018-10-31 21:41:43 +01:00
"#,
);
assert_eq!(desc.name, "finished".to_string());
2018-10-31 21:41:43 +01:00
assert_eq!(
desc.params,
vec!["&mut self".to_string(), "ctx".to_string()]
);
assert_eq!(desc.ret_type, None);
assert_eq!(param, Some(1));
2018-10-31 21:41:43 +01:00
assert_eq!(
desc.doc,
Some(
r#"Method is called when writer finishes.
By default this method stops actor's `Context`."#
.into()
)
);
}
fn get_all_refs(text: &str) -> Vec<(FileId, TextRange)> {
let (analysis, position) = single_file_with_position(text);
2018-11-05 12:57:41 +01:00
analysis.find_all_refs(position).unwrap()
}
#[test]
fn test_find_all_refs_for_local() {
let code = r#"
fn main() {
let mut i = 1;
let j = 1;
i = i<|> + j;
{
i = 0;
}
i = 5;
}"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 5);
}
#[test]
fn test_find_all_refs_for_param_inside() {
let code = r#"
fn foo(i : u32) -> u32 {
i<|>
}"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 2);
2018-10-20 21:43:36 +02:00
}
2018-10-24 17:37:25 +02:00
#[test]
fn test_find_all_refs_for_fn_param() {
let code = r#"
fn foo(i<|> : u32) -> u32 {
i
}"#;
let refs = get_all_refs(code);
assert_eq!(refs.len(), 2);
}
2018-10-24 17:37:25 +02:00
#[test]
fn test_complete_crate_path() {
2018-10-31 21:41:43 +01:00
let (analysis, position) = analysis_and_position(
"
//- /lib.rs
mod foo;
struct Spam;
//- /foo.rs
use crate::Sp<|>
2018-10-31 21:41:43 +01:00
",
);
2018-11-05 12:57:41 +01:00
let completions = analysis.completions(position).unwrap().unwrap();
2018-10-24 17:37:25 +02:00
assert_eq_dbg(
2018-11-21 10:57:05 +01:00
r#"[CompletionItem { label: "Spam", lookup: None, snippet: None },
CompletionItem { label: "foo", lookup: None, snippet: None }]"#,
2018-10-24 17:37:25 +02:00
&completions,
);
}
2018-11-07 19:38:41 +01:00
#[test]
fn test_complete_crate_path_with_braces() {
let (analysis, position) = analysis_and_position(
"
//- /lib.rs
mod foo;
struct Spam;
//- /foo.rs
use crate::{Sp<|>};
",
);
let completions = analysis.completions(position).unwrap().unwrap();
assert_eq_dbg(
2018-11-21 10:57:05 +01:00
r#"[CompletionItem { label: "Spam", lookup: None, snippet: None },
CompletionItem { label: "foo", lookup: None, snippet: None }]"#,
2018-11-07 19:38:41 +01:00
&completions,
);
}
#[test]
fn test_complete_crate_path_in_nested_tree() {
let (analysis, position) = analysis_and_position(
"
//- /lib.rs
mod foo;
pub mod bar {
pub mod baz {
pub struct Spam;
}
}
//- /foo.rs
use crate::{bar::{baz::Sp<|>}};
",
);
let completions = analysis.completions(position).unwrap().unwrap();
assert_eq_dbg(
r#"[CompletionItem { label: "Spam", lookup: None, snippet: None }]"#,
&completions,
);
}