rust/crates/hir_ty/src/tests.rs

497 lines
16 KiB
Rust
Raw Normal View History

mod never_type;
mod coercion;
2019-12-03 06:38:54 -06:00
mod regression;
mod simple;
mod patterns;
mod traits;
mod method_resolution;
mod macros;
mod display_source_code;
mod incremental;
use std::{collections::HashMap, env, sync::Arc};
2018-12-20 14:56:28 -06:00
2020-08-13 09:25:38 -05:00
use base_db::{fixture::WithFixture, FileRange, SourceDatabase, SourceDatabaseExt};
2020-08-21 06:19:31 -05:00
use expect_test::Expect;
2019-11-27 08:46:02 -06:00
use hir_def::{
body::{Body, BodySourceMap, SyntheticSyntax},
2020-03-06 07:44:44 -06:00
child_by_source::ChildBySource,
db::DefDatabase,
item_scope::ItemScope,
keys,
2021-01-18 13:18:05 -06:00
nameres::DefMap,
src::HasSource,
2020-06-29 10:22:47 -05:00
AssocItemId, DefWithBodyId, LocalModuleId, Lookup, ModuleDefId,
2019-11-27 08:46:02 -06:00
};
2020-04-23 14:23:36 -05:00
use hir_expand::{db::AstDatabase, InFile};
2020-11-10 20:11:40 -06:00
use once_cell::race::OnceBool;
use stdx::format_to;
2020-08-12 11:26:51 -05:00
use syntax::{
algo,
ast::{self, AstNode, NameOwner},
2020-04-23 14:23:36 -05:00
SyntaxNode,
};
2020-08-18 10:20:10 -05:00
use tracing_subscriber::{layer::SubscriberExt, EnvFilter, Registry};
use tracing_tree::HierarchicalLayer;
2018-12-20 14:56:28 -06:00
2020-04-23 14:23:36 -05:00
use crate::{
db::HirDatabase, display::HirDisplay, infer::TypeMismatch, test_db::TestDB, InferenceResult, Ty,
};
2018-12-20 14:56:28 -06:00
// These tests compare the inference results for all expressions in a file
2020-07-21 05:11:02 -05:00
// against snapshots of the expected results using expect. Use
2020-08-13 09:35:29 -05:00
// `env UPDATE_EXPECT=1 cargo test -p hir_ty` to update the snapshots.
2020-08-18 10:20:10 -05:00
fn setup_tracing() -> Option<tracing::subscriber::DefaultGuard> {
2020-11-10 20:11:40 -06:00
static ENABLE: OnceBool = OnceBool::new();
if !ENABLE.get_or_init(|| env::var("CHALK_DEBUG").is_ok()) {
2020-08-18 10:20:10 -05:00
return None;
}
2020-07-10 11:30:32 -05:00
let filter = EnvFilter::from_env("CHALK_DEBUG");
2020-07-12 08:26:02 -05:00
let layer = HierarchicalLayer::default()
.with_indent_lines(true)
.with_ansi(false)
.with_indent_amount(2)
.with_writer(std::io::stderr);
2020-07-10 11:30:32 -05:00
let subscriber = Registry::default().with(filter).with(layer);
2020-08-18 10:20:10 -05:00
Some(tracing::subscriber::set_default(subscriber))
2020-07-10 11:30:32 -05:00
}
fn check_types(ra_fixture: &str) {
2020-06-29 10:22:47 -05:00
check_types_impl(ra_fixture, false)
}
fn check_types_source_code(ra_fixture: &str) {
check_types_impl(ra_fixture, true)
}
fn check_types_impl(ra_fixture: &str, display_source: bool) {
2020-07-10 11:30:32 -05:00
let _tracing = setup_tracing();
let db = TestDB::with_files(ra_fixture);
let mut checked_one = false;
2020-06-30 05:14:16 -05:00
for (file_id, annotations) in db.extract_annotations() {
2020-06-29 10:22:47 -05:00
for (range, expected) in annotations {
let ty = type_at_range(&db, FileRange { file_id, range });
let actual = if display_source {
let module = db.module_for_file(file_id);
ty.display_source_code(&db, module).unwrap()
} else {
ty.display_test(&db).to_string()
2020-06-29 10:22:47 -05:00
};
assert_eq!(expected, actual);
checked_one = true;
}
}
assert!(checked_one, "no `//^` annotations found");
}
fn check_no_mismatches(ra_fixture: &str) {
check_mismatches_impl(ra_fixture, true)
}
#[allow(unused)]
fn check_mismatches(ra_fixture: &str) {
check_mismatches_impl(ra_fixture, false)
}
fn check_mismatches_impl(ra_fixture: &str, allow_none: bool) {
let _tracing = setup_tracing();
let (db, file_id) = TestDB::with_single_file(ra_fixture);
let module = db.module_for_file(file_id);
let def_map = module.def_map(&db);
let mut defs: Vec<DefWithBodyId> = Vec::new();
visit_module(&db, &def_map, module.local_id, &mut |it| defs.push(it));
defs.sort_by_key(|def| match def {
DefWithBodyId::FunctionId(it) => {
let loc = it.lookup(&db);
loc.source(&db).value.syntax().text_range().start()
}
DefWithBodyId::ConstId(it) => {
let loc = it.lookup(&db);
loc.source(&db).value.syntax().text_range().start()
}
DefWithBodyId::StaticId(it) => {
let loc = it.lookup(&db);
loc.source(&db).value.syntax().text_range().start()
}
});
let mut mismatches = HashMap::new();
let mut push_mismatch = |src_ptr: InFile<SyntaxNode>, mismatch: TypeMismatch| {
let range = src_ptr.value.text_range();
if src_ptr.file_id.call_node(&db).is_some() {
panic!("type mismatch in macro expansion");
}
let file_range = FileRange { file_id: src_ptr.file_id.original_file(&db), range };
let actual = format!(
"expected {}, got {}",
mismatch.expected.display_test(&db),
mismatch.actual.display_test(&db)
);
mismatches.insert(file_range, actual);
};
for def in defs {
let (_body, body_source_map) = db.body_with_source_map(def);
let inference_result = db.infer(def);
for (pat, mismatch) in inference_result.pat_type_mismatches() {
let syntax_ptr = match body_source_map.pat_syntax(pat) {
Ok(sp) => {
let root = db.parse_or_expand(sp.file_id).unwrap();
sp.map(|ptr| {
ptr.either(
|it| it.to_node(&root).syntax().clone(),
|it| it.to_node(&root).syntax().clone(),
)
})
}
Err(SyntheticSyntax) => continue,
};
push_mismatch(syntax_ptr, mismatch.clone());
}
for (expr, mismatch) in inference_result.expr_type_mismatches() {
let node = match body_source_map.expr_syntax(expr) {
Ok(sp) => {
let root = db.parse_or_expand(sp.file_id).unwrap();
sp.map(|ptr| ptr.to_node(&root).syntax().clone())
}
Err(SyntheticSyntax) => continue,
};
push_mismatch(node, mismatch.clone());
}
}
let mut checked_one = false;
for (file_id, annotations) in db.extract_annotations() {
for (range, expected) in annotations {
let file_range = FileRange { file_id, range };
if let Some(mismatch) = mismatches.remove(&file_range) {
assert_eq!(mismatch, expected);
} else {
assert!(false, "Expected mismatch not encountered: {}\n", expected);
}
checked_one = true;
}
}
let mut buf = String::new();
for (range, mismatch) in mismatches {
format_to!(buf, "{:?}: {}\n", range.range, mismatch,);
}
assert!(buf.is_empty(), "Unexpected type mismatches:\n{}", buf);
assert!(checked_one || allow_none, "no `//^` annotations found");
}
2020-06-29 10:22:47 -05:00
fn type_at_range(db: &TestDB, pos: FileRange) -> Ty {
2019-05-28 10:07:39 -05:00
let file = db.parse(pos.file_id).ok().unwrap();
2020-06-29 10:22:47 -05:00
let expr = algo::find_node_at_range::<ast::Expr>(file.syntax(), pos.range).unwrap();
2020-07-30 07:51:08 -05:00
let fn_def = expr.syntax().ancestors().find_map(ast::Fn::cast).unwrap();
2019-11-27 08:46:02 -06:00
let module = db.module_for_file(pos.file_id);
let func = *module.child_by_source(db)[keys::FUNCTION]
.get(&InFile::new(pos.file_id.into(), fn_def))
.unwrap();
2019-12-05 14:17:17 -06:00
let (_body, source_map) = db.body_with_source_map(func.into());
if let Some(expr_id) = source_map.node_expr(InFile::new(pos.file_id.into(), &expr)) {
let infer = db.infer(func.into());
2020-06-29 10:22:47 -05:00
return infer[expr_id].clone();
2019-11-27 08:46:02 -06:00
}
panic!("Can't find expression")
}
2020-02-27 09:05:35 -06:00
fn infer(ra_fixture: &str) -> String {
infer_with_mismatches(ra_fixture, false)
}
fn infer_with_mismatches(content: &str, include_mismatches: bool) -> String {
2020-07-10 11:30:32 -05:00
let _tracing = setup_tracing();
let (db, file_id) = TestDB::with_single_file(content);
2020-03-28 05:20:34 -05:00
let mut buf = String::new();
let mut infer_def = |inference_result: Arc<InferenceResult>,
body_source_map: Arc<BodySourceMap>| {
2020-04-23 14:23:36 -05:00
let mut types: Vec<(InFile<SyntaxNode>, &Ty)> = Vec::new();
let mut mismatches: Vec<(InFile<SyntaxNode>, &TypeMismatch)> = Vec::new();
2019-01-06 16:57:39 -06:00
for (pat, ty) in inference_result.type_of_pat.iter() {
2019-03-02 06:14:37 -06:00
let syntax_ptr = match body_source_map.pat_syntax(pat) {
2020-03-06 07:44:44 -06:00
Ok(sp) => {
2020-04-23 14:23:36 -05:00
let root = db.parse_or_expand(sp.file_id).unwrap();
sp.map(|ptr| {
ptr.either(
|it| it.to_node(&root).syntax().clone(),
|it| it.to_node(&root).syntax().clone(),
)
})
}
2020-03-06 07:44:44 -06:00
Err(SyntheticSyntax) => continue,
};
types.push((syntax_ptr.clone(), ty));
if let Some(mismatch) = inference_result.type_mismatch_for_pat(pat) {
mismatches.push((syntax_ptr, mismatch));
}
}
2019-01-06 16:57:39 -06:00
for (expr, ty) in inference_result.type_of_expr.iter() {
2020-04-23 14:23:36 -05:00
let node = match body_source_map.expr_syntax(expr) {
Ok(sp) => {
let root = db.parse_or_expand(sp.file_id).unwrap();
sp.map(|ptr| ptr.to_node(&root).syntax().clone())
}
2020-03-06 07:44:44 -06:00
Err(SyntheticSyntax) => continue,
};
2020-04-23 14:23:36 -05:00
types.push((node.clone(), ty));
if let Some(mismatch) = inference_result.type_mismatch_for_expr(expr) {
2020-04-23 14:23:36 -05:00
mismatches.push((node, mismatch));
}
}
// sort ranges for consistency
2020-04-23 14:23:36 -05:00
types.sort_by_key(|(node, _)| {
let range = node.value.text_range();
(range.start(), range.end())
2019-11-20 00:40:36 -06:00
});
2020-04-23 14:23:36 -05:00
for (node, ty) in &types {
let (range, text) = if let Some(self_param) = ast::SelfParam::cast(node.value.clone()) {
(self_param.name().unwrap().syntax().text_range(), "self".to_string())
2019-03-30 05:25:53 -05:00
} else {
2020-04-23 14:23:36 -05:00
(node.value.text_range(), node.value.text().to_string().replace("\n", " "))
2019-03-30 05:25:53 -05:00
};
2020-04-23 14:23:36 -05:00
let macro_prefix = if node.file_id != file_id.into() { "!" } else { "" };
2020-03-28 05:20:34 -05:00
format_to!(
buf,
2020-04-24 16:40:41 -05:00
"{}{:?} '{}': {}\n",
macro_prefix,
range,
ellipsize(text, 15),
ty.display_test(&db)
2020-03-28 05:20:34 -05:00
);
2018-12-20 14:56:28 -06:00
}
if include_mismatches {
2020-04-23 14:23:36 -05:00
mismatches.sort_by_key(|(node, _)| {
let range = node.value.text_range();
(range.start(), range.end())
});
for (src_ptr, mismatch) in &mismatches {
2020-04-23 14:23:36 -05:00
let range = src_ptr.value.text_range();
let macro_prefix = if src_ptr.file_id != file_id.into() { "!" } else { "" };
2020-03-28 05:20:34 -05:00
format_to!(
buf,
2020-04-24 16:40:41 -05:00
"{}{:?}: expected {}, got {}\n",
macro_prefix,
range,
mismatch.expected.display_test(&db),
mismatch.actual.display_test(&db),
2020-03-28 05:20:34 -05:00
);
}
}
};
2019-11-27 08:46:02 -06:00
let module = db.module_for_file(file_id);
let def_map = module.def_map(&db);
2019-11-27 08:46:02 -06:00
let mut defs: Vec<DefWithBodyId> = Vec::new();
visit_module(&db, &def_map, module.local_id, &mut |it| defs.push(it));
2019-11-27 08:46:02 -06:00
defs.sort_by_key(|def| match def {
DefWithBodyId::FunctionId(it) => {
2020-06-22 08:07:06 -05:00
let loc = it.lookup(&db);
loc.source(&db).value.syntax().text_range().start()
2019-11-27 08:46:02 -06:00
}
DefWithBodyId::ConstId(it) => {
2020-06-22 08:07:06 -05:00
let loc = it.lookup(&db);
loc.source(&db).value.syntax().text_range().start()
2019-11-27 08:46:02 -06:00
}
DefWithBodyId::StaticId(it) => {
2020-06-22 08:07:06 -05:00
let loc = it.lookup(&db);
loc.source(&db).value.syntax().text_range().start()
2019-04-12 16:56:57 -05:00
}
2019-11-27 08:46:02 -06:00
});
for def in defs {
let (_body, source_map) = db.body_with_source_map(def);
let infer = db.infer(def);
infer_def(infer, source_map);
}
2020-03-28 05:20:34 -05:00
buf.truncate(buf.trim_end().len());
buf
}
2019-11-27 08:46:02 -06:00
fn visit_module(
db: &TestDB,
2021-01-18 13:18:05 -06:00
crate_def_map: &DefMap,
2019-11-27 08:46:02 -06:00
module_id: LocalModuleId,
cb: &mut dyn FnMut(DefWithBodyId),
) {
visit_scope(db, crate_def_map, &crate_def_map[module_id].scope, cb);
2019-12-20 08:58:20 -06:00
for impl_id in crate_def_map[module_id].scope.impls() {
2019-11-27 08:46:02 -06:00
let impl_data = db.impl_data(impl_id);
for &item in impl_data.items.iter() {
match item {
AssocItemId::FunctionId(it) => {
let def = it.into();
cb(def);
let body = db.body(def);
visit_body(db, &body, cb);
}
AssocItemId::ConstId(it) => {
let def = it.into();
cb(def);
let body = db.body(def);
visit_body(db, &body, cb);
}
2019-11-27 08:46:02 -06:00
AssocItemId::TypeAliasId(_) => (),
}
}
}
fn visit_scope(
db: &TestDB,
2021-01-18 13:18:05 -06:00
crate_def_map: &DefMap,
scope: &ItemScope,
cb: &mut dyn FnMut(DefWithBodyId),
) {
for decl in scope.declarations() {
match decl {
ModuleDefId::FunctionId(it) => {
let def = it.into();
cb(def);
let body = db.body(def);
visit_body(db, &body, cb);
}
ModuleDefId::ConstId(it) => {
let def = it.into();
cb(def);
let body = db.body(def);
visit_body(db, &body, cb);
}
ModuleDefId::StaticId(it) => {
let def = it.into();
cb(def);
let body = db.body(def);
visit_body(db, &body, cb);
}
ModuleDefId::TraitId(it) => {
let trait_data = db.trait_data(it);
for &(_, item) in trait_data.items.iter() {
match item {
AssocItemId::FunctionId(it) => cb(it.into()),
AssocItemId::ConstId(it) => cb(it.into()),
AssocItemId::TypeAliasId(_) => (),
}
}
}
ModuleDefId::ModuleId(it) => visit_module(db, crate_def_map, it.local_id, cb),
_ => (),
}
}
}
fn visit_body(db: &TestDB, body: &Body, cb: &mut dyn FnMut(DefWithBodyId)) {
for (_, def_map) in body.blocks(db) {
for (mod_id, _) in def_map.modules() {
visit_module(db, &def_map, mod_id, cb);
}
}
}
2019-11-27 08:46:02 -06:00
}
fn ellipsize(mut text: String, max_len: usize) -> String {
if text.len() <= max_len {
return text;
}
let ellipsis = "...";
let e_len = ellipsis.len();
let mut prefix_len = (max_len - e_len) / 2;
while !text.is_char_boundary(prefix_len) {
prefix_len += 1;
}
let mut suffix_len = max_len - e_len - prefix_len;
while !text.is_char_boundary(text.len() - suffix_len) {
suffix_len += 1;
}
text.replace_range(prefix_len..text.len() - suffix_len, ellipsis);
text
2018-12-20 14:56:28 -06:00
}
2020-07-20 11:38:52 -05:00
fn check_infer(ra_fixture: &str, expect: Expect) {
2020-07-20 14:01:09 -05:00
let mut actual = infer(ra_fixture);
2020-07-20 11:38:52 -05:00
actual.push('\n');
expect.assert_eq(&actual);
}
fn check_infer_with_mismatches(ra_fixture: &str, expect: Expect) {
let mut actual = infer_with_mismatches(ra_fixture, true);
actual.push('\n');
expect.assert_eq(&actual);
}
2021-03-20 09:26:42 -05:00
#[test]
fn salsa_bug() {
let (mut db, pos) = TestDB::with_position(
"
//- /lib.rs
trait Index {
type Output;
}
type Key<S: UnificationStoreBase> = <S as UnificationStoreBase>::Key;
pub trait UnificationStoreBase: Index<Output = Key<Self>> {
type Key;
fn len(&self) -> usize;
}
pub trait UnificationStoreMut: UnificationStoreBase {
fn push(&mut self, value: Self::Key);
}
fn main() {
let x = 1;
x.push(1);$0
}
",
);
let module = db.module_for_file(pos.file_id);
let crate_def_map = module.def_map(&db);
visit_module(&db, &crate_def_map, module.local_id, &mut |def| {
db.infer(def);
});
let new_text = "
//- /lib.rs
trait Index {
type Output;
}
type Key<S: UnificationStoreBase> = <S as UnificationStoreBase>::Key;
pub trait UnificationStoreBase: Index<Output = Key<Self>> {
type Key;
fn len(&self) -> usize;
}
pub trait UnificationStoreMut: UnificationStoreBase {
fn push(&mut self, value: Self::Key);
}
fn main() {
let x = 1;
x.push(1);
}
"
.to_string();
db.set_file_text(pos.file_id, Arc::new(new_text));
let module = db.module_for_file(pos.file_id);
let crate_def_map = module.def_map(&db);
visit_module(&db, &crate_def_map, module.local_id, &mut |def| {
db.infer(def);
});
}