rust/crates/libanalysis/tests/tests.rs

97 lines
2.8 KiB
Rust
Raw Normal View History

2018-08-17 15:04:34 +02:00
extern crate libanalysis;
2018-08-28 17:22:52 +02:00
extern crate relative_path;
2018-08-25 13:26:34 +02:00
extern crate test_utils;
2018-08-17 15:04:34 +02:00
2018-08-28 17:22:52 +02:00
use std::path::{Path};
2018-08-17 15:04:34 +02:00
2018-08-28 17:22:52 +02:00
use relative_path::RelativePath;
use libanalysis::{WorldState, FileId, FileResolver};
2018-08-25 13:26:34 +02:00
use test_utils::assert_eq_dbg;
2018-08-17 15:04:34 +02:00
2018-08-28 17:22:52 +02:00
struct FileMap(&'static [(u32, &'static str)]);
impl FileMap {
fn path(&self, id: FileId) -> &'static Path {
let s = self.0.iter()
.find(|it| it.0 == id.0)
.unwrap()
.1;
Path::new(s)
}
}
impl FileResolver for FileMap {
fn file_stem(&self, id: FileId) -> String {
self.path(id).file_stem().unwrap().to_str().unwrap().to_string()
}
fn resolve(&self, id: FileId, rel: &RelativePath) -> Option<FileId> {
let path = rel.to_path(self.path(id));
let path = path.to_str().unwrap();
let path = RelativePath::new(&path[1..]).normalize();
let &(id, _) = self.0.iter()
.find(|it| path == RelativePath::new(&it.1[1..]).normalize())?;
Some(FileId(id))
}
}
2018-08-17 15:04:34 +02:00
#[test]
fn test_resolve_module() {
let mut world = WorldState::new();
world.change_file(FileId(1), Some("mod foo;".to_string()));
world.change_file(FileId(2), Some("".to_string()));
2018-08-28 17:22:52 +02:00
let snap = world.snapshot(FileMap(&[
(1, "/lib.rs"),
(2, "/foo.rs"),
]));
2018-08-17 15:04:34 +02:00
let symbols = snap.approximately_resolve_symbol(FileId(1), 4.into())
.unwrap();
assert_eq_dbg(
r#"[(FileId(2), FileSymbol { name: "foo", node_range: [0; 0), kind: MODULE })]"#,
&symbols,
);
2018-08-28 17:22:52 +02:00
let snap = world.snapshot(FileMap(&[
(1, "/lib.rs"),
(2, "/foo/mod.rs")
]));
2018-08-17 15:04:34 +02:00
let symbols = snap.approximately_resolve_symbol(FileId(1), 4.into())
.unwrap();
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 mut world = WorldState::new();
world.change_file(FileId(1), Some("mod foo;".to_string()));
2018-08-28 17:22:52 +02:00
let snap = world.snapshot(FileMap(&[(1, "/lib.rs")]));
2018-08-27 19:58:38 +02:00
let diagnostics = snap.diagnostics(FileId(1)).unwrap();
assert_eq_dbg(
2018-08-27 20:10:02 +02:00
r#"[(Diagnostic { range: [4; 7), msg: "unresolved module" },
2018-08-28 17:22:52 +02:00
Some(QuickFix { fs_ops: [CreateFile { anchor: FileId(1), path: "../foo.rs" }] }))]"#,
2018-08-27 19:58:38 +02:00
&diagnostics,
);
}
2018-08-21 17:30:10 +02:00
#[test]
fn test_resolve_parent_module() {
let mut world = WorldState::new();
world.change_file(FileId(1), Some("mod foo;".to_string()));
world.change_file(FileId(2), Some("".to_string()));
2018-08-28 17:22:52 +02:00
let snap = world.snapshot(FileMap(&[
(1, "/lib.rs"),
(2, "/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,
);
}