rust/crates/base_db/src/fixture.rs

238 lines
7.3 KiB
Rust
Raw Normal View History

2020-05-05 16:36:35 -05:00
//! Fixtures are strings containing rust source code with optional metadata.
//! A fixture without metadata is parsed into a single source file.
//! Use this to test functionality local to one file.
//!
2020-05-10 08:56:51 -05:00
//! Simple Example:
2020-05-05 16:36:35 -05:00
//! ```
//! r#"
//! fn main() {
//! println!("Hello World")
//! }
//! "#
//! ```
//!
//! Metadata can be added to a fixture after a `//-` comment.
//! The basic form is specifying filenames,
//! which is also how to define multiple files in a single test fixture
//!
2020-05-10 08:56:51 -05:00
//! Example using two files in the same crate:
2020-05-05 16:36:35 -05:00
//! ```
//! "
//! //- /main.rs
//! mod foo;
//! fn main() {
//! foo::bar();
//! }
//!
//! //- /foo.rs
//! pub fn bar() {}
//! "
//! ```
//!
2020-05-10 08:56:51 -05:00
//! Example using two crates with one file each, with one crate depending on the other:
//! ```
//! r#"
//! //- /main.rs crate:a deps:b
//! fn main() {
//! b::foo();
//! }
//! //- /lib.rs crate:b
//! pub fn b() {
//! println!("Hello World")
//! }
//! "#
//! ```
//!
2020-05-05 16:36:35 -05:00
//! Metadata allows specifying all settings and variables
//! that are available in a real rust project:
//! - crate names via `crate:cratename`
//! - dependencies via `deps:dep1,dep2`
//! - configuration settings via `cfg:dbg=false,opt_level=2`
//! - environment variables via `env:PATH=/bin,RUST_LOG=debug`
//!
2020-05-10 08:56:51 -05:00
//! Example using all available metadata:
2020-05-05 16:36:35 -05:00
//! ```
//! "
//! //- /lib.rs crate:foo deps:bar,baz cfg:foo=a,bar=b env:OUTDIR=path/to,OTHER=foo
//! fn insert_source_code_here() {}
//! "
//! ```
2020-06-11 04:04:09 -05:00
use std::{str::FromStr, sync::Arc};
2020-08-13 03:19:09 -05:00
use cfg::CfgOptions;
2019-11-03 14:35:48 -06:00
use rustc_hash::FxHashMap;
2020-06-23 17:30:34 -05:00
use test_utils::{extract_range_or_offset, Fixture, RangeOrOffset, CURSOR_MARKER};
2020-06-11 04:04:09 -05:00
use vfs::{file_set::FileSet, VfsPath};
use crate::{
2020-10-02 09:07:33 -05:00
input::CrateName, Change, CrateGraph, CrateId, Edition, Env, FileId, FilePosition,
SourceDatabaseExt, SourceRoot, SourceRootId,
};
pub const WORKSPACE: SourceRootId = SourceRootId(0);
pub trait WithFixture: Default + SourceDatabaseExt + 'static {
fn with_single_file(text: &str) -> (Self, FileId) {
2020-10-02 09:07:33 -05:00
let fixture = ChangeFixture::parse(text);
let mut db = Self::default();
2020-10-02 09:07:33 -05:00
fixture.change.apply(&mut db);
assert_eq!(fixture.files.len(), 1);
(db, fixture.files[0])
}
2019-11-03 14:35:48 -06:00
2020-03-06 07:44:44 -06:00
fn with_files(ra_fixture: &str) -> Self {
2020-10-02 09:07:33 -05:00
let fixture = ChangeFixture::parse(ra_fixture);
2019-11-03 14:35:48 -06:00
let mut db = Self::default();
2020-10-02 09:07:33 -05:00
fixture.change.apply(&mut db);
assert!(fixture.file_position.is_none());
2019-11-03 14:35:48 -06:00
db
}
2020-03-26 09:44:31 -05:00
fn with_position(ra_fixture: &str) -> (Self, FilePosition) {
2020-06-23 17:30:34 -05:00
let (db, file_id, range_or_offset) = Self::with_range_or_offset(ra_fixture);
let offset = match range_or_offset {
RangeOrOffset::Range(_) => panic!(),
RangeOrOffset::Offset(it) => it,
};
(db, FilePosition { file_id, offset })
}
fn with_range_or_offset(ra_fixture: &str) -> (Self, FileId, RangeOrOffset) {
2020-10-02 09:07:33 -05:00
let fixture = ChangeFixture::parse(ra_fixture);
2019-11-03 14:35:48 -06:00
let mut db = Self::default();
2020-10-02 09:07:33 -05:00
fixture.change.apply(&mut db);
let (file_id, range_or_offset) = fixture.file_position.unwrap();
2020-06-23 17:30:34 -05:00
(db, file_id, range_or_offset)
2019-11-03 14:35:48 -06:00
}
2019-11-15 04:16:16 -06:00
fn test_crate(&self) -> CrateId {
let crate_graph = self.crate_graph();
let mut it = crate_graph.iter();
let res = it.next().unwrap();
assert!(it.next().is_none());
res
}
}
impl<DB: SourceDatabaseExt + Default + 'static> WithFixture for DB {}
2020-10-02 09:07:33 -05:00
pub struct ChangeFixture {
2020-10-02 09:13:48 -05:00
pub file_position: Option<(FileId, RangeOrOffset)>,
pub files: Vec<FileId>,
pub change: Change,
2020-10-02 09:07:33 -05:00
}
2020-06-24 03:22:02 -05:00
2020-10-02 09:07:33 -05:00
impl ChangeFixture {
2020-10-02 09:13:48 -05:00
pub fn parse(ra_fixture: &str) -> ChangeFixture {
2020-10-02 09:07:33 -05:00
let fixture = Fixture::parse(ra_fixture);
let mut change = Change::new();
let mut files = Vec::new();
let mut crate_graph = CrateGraph::default();
let mut crates = FxHashMap::default();
let mut crate_deps = Vec::new();
let mut default_crate_root: Option<FileId> = None;
2020-10-02 09:13:48 -05:00
let mut default_cfg = CfgOptions::default();
2020-10-02 09:07:33 -05:00
let mut file_set = FileSet::default();
let source_root_prefix = "/".to_string();
let mut file_id = FileId(0);
let mut file_position = None;
for entry in fixture {
let text = if entry.text.contains(CURSOR_MARKER) {
let (range_or_offset, text) = extract_range_or_offset(&entry.text);
assert!(file_position.is_none());
file_position = Some((file_id, range_or_offset));
text.to_string()
} else {
entry.text.clone()
};
let meta = FileMeta::from(entry);
assert!(meta.path.starts_with(&source_root_prefix));
if let Some(krate) = meta.krate {
let crate_id = crate_graph.add_crate_root(
file_id,
meta.edition,
Some(krate.clone()),
meta.cfg,
meta.env,
Default::default(),
);
2020-10-02 12:59:32 -05:00
let crate_name = CrateName::normalize_dashes(&krate);
2020-10-02 09:07:33 -05:00
let prev = crates.insert(crate_name.clone(), crate_id);
assert!(prev.is_none());
for dep in meta.deps {
2020-10-02 12:59:32 -05:00
let dep = CrateName::normalize_dashes(&dep);
2020-10-02 09:07:33 -05:00
crate_deps.push((crate_name.clone(), dep))
}
} else if meta.path == "/main.rs" || meta.path == "/lib.rs" {
assert!(default_crate_root.is_none());
default_crate_root = Some(file_id);
2020-10-02 09:13:48 -05:00
default_cfg = meta.cfg;
2020-10-02 09:07:33 -05:00
}
change.change_file(file_id, Some(Arc::new(text)));
let path = VfsPath::new_virtual_path(meta.path);
file_set.insert(file_id, path.into());
files.push(file_id);
file_id.0 += 1;
}
2019-11-03 14:35:48 -06:00
2020-10-02 09:07:33 -05:00
if crates.is_empty() {
let crate_root = default_crate_root.unwrap();
crate_graph.add_crate_root(
crate_root,
Edition::Edition2018,
2020-10-02 09:13:48 -05:00
Some("test".to_string()),
default_cfg,
2020-10-02 09:07:33 -05:00
Env::default(),
2020-03-10 22:04:02 -05:00
Default::default(),
2020-03-08 08:26:57 -05:00
);
2020-10-02 09:07:33 -05:00
} else {
for (from, to) in crate_deps {
let from_id = crates[&from];
let to_id = crates[&to];
crate_graph.add_dep(from_id, CrateName::new(&to).unwrap(), to_id).unwrap();
2019-11-03 14:35:48 -06:00
}
}
2020-10-02 09:07:33 -05:00
change.set_roots(vec![SourceRoot::new_local(file_set)]);
change.set_crate_graph(crate_graph);
2019-11-03 14:35:48 -06:00
2020-10-02 09:07:33 -05:00
ChangeFixture { file_position, files, change }
2019-11-03 14:35:48 -06:00
}
}
struct FileMeta {
path: String,
2019-11-03 14:35:48 -06:00
krate: Option<String>,
deps: Vec<String>,
cfg: CfgOptions,
edition: Edition,
env: Env,
2019-11-03 14:35:48 -06:00
}
2020-06-24 03:22:02 -05:00
impl From<Fixture> for FileMeta {
fn from(f: Fixture) -> FileMeta {
2020-06-23 11:56:26 -05:00
let mut cfg = CfgOptions::default();
f.cfg_atoms.iter().for_each(|it| cfg.insert_atom(it.into()));
f.cfg_key_values.iter().for_each(|(k, v)| cfg.insert_key_value(k.into(), v.into()));
2020-06-24 03:22:02 -05:00
FileMeta {
path: f.path,
krate: f.krate,
deps: f.deps,
2020-06-23 11:56:26 -05:00
cfg,
2020-06-23 11:20:32 -05:00
edition: f
.edition
.as_ref()
.map_or(Edition::Edition2018, |v| Edition::from_str(&v).unwrap()),
2020-07-21 10:17:21 -05:00
env: f.env.into_iter().collect(),
2020-06-24 03:22:02 -05:00
}
2019-11-03 14:35:48 -06:00
}
}