mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-22 21:55:15 +00:00
* First take at flattening middleware for simpler code and better perf * Undo debug prints * Fix using wrong path in snapshot_from_vfs * Disable some broken tests * Re-enable (mistakenly?) disabled CSV test * Fix some tests * Update project file tests * Fix benchmark
77 lines
2.0 KiB
Rust
77 lines
2.0 KiB
Rust
use std::{path::Path, str};
|
|
|
|
use maplit::hashmap;
|
|
use memofs::{IoResultExt, Vfs};
|
|
use rbx_dom_weak::RbxValue;
|
|
|
|
use crate::snapshot::{InstanceContext, InstanceMetadata, InstanceSnapshot};
|
|
|
|
use super::{
|
|
error::SnapshotError, meta_file::AdjacentMetadata, middleware::SnapshotInstanceResult,
|
|
};
|
|
|
|
pub fn snapshot_txt(
|
|
context: &InstanceContext,
|
|
vfs: &Vfs,
|
|
path: &Path,
|
|
instance_name: &str,
|
|
) -> SnapshotInstanceResult {
|
|
let contents = vfs.read(path)?;
|
|
let contents_str = str::from_utf8(&contents)
|
|
.map_err(|err| SnapshotError::file_contents_bad_unicode(err, path))?
|
|
.to_string();
|
|
|
|
let properties = hashmap! {
|
|
"Value".to_owned() => RbxValue::String {
|
|
value: contents_str,
|
|
},
|
|
};
|
|
|
|
let meta_path = path.with_file_name(format!("{}.meta.json", instance_name));
|
|
|
|
let mut snapshot = InstanceSnapshot::new()
|
|
.name(instance_name)
|
|
.class_name("StringValue")
|
|
.properties(properties)
|
|
.metadata(
|
|
InstanceMetadata::new()
|
|
.instigating_source(path)
|
|
.relevant_paths(vec![path.to_path_buf(), meta_path.clone()])
|
|
.context(context),
|
|
);
|
|
|
|
if let Some(meta_contents) = vfs.read(&meta_path).with_not_found()? {
|
|
let mut metadata = AdjacentMetadata::from_slice(&meta_contents, &meta_path)?;
|
|
metadata.apply_all(&mut snapshot);
|
|
}
|
|
|
|
Ok(Some(snapshot))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
|
|
use memofs::{InMemoryFs, VfsSnapshot};
|
|
|
|
#[test]
|
|
fn instance_from_vfs() {
|
|
let mut imfs = InMemoryFs::new();
|
|
imfs.load_snapshot("/foo.txt", VfsSnapshot::file("Hello there!"))
|
|
.unwrap();
|
|
|
|
let mut vfs = Vfs::new(imfs.clone());
|
|
|
|
let instance_snapshot = snapshot_txt(
|
|
&InstanceContext::default(),
|
|
&mut vfs,
|
|
Path::new("/foo.txt"),
|
|
"foo",
|
|
)
|
|
.unwrap()
|
|
.unwrap();
|
|
|
|
insta::assert_yaml_snapshot!(instance_snapshot);
|
|
}
|
|
}
|