
In the Windows test environment, the paths generated by `temp_tree()` are symlink paths, which causes certain tests to fail. I later noticed that when opening a project, we seem to always use `canonicalize` to normalize the paths, as shown here: https://github.com/zed-industries/zed/pull/21039. This PR adopts a similar approach for the test environment to address the issue. Release Notes: - N/A
81 lines
2 KiB
Rust
81 lines
2 KiB
Rust
mod assertions;
|
|
mod marked_text;
|
|
|
|
use git2;
|
|
use std::{
|
|
ffi::OsStr,
|
|
path::{Path, PathBuf},
|
|
};
|
|
use tempfile::TempDir;
|
|
|
|
pub use assertions::*;
|
|
pub use marked_text::*;
|
|
|
|
pub struct TempTree {
|
|
_temp_dir: TempDir,
|
|
path: PathBuf,
|
|
}
|
|
|
|
impl TempTree {
|
|
pub fn new(tree: serde_json::Value) -> Self {
|
|
let dir = TempDir::new().unwrap();
|
|
let path = std::fs::canonicalize(dir.path()).unwrap();
|
|
write_tree(path.as_path(), tree);
|
|
|
|
Self {
|
|
_temp_dir: dir,
|
|
path,
|
|
}
|
|
}
|
|
|
|
pub fn path(&self) -> &Path {
|
|
self.path.as_path()
|
|
}
|
|
}
|
|
|
|
fn write_tree(path: &Path, tree: serde_json::Value) {
|
|
use serde_json::Value;
|
|
use std::fs;
|
|
|
|
if let Value::Object(map) = tree {
|
|
for (name, contents) in map {
|
|
let mut path = PathBuf::from(path);
|
|
path.push(name);
|
|
match contents {
|
|
Value::Object(_) => {
|
|
fs::create_dir(&path).unwrap();
|
|
|
|
if path.file_name() == Some(OsStr::new(".git")) {
|
|
git2::Repository::init(path.parent().unwrap()).unwrap();
|
|
}
|
|
|
|
write_tree(&path, contents);
|
|
}
|
|
Value::Null => {
|
|
fs::create_dir(&path).unwrap();
|
|
}
|
|
Value::String(contents) => {
|
|
fs::write(&path, contents).unwrap();
|
|
}
|
|
_ => {
|
|
panic!("JSON object must contain only objects, strings, or null");
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
panic!("You must pass a JSON object to this helper")
|
|
}
|
|
}
|
|
|
|
pub fn sample_text(rows: usize, cols: usize, start_char: char) -> String {
|
|
let mut text = String::new();
|
|
for row in 0..rows {
|
|
let c: char = (start_char as u32 + row as u32) as u8 as char;
|
|
let mut line = c.to_string().repeat(cols);
|
|
if row < rows - 1 {
|
|
line.push('\n');
|
|
}
|
|
text += &line;
|
|
}
|
|
text
|
|
}
|