Add test for extern crate renames

This commit is contained in:
Florian Diebold 2019-02-02 00:36:48 +01:00
parent e163c908ac
commit 397d84ee29
1 changed files with 42 additions and 0 deletions

View File

@ -334,6 +334,48 @@ fn item_map_across_crates() {
);
}
#[test]
fn extern_crate_rename() {
let (mut db, sr) = MockDatabase::with_files(
"
//- /main.rs
extern crate alloc as alloc_crate;
mod alloc;
use alloc_crate::Arc;
//- /lib.rs
struct Arc;
",
);
let main_id = sr.files[RelativePath::new("/main.rs")];
let lib_id = sr.files[RelativePath::new("/lib.rs")];
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, "alloc".into(), lib_crate)
.unwrap();
db.set_crate_graph(Arc::new(crate_graph));
let module = crate::source_binder::module_from_file_id(&db, main_id).unwrap();
let krate = module.krate(&db).unwrap();
let item_map = db.item_map(krate);
check_module_item_map(
&item_map,
module.module_id,
"
Arc: t v
alloc: t
alloc_crate: t
",
);
}
#[test]
fn import_across_source_roots() {
let (mut db, sr) = MockDatabase::with_files(