mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Reimplement ra_db::fixture::ParsedMeta
in terms of test_utils::FixtureMeta
This commit is contained in:
parent
eeb98237d1
commit
d901e0e709
2 changed files with 28 additions and 51 deletions
|
@ -49,7 +49,7 @@ use std::sync::Arc;
|
||||||
|
|
||||||
use ra_cfg::CfgOptions;
|
use ra_cfg::CfgOptions;
|
||||||
use rustc_hash::FxHashMap;
|
use rustc_hash::FxHashMap;
|
||||||
use test_utils::{extract_offset, parse_fixture, parse_single_fixture, CURSOR_MARKER};
|
use test_utils::{extract_offset, parse_fixture, parse_single_fixture, FixtureMeta, CURSOR_MARKER};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
input::CrateName, CrateGraph, CrateId, Edition, Env, FileId, FilePosition, RelativePathBuf,
|
input::CrateName, CrateGraph, CrateId, Edition, Env, FileId, FilePosition, RelativePathBuf,
|
||||||
|
@ -99,7 +99,7 @@ fn with_single_file(db: &mut dyn SourceDatabaseExt, ra_fixture: &str) -> FileId
|
||||||
let fixture = parse_single_fixture(ra_fixture);
|
let fixture = parse_single_fixture(ra_fixture);
|
||||||
|
|
||||||
let crate_graph = if let Some(entry) = fixture {
|
let crate_graph = if let Some(entry) = fixture {
|
||||||
let meta = match parse_meta(&entry.meta) {
|
let meta = match ParsedMeta::from(&entry.parsed_meta) {
|
||||||
ParsedMeta::File(it) => it,
|
ParsedMeta::File(it) => it,
|
||||||
_ => panic!("with_single_file only support file meta"),
|
_ => panic!("with_single_file only support file meta"),
|
||||||
};
|
};
|
||||||
|
@ -156,7 +156,7 @@ fn with_files(db: &mut dyn SourceDatabaseExt, fixture: &str) -> Option<FilePosit
|
||||||
let mut file_position = None;
|
let mut file_position = None;
|
||||||
|
|
||||||
for entry in fixture.iter() {
|
for entry in fixture.iter() {
|
||||||
let meta = match parse_meta(&entry.meta) {
|
let meta = match ParsedMeta::from(&entry.parsed_meta) {
|
||||||
ParsedMeta::Root { path } => {
|
ParsedMeta::Root { path } => {
|
||||||
let source_root = std::mem::replace(&mut source_root, SourceRoot::new_local());
|
let source_root = std::mem::replace(&mut source_root, SourceRoot::new_local());
|
||||||
db.set_source_root(source_root_id, Arc::new(source_root));
|
db.set_source_root(source_root_id, Arc::new(source_root));
|
||||||
|
@ -244,53 +244,31 @@ struct FileMeta {
|
||||||
env: Env,
|
env: Env,
|
||||||
}
|
}
|
||||||
|
|
||||||
//- /lib.rs crate:foo deps:bar,baz cfg:foo=a,bar=b env:OUTDIR=path/to,OTHER=foo)
|
impl From<&FixtureMeta> for ParsedMeta {
|
||||||
fn parse_meta(meta: &str) -> ParsedMeta {
|
fn from(meta: &FixtureMeta) -> Self {
|
||||||
let components = meta.split_ascii_whitespace().collect::<Vec<_>>();
|
match meta {
|
||||||
|
FixtureMeta::Root { path } => {
|
||||||
if components[0] == "root" {
|
// `Self::Root` causes a false warning: 'variant is never constructed: `Root` '
|
||||||
let path: RelativePathBuf = components[1].into();
|
// see https://github.com/rust-lang/rust/issues/69018
|
||||||
assert!(path.starts_with("/") && path.ends_with("/"));
|
ParsedMeta::Root { path: path.to_owned() }
|
||||||
return ParsedMeta::Root { path };
|
|
||||||
}
|
|
||||||
|
|
||||||
let path: RelativePathBuf = components[0].into();
|
|
||||||
assert!(path.starts_with("/"));
|
|
||||||
|
|
||||||
let mut krate = None;
|
|
||||||
let mut deps = Vec::new();
|
|
||||||
let mut edition = Edition::Edition2018;
|
|
||||||
let mut cfg = CfgOptions::default();
|
|
||||||
let mut env = Env::default();
|
|
||||||
for component in components[1..].iter() {
|
|
||||||
let (key, value) = split1(component, ':').unwrap();
|
|
||||||
match key {
|
|
||||||
"crate" => krate = Some(value.to_string()),
|
|
||||||
"deps" => deps = value.split(',').map(|it| it.to_string()).collect(),
|
|
||||||
"edition" => edition = Edition::from_str(&value).unwrap(),
|
|
||||||
"cfg" => {
|
|
||||||
for key in value.split(',') {
|
|
||||||
match split1(key, '=') {
|
|
||||||
None => cfg.insert_atom(key.into()),
|
|
||||||
Some((k, v)) => cfg.insert_key_value(k.into(), v.into()),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
"env" => {
|
FixtureMeta::File(f) => Self::File(FileMeta {
|
||||||
for key in value.split(',') {
|
path: f.path.to_owned().into(),
|
||||||
if let Some((k, v)) = split1(key, '=') {
|
krate: f.krate.to_owned().into(),
|
||||||
env.set(k, v.into());
|
deps: f.deps.to_owned(),
|
||||||
|
cfg: f.cfg.to_owned(),
|
||||||
|
edition: f
|
||||||
|
.edition
|
||||||
|
.as_ref()
|
||||||
|
.map_or(Edition::Edition2018, |v| Edition::from_str(&v).unwrap()),
|
||||||
|
env: {
|
||||||
|
let mut env = Env::default();
|
||||||
|
for (k, v) in &f.env {
|
||||||
|
env.set(&k, v.to_owned());
|
||||||
}
|
}
|
||||||
}
|
env
|
||||||
}
|
},
|
||||||
_ => panic!("bad component: {:?}", component),
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ParsedMeta::File(FileMeta { path, krate, deps, edition, cfg, env })
|
|
||||||
}
|
|
||||||
|
|
||||||
fn split1(haystack: &str, delim: char) -> Option<(&str, &str)> {
|
|
||||||
let idx = haystack.find(delim)?;
|
|
||||||
Some((&haystack[..idx], &haystack[idx + delim.len_utf8()..]))
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,10 +16,10 @@ use std::{
|
||||||
|
|
||||||
pub use ra_cfg::CfgOptions;
|
pub use ra_cfg::CfgOptions;
|
||||||
|
|
||||||
use serde_json::Value;
|
|
||||||
use text_size::{TextRange, TextSize};
|
|
||||||
pub use relative_path::{RelativePath, RelativePathBuf};
|
pub use relative_path::{RelativePath, RelativePathBuf};
|
||||||
pub use rustc_hash::FxHashMap;
|
pub use rustc_hash::FxHashMap;
|
||||||
|
use serde_json::Value;
|
||||||
|
use text_size::{TextRange, TextSize};
|
||||||
|
|
||||||
pub use difference::Changeset as __Changeset;
|
pub use difference::Changeset as __Changeset;
|
||||||
|
|
||||||
|
@ -292,7 +292,6 @@ fn split1(haystack: &str, delim: char) -> Option<(&str, &str)> {
|
||||||
Some((&haystack[..idx], &haystack[idx + delim.len_utf8()..]))
|
Some((&haystack[..idx], &haystack[idx + delim.len_utf8()..]))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Adjusts the indentation of the first line to the minimum indentation of the rest of the lines.
|
/// Adjusts the indentation of the first line to the minimum indentation of the rest of the lines.
|
||||||
/// This allows fixtures to start off in a different indentation, e.g. to align the first line with
|
/// This allows fixtures to start off in a different indentation, e.g. to align the first line with
|
||||||
/// the other lines visually:
|
/// the other lines visually:
|
||||||
|
|
Loading…
Reference in a new issue