2018-10-31 15:41:43 -05:00
|
|
|
use ra_syntax::TextRange;
|
2018-12-30 14:43:30 -06:00
|
|
|
use test_utils::{assert_eq_dbg, assert_eq_text};
|
2018-08-17 08:04:34 -05:00
|
|
|
|
2018-10-20 14:43:36 -05:00
|
|
|
use ra_analysis::{
|
2018-10-31 15:41:43 -05:00
|
|
|
mock_analysis::{analysis_and_position, single_file, single_file_with_position, MockAnalysis},
|
2018-11-27 16:11:29 -06:00
|
|
|
AnalysisChange, CrateGraph, FileId, FnSignatureInfo,
|
2018-10-20 14:43:36 -05:00
|
|
|
};
|
|
|
|
|
2018-11-27 16:11:29 -06:00
|
|
|
fn get_signature(text: &str) -> (FnSignatureInfo, Option<usize>) {
|
2018-10-31 14:34:31 -05:00
|
|
|
let (analysis, position) = single_file_with_position(text);
|
2018-11-05 05:57:41 -06:00
|
|
|
analysis.resolve_callable(position).unwrap().unwrap()
|
2018-10-09 09:08:17 -05:00
|
|
|
}
|
|
|
|
|
2018-12-05 03:17:38 -06:00
|
|
|
#[test]
|
|
|
|
fn approximate_resolve_works_in_items() {
|
|
|
|
let (analysis, pos) = analysis_and_position(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
struct Foo;
|
|
|
|
enum E { X(Foo<|>) }
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
2018-12-08 10:02:23 -06:00
|
|
|
let symbols = analysis.approximately_resolve_symbol(pos).unwrap().unwrap();
|
2018-12-05 03:17:38 -06:00
|
|
|
assert_eq_dbg(
|
2018-12-08 12:18:29 -06:00
|
|
|
r#"ReferenceResolution {
|
|
|
|
reference_range: [23; 26),
|
|
|
|
resolves_to: [(FileId(1), FileSymbol { name: "Foo", node_range: [0; 11), kind: STRUCT_DEF })]
|
|
|
|
}"#,
|
2018-12-05 03:17:38 -06:00
|
|
|
&symbols,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-17 08:04:34 -05:00
|
|
|
#[test]
|
|
|
|
fn test_resolve_module() {
|
2018-10-31 15:41:43 -05:00
|
|
|
let (analysis, pos) = analysis_and_position(
|
|
|
|
"
|
2018-10-31 14:34:31 -05:00
|
|
|
//- /lib.rs
|
|
|
|
mod <|>foo;
|
|
|
|
//- /foo.rs
|
|
|
|
// empty
|
2018-10-31 15:41:43 -05:00
|
|
|
",
|
|
|
|
);
|
2018-10-31 14:34:31 -05:00
|
|
|
|
2018-12-08 10:02:23 -06:00
|
|
|
let symbols = analysis.approximately_resolve_symbol(pos).unwrap().unwrap();
|
2018-08-17 08:04:34 -05:00
|
|
|
assert_eq_dbg(
|
2018-12-08 12:18:29 -06:00
|
|
|
r#"ReferenceResolution {
|
|
|
|
reference_range: [4; 7),
|
|
|
|
resolves_to: [(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]
|
|
|
|
}"#,
|
2018-08-17 08:04:34 -05:00
|
|
|
&symbols,
|
|
|
|
);
|
|
|
|
|
2018-10-31 15:41:43 -05:00
|
|
|
let (analysis, pos) = analysis_and_position(
|
|
|
|
"
|
2018-10-31 14:34:31 -05:00
|
|
|
//- /lib.rs
|
|
|
|
mod <|>foo;
|
|
|
|
//- /foo/mod.rs
|
|
|
|
// empty
|
2018-10-31 15:41:43 -05:00
|
|
|
",
|
|
|
|
);
|
2018-10-31 14:34:31 -05:00
|
|
|
|
2018-12-08 10:02:23 -06:00
|
|
|
let symbols = analysis.approximately_resolve_symbol(pos).unwrap().unwrap();
|
2018-08-17 08:04:34 -05:00
|
|
|
assert_eq_dbg(
|
2018-12-08 12:18:29 -06:00
|
|
|
r#"ReferenceResolution {
|
|
|
|
reference_range: [4; 7),
|
|
|
|
resolves_to: [(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]
|
|
|
|
}"#,
|
2018-08-17 08:04:34 -05:00
|
|
|
&symbols,
|
|
|
|
);
|
|
|
|
}
|
2018-08-21 10:30:10 -05:00
|
|
|
|
2018-08-27 12:58:38 -05:00
|
|
|
#[test]
|
|
|
|
fn test_unresolved_module_diagnostic() {
|
2018-10-31 14:34:31 -05:00
|
|
|
let (analysis, file_id) = single_file("mod foo;");
|
|
|
|
let diagnostics = analysis.diagnostics(file_id).unwrap();
|
2018-08-27 12:58:38 -05:00
|
|
|
assert_eq_dbg(
|
2018-08-29 10:35:28 -05:00
|
|
|
r#"[Diagnostic {
|
|
|
|
message: "unresolved module",
|
|
|
|
range: [4; 7),
|
|
|
|
fix: Some(SourceChange {
|
|
|
|
label: "create module",
|
|
|
|
source_file_edits: [],
|
2018-12-21 03:30:28 -06:00
|
|
|
file_system_edits: [CreateFile { source_root: SourceRootId(0), path: "foo.rs" }],
|
2018-12-23 10:39:33 -06:00
|
|
|
cursor_position: None }),
|
2018-12-24 09:01:16 -06:00
|
|
|
severity: Error }]"#,
|
2018-08-27 12:58:38 -05:00
|
|
|
&diagnostics,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-10-24 07:00:03 -05:00
|
|
|
#[test]
|
|
|
|
fn test_unresolved_module_diagnostic_no_diag_for_inline_mode() {
|
2018-10-31 14:34:31 -05:00
|
|
|
let (analysis, file_id) = single_file("mod foo {}");
|
|
|
|
let diagnostics = analysis.diagnostics(file_id).unwrap();
|
2018-10-24 07:00:03 -05:00
|
|
|
assert_eq_dbg(r#"[]"#, &diagnostics);
|
|
|
|
}
|
2018-08-28 12:29:36 -05:00
|
|
|
|
2018-08-21 10:30:10 -05:00
|
|
|
#[test]
|
|
|
|
fn test_resolve_parent_module() {
|
2018-10-31 15:41:43 -05:00
|
|
|
let (analysis, pos) = analysis_and_position(
|
|
|
|
"
|
2018-10-31 14:34:31 -05:00
|
|
|
//- /lib.rs
|
|
|
|
mod foo;
|
|
|
|
//- /foo.rs
|
|
|
|
<|>// empty
|
2018-10-31 15:41:43 -05:00
|
|
|
",
|
|
|
|
);
|
2018-11-05 05:57:41 -06:00
|
|
|
let symbols = analysis.parent_module(pos).unwrap();
|
2018-08-21 10:30:10 -05:00
|
|
|
assert_eq_dbg(
|
2018-11-05 05:10:20 -06:00
|
|
|
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 05:57:41 -06:00
|
|
|
let symbols = analysis.parent_module(pos).unwrap();
|
2018-11-05 05:10:20 -06:00
|
|
|
assert_eq_dbg(
|
|
|
|
r#"[(FileId(1), FileSymbol { name: "bar", node_range: [18; 21), kind: MODULE })]"#,
|
2018-08-21 10:30:10 -05:00
|
|
|
&symbols,
|
|
|
|
);
|
|
|
|
}
|
2018-08-31 11:14:08 -05:00
|
|
|
|
2018-12-27 14:45:16 -06:00
|
|
|
#[test]
|
|
|
|
fn test_path_one_layer() {
|
|
|
|
let (analysis, pos) = analysis_and_position(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
mod foo;
|
|
|
|
//- /foo/mod.rs
|
|
|
|
mod bla;
|
|
|
|
//- /foo/bla.rs
|
|
|
|
<|> //empty
|
|
|
|
",
|
|
|
|
);
|
|
|
|
let symbols = analysis.module_path(pos).unwrap().unwrap();
|
|
|
|
assert_eq!("foo::bla", &symbols);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_two_layer() {
|
|
|
|
let (analysis, pos) = analysis_and_position(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
mod foo;
|
|
|
|
//- /foo/mod.rs
|
|
|
|
mod bla;
|
|
|
|
//- /foo/bla/mod.rs
|
|
|
|
mod more;
|
|
|
|
//- /foo/bla/more.rs
|
|
|
|
<|> //empty
|
|
|
|
",
|
|
|
|
);
|
|
|
|
let symbols = analysis.module_path(pos).unwrap().unwrap();
|
|
|
|
assert_eq!("foo::bla::more", &symbols);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_in_file_mod() {
|
|
|
|
let (analysis, pos) = analysis_and_position(
|
|
|
|
"
|
|
|
|
//- /lib.rs
|
|
|
|
mod foo;
|
|
|
|
//- /foo.rs
|
|
|
|
mod bar {
|
|
|
|
<|> //empty
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
let symbols = analysis.module_path(pos).unwrap().unwrap();
|
|
|
|
assert_eq!("foo::bar", &symbols);
|
|
|
|
}
|
|
|
|
|
2018-08-31 11:14:08 -05:00
|
|
|
#[test]
|
|
|
|
fn test_resolve_crate_root() {
|
2018-10-31 15:41:43 -05:00
|
|
|
let mock = MockAnalysis::with_files(
|
|
|
|
"
|
2018-10-31 14:34:31 -05:00
|
|
|
//- /lib.rs
|
|
|
|
mod foo;
|
|
|
|
//- /foo.rs
|
|
|
|
// emtpy <|>
|
2018-10-31 15:41:43 -05:00
|
|
|
",
|
|
|
|
);
|
2018-10-31 14:34:31 -05: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());
|
|
|
|
|
2018-11-27 18:25:20 -06:00
|
|
|
let mut crate_graph = CrateGraph::default();
|
2018-10-31 14:34:31 -05:00
|
|
|
let crate_id = crate_graph.add_crate_root(root_file);
|
2018-10-25 02:57:55 -05:00
|
|
|
let mut change = AnalysisChange::new();
|
|
|
|
change.set_crate_graph(crate_graph);
|
|
|
|
host.apply_change(change);
|
2018-08-31 11:14:08 -05:00
|
|
|
|
2018-10-31 14:34:31 -05:00
|
|
|
assert_eq!(host.analysis().crate_for(mod_file).unwrap(), vec![crate_id]);
|
2018-08-31 11:14:08 -05:00
|
|
|
}
|
2018-10-09 09:08:17 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_fn_signature_two_args_first() {
|
|
|
|
let (desc, param) = get_signature(
|
2018-10-15 16:44:23 -05:00
|
|
|
r#"fn foo(x: u32, y: u32) -> u32 {x + y}
|
|
|
|
fn bar() { foo(<|>3, ); }"#,
|
|
|
|
);
|
2018-10-09 09:08:17 -05:00
|
|
|
|
2018-10-12 06:54:57 -05:00
|
|
|
assert_eq!(desc.name, "foo".to_string());
|
2018-10-15 16:44:23 -05:00
|
|
|
assert_eq!(desc.params, vec!("x".to_string(), "y".to_string()));
|
2018-10-09 09:08:17 -05:00
|
|
|
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}
|
2018-10-15 16:44:23 -05:00
|
|
|
fn bar() { foo(3, <|>); }"#,
|
|
|
|
);
|
2018-10-09 09:08:17 -05:00
|
|
|
|
2018-10-12 06:54:57 -05:00
|
|
|
assert_eq!(desc.name, "foo".to_string());
|
2018-10-15 16:44:23 -05:00
|
|
|
assert_eq!(desc.params, vec!("x".to_string(), "y".to_string()));
|
2018-10-09 09:08:17 -05:00
|
|
|
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(
|
2018-10-15 16:44:23 -05:00
|
|
|
r#"struct F; impl F { pub fn new() { F{}} }
|
|
|
|
fn bar() {let _ : F = F::new(<|>);}"#,
|
|
|
|
);
|
2018-10-09 09:08:17 -05:00
|
|
|
|
2018-10-12 06:54:57 -05:00
|
|
|
assert_eq!(desc.name, "new".to_string());
|
2018-10-09 09:08:17 -05:00
|
|
|
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(
|
2018-10-15 16:44:23 -05:00
|
|
|
r#"struct F;
|
2018-10-09 09:08:17 -05:00
|
|
|
impl F {
|
|
|
|
pub fn new() -> F{
|
|
|
|
F{}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn do_it(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
let f : F = F::new();
|
|
|
|
f.do_it(<|>);
|
2018-10-15 16:44:23 -05:00
|
|
|
}"#,
|
|
|
|
);
|
2018-10-09 09:08:17 -05:00
|
|
|
|
2018-10-12 06:54:57 -05:00
|
|
|
assert_eq!(desc.name, "do_it".to_string());
|
2018-10-09 09:08:17 -05:00
|
|
|
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(
|
2018-10-15 16:44:23 -05:00
|
|
|
r#"struct F;
|
2018-10-09 09:08:17 -05:00
|
|
|
impl F {
|
|
|
|
pub fn new() -> F{
|
|
|
|
F{}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn do_it(&self, x: i32) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
let f : F = F::new();
|
|
|
|
f.do_it(<|>);
|
2018-10-15 16:44:23 -05:00
|
|
|
}"#,
|
|
|
|
);
|
2018-10-09 09:08:17 -05:00
|
|
|
|
2018-10-12 06:54:57 -05:00
|
|
|
assert_eq!(desc.name, "do_it".to_string());
|
2018-10-09 09:08:17 -05:00
|
|
|
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 13:54:12 -05:00
|
|
|
}
|
2018-10-18 12:40:12 -05:00
|
|
|
|
2018-10-30 13:07:14 -05: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 15:41:43 -05:00
|
|
|
assert_eq!(
|
|
|
|
desc.doc,
|
|
|
|
Some(
|
|
|
|
r#"Adds one to the number given.
|
2018-10-30 13:07:14 -05:00
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
```rust
|
|
|
|
let five = 5;
|
|
|
|
|
|
|
|
assert_eq!(6, my_crate::add_one(5));
|
2018-10-31 15:41:43 -05:00
|
|
|
```"#
|
|
|
|
.into()
|
|
|
|
)
|
|
|
|
);
|
2018-10-30 13:07:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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 15:41:43 -05:00
|
|
|
}"#,
|
|
|
|
);
|
2018-10-30 13:07:14 -05: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 15:41:43 -05:00
|
|
|
assert_eq!(
|
|
|
|
desc.doc,
|
|
|
|
Some(
|
|
|
|
r#"Adds one to the number given.
|
2018-10-30 13:07:14 -05:00
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
```rust
|
|
|
|
let five = 5;
|
|
|
|
|
|
|
|
assert_eq!(6, my_crate::add_one(5));
|
2018-10-31 15:41:43 -05:00
|
|
|
```"#
|
|
|
|
.into()
|
|
|
|
)
|
|
|
|
);
|
2018-10-30 13:07:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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 15:41:43 -05:00
|
|
|
"#,
|
|
|
|
);
|
2018-10-30 13:07:14 -05:00
|
|
|
|
|
|
|
assert_eq!(desc.name, "finished".to_string());
|
2018-10-31 15:41:43 -05:00
|
|
|
assert_eq!(
|
|
|
|
desc.params,
|
|
|
|
vec!["&mut self".to_string(), "ctx".to_string()]
|
|
|
|
);
|
2018-10-30 13:07:14 -05:00
|
|
|
assert_eq!(desc.ret_type, None);
|
|
|
|
assert_eq!(param, Some(1));
|
2018-10-31 15:41:43 -05:00
|
|
|
assert_eq!(
|
|
|
|
desc.doc,
|
|
|
|
Some(
|
|
|
|
r#"Method is called when writer finishes.
|
|
|
|
|
|
|
|
By default this method stops actor's `Context`."#
|
|
|
|
.into()
|
|
|
|
)
|
|
|
|
);
|
2018-10-30 13:07:14 -05:00
|
|
|
}
|
|
|
|
|
2018-10-18 12:40:12 -05:00
|
|
|
fn get_all_refs(text: &str) -> Vec<(FileId, TextRange)> {
|
2018-10-31 14:34:31 -05:00
|
|
|
let (analysis, position) = single_file_with_position(text);
|
2018-11-05 05:57:41 -06:00
|
|
|
analysis.find_all_refs(position).unwrap()
|
2018-10-18 12:40:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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 14:43:36 -05:00
|
|
|
}
|
2018-10-24 10:37:25 -05:00
|
|
|
|
2018-10-24 13:24:32 -05: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-12-30 14:43:30 -06:00
|
|
|
#[test]
|
|
|
|
fn test_rename_for_local() {
|
|
|
|
test_rename(
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let mut i = 1;
|
|
|
|
let j = 1;
|
|
|
|
i = i<|> + j;
|
|
|
|
|
|
|
|
{
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 5;
|
|
|
|
}"#,
|
|
|
|
"k",
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let mut k = 1;
|
|
|
|
let j = 1;
|
|
|
|
k = k + j;
|
|
|
|
|
|
|
|
{
|
|
|
|
k = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
k = 5;
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rename_for_param_inside() {
|
|
|
|
test_rename(
|
|
|
|
r#"
|
|
|
|
fn foo(i : u32) -> u32 {
|
|
|
|
i<|>
|
|
|
|
}"#,
|
|
|
|
"j",
|
|
|
|
r#"
|
|
|
|
fn foo(j : u32) -> u32 {
|
|
|
|
j
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rename_refs_for_fn_param() {
|
|
|
|
test_rename(
|
|
|
|
r#"
|
|
|
|
fn foo(i<|> : u32) -> u32 {
|
|
|
|
i
|
|
|
|
}"#,
|
|
|
|
"new_name",
|
|
|
|
r#"
|
|
|
|
fn foo(new_name : u32) -> u32 {
|
|
|
|
new_name
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rename_for_mut_param() {
|
|
|
|
test_rename(
|
|
|
|
r#"
|
|
|
|
fn foo(mut i<|> : u32) -> u32 {
|
|
|
|
i
|
|
|
|
}"#,
|
|
|
|
"new_name",
|
|
|
|
r#"
|
|
|
|
fn foo(mut new_name : u32) -> u32 {
|
|
|
|
new_name
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
fn test_rename(text: &str, new_name: &str, expected: &str) {
|
|
|
|
let (analysis, position) = single_file_with_position(text);
|
|
|
|
let edits = analysis.rename(position, new_name).unwrap();
|
|
|
|
let mut text_edit_bulder = ra_text_edit::TextEditBuilder::new();
|
|
|
|
let mut file_id: Option<FileId> = None;
|
|
|
|
for edit in edits {
|
|
|
|
file_id = Some(edit.file_id);
|
|
|
|
for atom in edit.edit.as_atoms() {
|
|
|
|
text_edit_bulder.replace(atom.delete, atom.insert.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let result = text_edit_bulder
|
|
|
|
.finish()
|
|
|
|
.apply(&*analysis.file_text(file_id.unwrap()));
|
|
|
|
assert_eq_text!(expected, &*result);
|
|
|
|
}
|