rust/crates/ra_hir/src/module/nameres/tests.rs

129 lines
3.0 KiB
Rust
Raw Normal View History

2018-12-09 03:48:55 -06:00
use std::sync::Arc;
use salsa::Database;
2018-12-09 04:49:54 -06:00
use ra_db::{FilesDatabase, CrateGraph};
2018-12-09 03:48:55 -06:00
use ra_syntax::SmolStr;
2018-12-19 03:40:41 -06:00
use relative_path::RelativePath;
2018-12-09 03:48:55 -06:00
use crate::{
self as hir,
db::HirDatabase,
mock::MockDatabase,
};
fn item_map(fixture: &str) -> (Arc<hir::ItemMap>, hir::ModuleId) {
let (db, pos) = MockDatabase::with_position(fixture);
let source_root = db.file_source_root(pos.file_id);
let module = hir::source_binder::module_from_position(&db, pos)
.unwrap()
.unwrap();
let module_id = module.module_id;
(db.item_map(source_root).unwrap(), module_id)
}
#[test]
2018-12-09 04:49:54 -06:00
fn item_map_smoke_test() {
2018-12-09 03:48:55 -06:00
let (item_map, module_id) = item_map(
"
//- /lib.rs
mod foo;
use crate::foo::bar::Baz;
<|>
//- /foo/mod.rs
pub mod bar;
//- /foo/bar.rs
pub struct Baz;
",
);
let name = SmolStr::from("Baz");
let resolution = &item_map.per_module[&module_id].items[&name];
assert!(resolution.def_id.is_some());
}
2018-12-09 04:49:54 -06:00
#[test]
fn item_map_across_crates() {
2018-12-19 03:40:41 -06:00
let (mut db, sr) = MockDatabase::with_files(
2018-12-09 04:49:54 -06:00
"
//- /main.rs
use test_crate::Baz;
//- /lib.rs
pub struct Baz;
",
);
2018-12-19 03:40:41 -06:00
let main_id = sr.files[RelativePath::new("/main.rs")];
let lib_id = sr.files[RelativePath::new("/lib.rs")];
2018-12-09 04:49:54 -06:00
let mut crate_graph = CrateGraph::default();
let main_crate = crate_graph.add_crate_root(main_id);
let lib_crate = crate_graph.add_crate_root(lib_id);
crate_graph.add_dep(main_crate, "test_crate".into(), lib_crate);
db.set_crate_graph(crate_graph);
let source_root = db.file_source_root(main_id);
let module = hir::source_binder::module_from_file_id(&db, main_id)
.unwrap()
.unwrap();
let module_id = module.module_id;
let item_map = db.item_map(source_root).unwrap();
let name = SmolStr::from("Baz");
let resolution = &item_map.per_module[&module_id].items[&name];
assert!(resolution.def_id.is_some());
}
2018-12-09 03:48:55 -06:00
#[test]
fn typing_inside_a_function_should_not_invalidate_item_map() {
let (mut db, pos) = MockDatabase::with_position(
"
//- /lib.rs
mod foo;<|>
use crate::foo::bar::Baz;
fn foo() -> i32 {
1 + 1
}
//- /foo/mod.rs
pub mod bar;
//- /foo/bar.rs
pub struct Baz;
",
);
let source_root = db.file_source_root(pos.file_id);
{
let events = db.log_executed(|| {
db.item_map(source_root).unwrap();
});
assert!(format!("{:?}", events).contains("item_map"))
}
let new_text = "
mod foo;
use crate::foo::bar::Baz;
fn foo() -> i32 { 92 }
"
.to_string();
db.query_mut(ra_db::FileTextQuery)
.set(pos.file_id, Arc::new(new_text));
{
let events = db.log_executed(|| {
db.item_map(source_root).unwrap();
});
assert!(
!format!("{:?}", events).contains("_item_map"),
"{:#?}",
events
)
}
}