rust/crates/ra_analysis/tests/tests.rs

148 lines
4.1 KiB
Rust
Raw Normal View History

2018-08-28 17:22:52 +02:00
extern crate relative_path;
2018-09-16 11:54:24 +02:00
extern crate ra_analysis;
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-08-31 18:14:08 +02:00
use std::{
2018-09-10 11:57:40 +02:00
sync::Arc,
2018-08-31 18:14:08 +02:00
};
2018-08-17 15:04:34 +02:00
use rustc_hash::FxHashMap;
2018-09-10 11:57:40 +02:00
use relative_path::{RelativePath, RelativePathBuf};
2018-09-16 11:54:24 +02:00
use ra_analysis::{Analysis, AnalysisHost, FileId, FileResolver, JobHandle, CrateGraph, CrateId};
2018-08-25 13:26:34 +02:00
use test_utils::assert_eq_dbg;
2018-08-17 15:04:34 +02:00
2018-09-10 11:57:40 +02:00
#[derive(Debug)]
struct FileMap(Vec<(FileId, RelativePathBuf)>);
2018-08-28 17:22:52 +02:00
impl FileMap {
2018-09-05 19:22:52 +02:00
fn iter<'a>(&'a self) -> impl Iterator<Item=(FileId, &'a RelativePath)> + 'a {
2018-09-10 11:57:40 +02:00
self.0.iter().map(|(id, path)| (*id, path.as_relative_path()))
2018-09-05 19:22:52 +02:00
}
fn path(&self, id: FileId) -> &RelativePath {
self.iter()
.find(|&(it, _)| it == id)
2018-08-28 17:22:52 +02:00
.unwrap()
2018-09-05 19:22:52 +02:00
.1
2018-08-28 17:22:52 +02:00
}
}
impl FileResolver for FileMap {
fn file_stem(&self, id: FileId) -> String {
2018-09-05 19:22:52 +02:00
self.path(id).file_stem().unwrap().to_string()
2018-08-28 17:22:52 +02:00
}
fn resolve(&self, id: FileId, rel: &RelativePath) -> Option<FileId> {
2018-09-05 19:22:52 +02:00
let path = self.path(id).join(rel).normalize();
let id = self.iter().find(|&(_, p)| path == p)?.0;
Some(id)
2018-08-28 17:22:52 +02:00
}
}
2018-09-10 19:14:31 +02:00
fn analysis_host(files: &'static [(&'static str, &'static str)]) -> AnalysisHost {
let mut host = AnalysisHost::new();
let mut file_map = Vec::new();
for (id, &(path, contents)) in files.iter().enumerate() {
let file_id = FileId((id + 1) as u32);
assert!(path.starts_with('/'));
let path = RelativePathBuf::from_path(&path[1..]).unwrap();
host.change_file(file_id, Some(contents.to_string()));
file_map.push((file_id, path));
}
host.set_file_resolver(Arc::new(FileMap(file_map)));
host
}
fn analysis(files: &'static [(&'static str, &'static str)]) -> Analysis {
analysis_host(files).analysis()
}
2018-08-17 15:04:34 +02:00
#[test]
fn test_resolve_module() {
2018-09-10 11:57:40 +02:00
let snap = analysis(&[
("/lib.rs", "mod foo;"),
("/foo.rs", "")
]);
2018-08-31 11:13:02 +02:00
let (_handle, token) = JobHandle::new();
let symbols = snap.approximately_resolve_symbol(FileId(1), 4.into(), &token);
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-09-10 11:57:40 +02:00
let snap = analysis(&[
("/lib.rs", "mod foo;"),
("/foo/mod.rs", "")
]);
2018-08-31 11:13:02 +02:00
let symbols = snap.approximately_resolve_symbol(FileId(1), 4.into(), &token);
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() {
2018-09-10 11:57:40 +02:00
let snap = analysis(&[("/lib.rs", "mod foo;")]);
2018-08-29 17:35:28 +02:00
let diagnostics = snap.diagnostics(FileId(1));
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-08-28 19:29:36 +02:00
#[test]
fn test_unresolved_module_diagnostic_no_diag_for_inline_mode() {
2018-09-10 11:57:40 +02:00
let snap = analysis(&[("/lib.rs", "mod foo {}")]);
2018-08-29 17:35:28 +02:00
let diagnostics = snap.diagnostics(FileId(1));
2018-08-28 19:29:36 +02:00
assert_eq_dbg(
r#"[]"#,
&diagnostics,
);
}
2018-08-21 17:30:10 +02:00
#[test]
fn test_resolve_parent_module() {
2018-09-10 11:57:40 +02:00
let snap = analysis(&[
("/lib.rs", "mod foo;"),
("/foo.rs", ""),
]);
2018-08-21 17:30:10 +02:00
let symbols = snap.parent_module(FileId(2));
assert_eq_dbg(
r#"[(FileId(1), FileSymbol { name: "foo", node_range: [0; 8), kind: MODULE })]"#,
&symbols,
);
}
2018-08-31 18:14:08 +02:00
#[test]
fn test_resolve_crate_root() {
2018-09-10 11:57:40 +02:00
let mut host = analysis_host(&[
("/lib.rs", "mod foo;"),
("/foo.rs", ""),
]);
let snap = host.analysis();
2018-09-02 15:36:03 +02:00
assert!(snap.crate_for(FileId(2)).is_empty());
2018-08-31 18:14:08 +02:00
let crate_graph = CrateGraph {
crate_roots: {
let mut m = FxHashMap::default();
2018-08-31 18:14:08 +02:00
m.insert(CrateId(1), FileId(1));
m
},
};
2018-09-10 11:57:40 +02:00
host.set_crate_graph(crate_graph);
let snap = host.analysis();
2018-08-31 18:14:08 +02:00
assert_eq!(
2018-09-02 15:36:03 +02:00
snap.crate_for(FileId(2)),
2018-08-31 18:14:08 +02:00
vec![CrateId(1)],
);
}