mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-25 19:35:06 +00:00
Move hir tests to hit
This commit is contained in:
parent
95c0c8f398
commit
e89700f967
7 changed files with 330 additions and 142 deletions
|
@ -317,112 +317,3 @@ fn analysis_is_send() {
|
||||||
fn is_send<T: Send>() {}
|
fn is_send<T: Send>() {}
|
||||||
is_send::<Analysis>();
|
is_send::<Analysis>();
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: move to hir
|
|
||||||
#[cfg(test)]
|
|
||||||
mod hir_namres_tests {
|
|
||||||
use std::sync::Arc;
|
|
||||||
use ra_db::FilesDatabase;
|
|
||||||
use ra_syntax::SmolStr;
|
|
||||||
use hir::{self, db::HirDatabase};
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
AnalysisChange,
|
|
||||||
mock_analysis::{MockAnalysis, analysis_and_position},
|
|
||||||
};
|
|
||||||
|
|
||||||
fn item_map(fixture: &str) -> (Arc<hir::ItemMap>, hir::ModuleId) {
|
|
||||||
let (analysis, pos) = analysis_and_position(fixture);
|
|
||||||
let db = analysis.imp.db;
|
|
||||||
let source_root = db.file_source_root(pos.file_id);
|
|
||||||
let descr = hir::Module::guess_from_position(&*db, pos)
|
|
||||||
.unwrap()
|
|
||||||
.unwrap();
|
|
||||||
let module_id = descr.module_id;
|
|
||||||
(db.item_map(source_root).unwrap(), module_id)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_item_map() {
|
|
||||||
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());
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn typing_inside_a_function_should_not_invalidate_item_map() {
|
|
||||||
let mock_analysis = MockAnalysis::with_files(
|
|
||||||
"
|
|
||||||
//- /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 file_id = mock_analysis.id_of("/lib.rs");
|
|
||||||
let mut host = mock_analysis.analysis_host();
|
|
||||||
|
|
||||||
let source_root = host.analysis().imp.db.file_source_root(file_id);
|
|
||||||
|
|
||||||
{
|
|
||||||
let db = host.analysis().imp.db;
|
|
||||||
let events = db.log_executed(|| {
|
|
||||||
db.item_map(source_root).unwrap();
|
|
||||||
});
|
|
||||||
assert!(format!("{:?}", events).contains("item_map"))
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut change = AnalysisChange::new();
|
|
||||||
|
|
||||||
change.change_file(
|
|
||||||
file_id,
|
|
||||||
"
|
|
||||||
mod foo;
|
|
||||||
|
|
||||||
use crate::foo::bar::Baz;
|
|
||||||
|
|
||||||
fn foo() -> i32 { 92 }
|
|
||||||
"
|
|
||||||
.to_string(),
|
|
||||||
);
|
|
||||||
|
|
||||||
host.apply_change(change);
|
|
||||||
|
|
||||||
{
|
|
||||||
let db = host.analysis().imp.db;
|
|
||||||
let events = db.log_executed(|| {
|
|
||||||
db.item_map(source_root).unwrap();
|
|
||||||
});
|
|
||||||
assert!(
|
|
||||||
!format!("{:?}", events).contains("_item_map"),
|
|
||||||
"{:#?}",
|
|
||||||
events
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use relative_path::{RelativePath, RelativePathBuf};
|
use relative_path::{RelativePathBuf};
|
||||||
use test_utils::{extract_offset, parse_fixture, CURSOR_MARKER};
|
use test_utils::{extract_offset, parse_fixture, CURSOR_MARKER};
|
||||||
|
use ra_db::mock::FileMap;
|
||||||
|
|
||||||
use crate::{Analysis, AnalysisChange, AnalysisHost, FileId, FileResolver, FilePosition};
|
use crate::{Analysis, AnalysisChange, AnalysisHost, FileId, FilePosition};
|
||||||
|
|
||||||
/// Mock analysis is used in test to bootstrap an AnalysisHost/Analysis
|
/// Mock analysis is used in test to bootstrap an AnalysisHost/Analysis
|
||||||
/// from a set of in-memory files.
|
/// from a set of in-memory files.
|
||||||
|
@ -76,16 +77,15 @@ impl MockAnalysis {
|
||||||
}
|
}
|
||||||
pub fn analysis_host(self) -> AnalysisHost {
|
pub fn analysis_host(self) -> AnalysisHost {
|
||||||
let mut host = AnalysisHost::default();
|
let mut host = AnalysisHost::default();
|
||||||
let mut file_map = Vec::new();
|
let mut file_map = FileMap::default();
|
||||||
let mut change = AnalysisChange::new();
|
let mut change = AnalysisChange::new();
|
||||||
for (id, (path, contents)) in self.files.into_iter().enumerate() {
|
for (path, contents) in self.files.into_iter() {
|
||||||
let file_id = FileId((id + 1) as u32);
|
|
||||||
assert!(path.starts_with('/'));
|
assert!(path.starts_with('/'));
|
||||||
let path = RelativePathBuf::from_path(&path[1..]).unwrap();
|
let path = RelativePathBuf::from_path(&path[1..]).unwrap();
|
||||||
|
let file_id = file_map.add(path);
|
||||||
change.add_file(file_id, contents);
|
change.add_file(file_id, contents);
|
||||||
file_map.push((file_id, path));
|
|
||||||
}
|
}
|
||||||
change.set_file_resolver(Arc::new(FileMap(file_map)));
|
change.set_file_resolver(Arc::new(file_map));
|
||||||
host.apply_change(change);
|
host.apply_change(change);
|
||||||
host
|
host
|
||||||
}
|
}
|
||||||
|
@ -113,29 +113,3 @@ pub fn single_file_with_position(code: &str) -> (Analysis, FilePosition) {
|
||||||
let pos = mock.add_file_with_position("/main.rs", code);
|
let pos = mock.add_file_with_position("/main.rs", code);
|
||||||
(mock.analysis(), pos)
|
(mock.analysis(), pos)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
struct FileMap(Vec<(FileId, RelativePathBuf)>);
|
|
||||||
|
|
||||||
impl FileMap {
|
|
||||||
fn iter<'a>(&'a self) -> impl Iterator<Item = (FileId, &'a RelativePath)> + 'a {
|
|
||||||
self.0
|
|
||||||
.iter()
|
|
||||||
.map(|(id, path)| (*id, path.as_relative_path()))
|
|
||||||
}
|
|
||||||
|
|
||||||
fn path(&self, id: FileId) -> &RelativePath {
|
|
||||||
self.iter().find(|&(it, _)| it == id).unwrap().1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FileResolver for FileMap {
|
|
||||||
fn file_stem(&self, id: FileId) -> String {
|
|
||||||
self.path(id).file_stem().unwrap().to_string()
|
|
||||||
}
|
|
||||||
fn resolve(&self, id: FileId, rel: &RelativePath) -> Option<FileId> {
|
|
||||||
let path = self.path(id).join(rel).normalize();
|
|
||||||
let id = self.iter().find(|&(_, p)| path == p)?.0;
|
|
||||||
Some(id)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ mod syntax_ptr;
|
||||||
mod file_resolver;
|
mod file_resolver;
|
||||||
mod input;
|
mod input;
|
||||||
mod loc2id;
|
mod loc2id;
|
||||||
|
pub mod mock;
|
||||||
|
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use ra_editor::LineIndex;
|
use ra_editor::LineIndex;
|
||||||
|
|
51
crates/ra_db/src/mock.rs
Normal file
51
crates/ra_db/src/mock.rs
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
use rustc_hash::FxHashSet;
|
||||||
|
use relative_path::{RelativePath, RelativePathBuf};
|
||||||
|
|
||||||
|
use crate::{FileId, FileResolver, SourceRoot, FileResolverImp};
|
||||||
|
|
||||||
|
#[derive(Default, Debug)]
|
||||||
|
pub struct FileMap(Vec<(FileId, RelativePathBuf)>);
|
||||||
|
|
||||||
|
impl FileMap {
|
||||||
|
pub fn add(&mut self, path: RelativePathBuf) -> FileId {
|
||||||
|
let file_id = FileId((self.0.len() + 1) as u32);
|
||||||
|
self.0.push((file_id, path));
|
||||||
|
file_id
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn into_source_root(self) -> SourceRoot {
|
||||||
|
let files = self.files();
|
||||||
|
let file_resolver = FileResolverImp::new(Arc::new(self));
|
||||||
|
SourceRoot {
|
||||||
|
file_resolver,
|
||||||
|
files,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn files(&self) -> FxHashSet<FileId> {
|
||||||
|
self.iter().map(|(id, _)| id).collect()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn iter<'a>(&'a self) -> impl Iterator<Item = (FileId, &'a RelativePath)> + 'a {
|
||||||
|
self.0
|
||||||
|
.iter()
|
||||||
|
.map(|(id, path)| (*id, path.as_relative_path()))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn path(&self, id: FileId) -> &RelativePath {
|
||||||
|
self.iter().find(|&(it, _)| it == id).unwrap().1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl FileResolver for FileMap {
|
||||||
|
fn file_stem(&self, id: FileId) -> String {
|
||||||
|
self.path(id).file_stem().unwrap().to_string()
|
||||||
|
}
|
||||||
|
fn resolve(&self, id: FileId, rel: &RelativePath) -> Option<FileId> {
|
||||||
|
let path = self.path(id).join(rel).normalize();
|
||||||
|
let id = self.iter().find(|&(_, p)| path == p)?.0;
|
||||||
|
Some(id)
|
||||||
|
}
|
||||||
|
}
|
|
@ -15,6 +15,8 @@ macro_rules! ctry {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod db;
|
pub mod db;
|
||||||
|
#[cfg(test)]
|
||||||
|
mod mock;
|
||||||
mod query_definitions;
|
mod query_definitions;
|
||||||
mod function;
|
mod function;
|
||||||
mod module;
|
mod module;
|
||||||
|
|
172
crates/ra_hir/src/mock.rs
Normal file
172
crates/ra_hir/src/mock.rs
Normal file
|
@ -0,0 +1,172 @@
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
use parking_lot::Mutex;
|
||||||
|
use salsa::{self, Database};
|
||||||
|
use ra_db::{LocationIntener, BaseDatabase, FilePosition, mock::FileMap, FileId, WORKSPACE};
|
||||||
|
use relative_path::RelativePathBuf;
|
||||||
|
use test_utils::{parse_fixture, CURSOR_MARKER, extract_offset};
|
||||||
|
|
||||||
|
use crate::{db, DefId, DefLoc, FnId, SourceItemId};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub(crate) struct MockDatabase {
|
||||||
|
events: Mutex<Option<Vec<salsa::Event<MockDatabase>>>>,
|
||||||
|
runtime: salsa::Runtime<MockDatabase>,
|
||||||
|
id_maps: Arc<IdMaps>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl MockDatabase {
|
||||||
|
pub(crate) fn with_position(fixture: &str) -> (MockDatabase, FilePosition) {
|
||||||
|
let mut db = MockDatabase::default();
|
||||||
|
|
||||||
|
let mut position = None;
|
||||||
|
let mut file_map = FileMap::default();
|
||||||
|
for entry in parse_fixture(fixture) {
|
||||||
|
if entry.text.contains(CURSOR_MARKER) {
|
||||||
|
assert!(
|
||||||
|
position.is_none(),
|
||||||
|
"only one marker (<|>) per fixture is allowed"
|
||||||
|
);
|
||||||
|
position = Some(db.add_file_with_position(&mut file_map, &entry.meta, &entry.text));
|
||||||
|
} else {
|
||||||
|
db.add_file(&mut file_map, &entry.meta, &entry.text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let position = position.expect("expected a marker (<|>)");
|
||||||
|
let source_root = file_map.into_source_root();
|
||||||
|
db.query_mut(ra_db::SourceRootQuery)
|
||||||
|
.set(WORKSPACE, Arc::new(source_root));
|
||||||
|
(db, position)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn add_file(&mut self, file_map: &mut FileMap, path: &str, text: &str) -> FileId {
|
||||||
|
assert!(path.starts_with('/'));
|
||||||
|
let path = RelativePathBuf::from_path(&path[1..]).unwrap();
|
||||||
|
|
||||||
|
let file_id = file_map.add(path);
|
||||||
|
let text = Arc::new(text.to_string());
|
||||||
|
self.query_mut(ra_db::FileTextQuery).set(file_id, text);
|
||||||
|
self.query_mut(ra_db::FileSourceRootQuery)
|
||||||
|
.set(file_id, WORKSPACE);
|
||||||
|
file_id
|
||||||
|
}
|
||||||
|
|
||||||
|
fn add_file_with_position(
|
||||||
|
&mut self,
|
||||||
|
file_map: &mut FileMap,
|
||||||
|
path: &str,
|
||||||
|
text: &str,
|
||||||
|
) -> FilePosition {
|
||||||
|
let (offset, text) = extract_offset(text);
|
||||||
|
let file_id = self.add_file(file_map, path, &text);
|
||||||
|
FilePosition { file_id, offset }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
struct IdMaps {
|
||||||
|
fns: LocationIntener<SourceItemId, FnId>,
|
||||||
|
defs: LocationIntener<DefLoc, DefId>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl salsa::Database for MockDatabase {
|
||||||
|
fn salsa_runtime(&self) -> &salsa::Runtime<MockDatabase> {
|
||||||
|
&self.runtime
|
||||||
|
}
|
||||||
|
|
||||||
|
fn salsa_event(&self, event: impl Fn() -> salsa::Event<MockDatabase>) {
|
||||||
|
let mut events = self.events.lock();
|
||||||
|
if let Some(events) = &mut *events {
|
||||||
|
events.push(event());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for MockDatabase {
|
||||||
|
fn default() -> MockDatabase {
|
||||||
|
let mut db = MockDatabase {
|
||||||
|
events: Default::default(),
|
||||||
|
runtime: salsa::Runtime::default(),
|
||||||
|
id_maps: Default::default(),
|
||||||
|
};
|
||||||
|
db.query_mut(ra_db::SourceRootQuery)
|
||||||
|
.set(ra_db::WORKSPACE, Default::default());
|
||||||
|
db.query_mut(ra_db::CrateGraphQuery)
|
||||||
|
.set((), Default::default());
|
||||||
|
db.query_mut(ra_db::LibrariesQuery)
|
||||||
|
.set((), Default::default());
|
||||||
|
db
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl salsa::ParallelDatabase for MockDatabase {
|
||||||
|
fn snapshot(&self) -> salsa::Snapshot<MockDatabase> {
|
||||||
|
salsa::Snapshot::new(MockDatabase {
|
||||||
|
events: Default::default(),
|
||||||
|
runtime: self.runtime.snapshot(self),
|
||||||
|
id_maps: self.id_maps.clone(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl BaseDatabase for MockDatabase {}
|
||||||
|
|
||||||
|
impl AsRef<LocationIntener<DefLoc, DefId>> for MockDatabase {
|
||||||
|
fn as_ref(&self) -> &LocationIntener<DefLoc, DefId> {
|
||||||
|
&self.id_maps.defs
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl AsRef<LocationIntener<SourceItemId, FnId>> for MockDatabase {
|
||||||
|
fn as_ref(&self) -> &LocationIntener<SourceItemId, FnId> {
|
||||||
|
&self.id_maps.fns
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl MockDatabase {
|
||||||
|
pub(crate) fn log(&self, f: impl FnOnce()) -> Vec<salsa::Event<MockDatabase>> {
|
||||||
|
*self.events.lock() = Some(Vec::new());
|
||||||
|
f();
|
||||||
|
let events = self.events.lock().take().unwrap();
|
||||||
|
events
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn log_executed(&self, f: impl FnOnce()) -> Vec<String> {
|
||||||
|
let events = self.log(f);
|
||||||
|
events
|
||||||
|
.into_iter()
|
||||||
|
.filter_map(|e| match e.kind {
|
||||||
|
// This pretty horrible, but `Debug` is the only way to inspect
|
||||||
|
// QueryDescriptor at the moment.
|
||||||
|
salsa::EventKind::WillExecute { descriptor } => Some(format!("{:?}", descriptor)),
|
||||||
|
_ => None,
|
||||||
|
})
|
||||||
|
.collect()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
salsa::database_storage! {
|
||||||
|
pub(crate) struct MockDatabaseStorage for MockDatabase {
|
||||||
|
impl ra_db::FilesDatabase {
|
||||||
|
fn file_text() for ra_db::FileTextQuery;
|
||||||
|
fn file_source_root() for ra_db::FileSourceRootQuery;
|
||||||
|
fn source_root() for ra_db::SourceRootQuery;
|
||||||
|
fn libraries() for ra_db::LibrariesQuery;
|
||||||
|
fn crate_graph() for ra_db::CrateGraphQuery;
|
||||||
|
}
|
||||||
|
impl ra_db::SyntaxDatabase {
|
||||||
|
fn source_file() for ra_db::SourceFileQuery;
|
||||||
|
fn file_lines() for ra_db::FileLinesQuery;
|
||||||
|
}
|
||||||
|
impl db::HirDatabase {
|
||||||
|
fn module_tree() for db::ModuleTreeQuery;
|
||||||
|
fn fn_scopes() for db::FnScopesQuery;
|
||||||
|
fn file_items() for db::SourceFileItemsQuery;
|
||||||
|
fn file_item() for db::FileItemQuery;
|
||||||
|
fn input_module_items() for db::InputModuleItemsQuery;
|
||||||
|
fn item_map() for db::ItemMapQuery;
|
||||||
|
fn fn_syntax() for db::FnSyntaxQuery;
|
||||||
|
fn submodules() for db::SubmodulesQuery;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -336,3 +336,100 @@ where
|
||||||
f(module_items)
|
f(module_items)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//TODO: move to hir
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
use salsa::Database;
|
||||||
|
use ra_db::FilesDatabase;
|
||||||
|
use ra_syntax::SmolStr;
|
||||||
|
|
||||||
|
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::Module::guess_from_position(&db, pos).unwrap().unwrap();
|
||||||
|
let module_id = module.module_id;
|
||||||
|
(db.item_map(source_root).unwrap(), module_id)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_item_map() {
|
||||||
|
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());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[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
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue