2018-12-23 11:05:54 +00:00
|
|
|
use std::fmt::Write;
|
2018-12-23 11:15:46 +00:00
|
|
|
use std::path::{PathBuf};
|
2018-12-23 16:13:11 +00:00
|
|
|
use std::sync::Once;
|
|
|
|
|
|
|
|
use flexi_logger::Logger;
|
2018-12-20 20:56:28 +00:00
|
|
|
|
2018-12-23 11:15:46 +00:00
|
|
|
use ra_db::{SyntaxDatabase};
|
|
|
|
use ra_syntax::ast::{self, AstNode};
|
2018-12-23 11:05:54 +00:00
|
|
|
use test_utils::{project_dir, dir_tests};
|
2018-12-20 20:56:28 +00:00
|
|
|
|
|
|
|
use crate::{
|
2018-12-23 11:15:46 +00:00
|
|
|
source_binder,
|
2018-12-20 20:56:28 +00:00
|
|
|
mock::MockDatabase,
|
|
|
|
};
|
|
|
|
|
2018-12-23 11:05:54 +00:00
|
|
|
fn infer_file(content: &str) -> String {
|
2018-12-23 11:15:46 +00:00
|
|
|
let (db, _, file_id) = MockDatabase::with_single_file(content);
|
2018-12-23 11:05:54 +00:00
|
|
|
let source_file = db.source_file(file_id);
|
|
|
|
let mut acc = String::new();
|
2018-12-23 11:15:46 +00:00
|
|
|
for fn_def in source_file
|
|
|
|
.syntax()
|
|
|
|
.descendants()
|
|
|
|
.filter_map(ast::FnDef::cast)
|
|
|
|
{
|
|
|
|
let func = source_binder::function_from_source(&db, file_id, fn_def)
|
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
2018-12-23 16:13:11 +00:00
|
|
|
let inference_result = func.infer(&db).unwrap();
|
2018-12-24 14:19:49 +00:00
|
|
|
for (syntax_ptr, ty) in &inference_result.type_of {
|
2018-12-23 11:05:54 +00:00
|
|
|
let node = syntax_ptr.resolve(&source_file);
|
2018-12-23 11:15:46 +00:00
|
|
|
write!(
|
|
|
|
acc,
|
|
|
|
"{} '{}': {}\n",
|
|
|
|
syntax_ptr.range(),
|
|
|
|
ellipsize(node.text().to_string().replace("\n", " "), 15),
|
|
|
|
ty
|
|
|
|
)
|
|
|
|
.unwrap();
|
2018-12-20 20:56:28 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-23 11:05:54 +00:00
|
|
|
acc
|
|
|
|
}
|
|
|
|
|
|
|
|
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 20:56:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2018-12-23 11:05:54 +00:00
|
|
|
pub fn infer_tests() {
|
2018-12-23 16:13:11 +00:00
|
|
|
static INIT: Once = Once::new();
|
|
|
|
INIT.call_once(|| Logger::with_env().start().unwrap());
|
2018-12-23 11:15:46 +00:00
|
|
|
dir_tests(&test_data_dir(), &["."], |text, _path| infer_file(text));
|
2018-12-23 11:05:54 +00:00
|
|
|
}
|
2018-12-20 20:56:28 +00:00
|
|
|
|
2018-12-23 11:05:54 +00:00
|
|
|
fn test_data_dir() -> PathBuf {
|
|
|
|
project_dir().join("crates/ra_hir/src/ty/tests/data")
|
2018-12-20 20:56:28 +00:00
|
|
|
}
|