rust-analyzer/crates/libanalysis/tests/tests.rs

151 lines
4.1 KiB
Rust
Raw Normal View History

2018-08-17 13:04:34 +00:00
extern crate libanalysis;
2018-08-28 15:22:52 +00:00
extern crate relative_path;
2018-08-25 11:26:34 +00:00
extern crate test_utils;
2018-08-17 13:04:34 +00:00
2018-08-31 16:14:08 +00:00
use std::{
collections::HashMap,
};
2018-08-17 13:04:34 +00:00
2018-09-05 17:22:52 +00:00
use relative_path::{RelativePath};
2018-08-31 16:14:08 +00:00
use libanalysis::{AnalysisHost, FileId, FileResolver, JobHandle, CrateGraph, CrateId};
2018-08-25 11:26:34 +00:00
use test_utils::assert_eq_dbg;
2018-08-17 13:04:34 +00:00
2018-08-28 15:22:52 +00:00
struct FileMap(&'static [(u32, &'static str)]);
impl FileMap {
2018-09-05 17:22:52 +00:00
fn iter<'a>(&'a self) -> impl Iterator<Item=(FileId, &'a RelativePath)> + 'a {
self.0.iter().map(|&(id, path)| {
assert!(path.starts_with('/'));
(FileId(id), RelativePath::new(&path[1..]))
})
}
fn path(&self, id: FileId) -> &RelativePath {
self.iter()
.find(|&(it, _)| it == id)
2018-08-28 15:22:52 +00:00
.unwrap()
2018-09-05 17:22:52 +00:00
.1
2018-08-28 15:22:52 +00:00
}
}
impl FileResolver for FileMap {
fn file_stem(&self, id: FileId) -> String {
2018-09-05 17:22:52 +00:00
self.path(id).file_stem().unwrap().to_string()
2018-08-28 15:22:52 +00:00
}
fn resolve(&self, id: FileId, rel: &RelativePath) -> Option<FileId> {
2018-09-05 17:22:52 +00:00
let path = self.path(id).join(rel).normalize();
let id = self.iter().find(|&(_, p)| path == p)?.0;
Some(id)
2018-08-28 15:22:52 +00:00
}
}
2018-08-17 13:04:34 +00:00
#[test]
fn test_resolve_module() {
2018-08-30 10:12:49 +00:00
let mut world = AnalysisHost::new();
2018-08-17 13:04:34 +00:00
world.change_file(FileId(1), Some("mod foo;".to_string()));
world.change_file(FileId(2), Some("".to_string()));
2018-08-29 15:35:28 +00:00
let snap = world.analysis(FileMap(&[
2018-08-28 15:22:52 +00:00
(1, "/lib.rs"),
(2, "/foo.rs"),
]));
2018-08-31 09:13:02 +00:00
let (_handle, token) = JobHandle::new();
let symbols = snap.approximately_resolve_symbol(FileId(1), 4.into(), &token);
2018-08-17 13:04:34 +00:00
assert_eq_dbg(
r#"[(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]"#,
&symbols,
);
2018-08-29 15:35:28 +00:00
let snap = world.analysis(FileMap(&[
2018-08-28 15:22:52 +00:00
(1, "/lib.rs"),
(2, "/foo/mod.rs")
]));
2018-08-31 09:13:02 +00:00
let symbols = snap.approximately_resolve_symbol(FileId(1), 4.into(), &token);
2018-08-17 13:04:34 +00:00
assert_eq_dbg(
r#"[(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]"#,
&symbols,
);
}
2018-08-21 15:30:10 +00:00
2018-08-27 17:58:38 +00:00
#[test]
fn test_unresolved_module_diagnostic() {
2018-08-30 10:12:49 +00:00
let mut world = AnalysisHost::new();
2018-08-27 17:58:38 +00:00
world.change_file(FileId(1), Some("mod foo;".to_string()));
2018-08-29 15:35:28 +00:00
let snap = world.analysis(FileMap(&[(1, "/lib.rs")]));
let diagnostics = snap.diagnostics(FileId(1));
2018-08-27 17:58:38 +00:00
assert_eq_dbg(
2018-08-29 15:35:28 +00: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 17:58:38 +00:00
&diagnostics,
);
}
2018-08-28 17:29:36 +00:00
#[test]
fn test_unresolved_module_diagnostic_no_diag_for_inline_mode() {
2018-08-30 10:12:49 +00:00
let mut world = AnalysisHost::new();
2018-08-28 17:29:36 +00:00
world.change_file(FileId(1), Some("mod foo {}".to_string()));
2018-08-29 15:35:28 +00:00
let snap = world.analysis(FileMap(&[(1, "/lib.rs")]));
let diagnostics = snap.diagnostics(FileId(1));
2018-08-28 17:29:36 +00:00
assert_eq_dbg(
r#"[]"#,
&diagnostics,
);
}
2018-08-21 15:30:10 +00:00
#[test]
fn test_resolve_parent_module() {
2018-08-30 10:12:49 +00:00
let mut world = AnalysisHost::new();
2018-08-21 15:30:10 +00:00
world.change_file(FileId(1), Some("mod foo;".to_string()));
world.change_file(FileId(2), Some("".to_string()));
2018-08-29 15:35:28 +00:00
let snap = world.analysis(FileMap(&[
2018-08-28 15:22:52 +00:00
(1, "/lib.rs"),
(2, "/foo.rs"),
]));
2018-08-21 15:30:10 +00: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 16:14:08 +00:00
#[test]
fn test_resolve_crate_root() {
let mut world = AnalysisHost::new();
world.change_file(FileId(1), Some("mod foo;".to_string()));
world.change_file(FileId(2), Some("".to_string()));
let snap = world.analysis(FileMap(&[
(1, "/lib.rs"),
(2, "/foo.rs"),
]));
2018-09-02 13:36:03 +00:00
assert!(snap.crate_for(FileId(2)).is_empty());
2018-08-31 16:14:08 +00:00
let crate_graph = CrateGraph {
crate_roots: {
let mut m = HashMap::new();
m.insert(CrateId(1), FileId(1));
m
},
};
world.set_crate_graph(crate_graph);
let snap = world.analysis(FileMap(&[
(1, "/lib.rs"),
(2, "/foo.rs"),
]));
assert_eq!(
2018-09-02 13:36:03 +00:00
snap.crate_for(FileId(2)),
2018-08-31 16:14:08 +00:00
vec![CrateId(1)],
);
}