use abstio::MapName;
use abstutil::Timer;
use anyhow::{anyhow, bail, Result};
use map_model::Map;
use prettydiff::text::diff_lines;
use std::path::PathBuf;
pub fn import_map(path: String) -> Map {
let mut timer = Timer::new("convert synthetic map");
let name = MapName::new("zz", "oneshot", &abstutil::basename(&path));
let clip = None;
let raw = convert_osm::convert(
path,
name,
clip,
convert_osm::Options::default(),
&mut timer,
);
Map::create_from_raw(raw, map_model::RawToMapOptions::default(), &mut timer)
}
pub fn get_test_file_path(path: String) -> Result<String> {
let maybe_workspace_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
let maybe_workspace_dir = std::path::Path::new(&maybe_workspace_dir);
let this_source_file = String::from(file!());
let test_file = next_test_file_path(maybe_workspace_dir, &this_source_file);
if test_file.is_ok() {
match next_test_file_path(test_file.as_ref().unwrap(), &path) {
Ok(pb) => Ok(String::from(pb.to_str().unwrap())),
Err(e) => Err(e),
}
} else {
panic!("Cannot find the absolute path to {}. Check that this function being called from test code, not production code.", this_source_file);
}
}
fn next_test_file_path(
maybe_absolute_dir: &std::path::Path,
file_path: &String,
) -> Result<PathBuf> {
let path_to_test = maybe_absolute_dir.join(file_path);
if path_to_test.exists() {
Ok(path_to_test)
} else if maybe_absolute_dir.parent().is_some() {
next_test_file_path(maybe_absolute_dir.parent().unwrap(), file_path)
} else {
Err(anyhow!("Cannot locate file '{}'", file_path))
}
}
pub fn compare_with_goldenfile(actual: String, goldenfile_path: String) -> Result<()> {
let goldenfile_path = get_test_file_path(goldenfile_path).unwrap();
let binding = String::from_utf8(abstio::slurp_file(&goldenfile_path)?)
.unwrap()
.clone();
let expected = binding.trim();
let actual_str = actual.trim();
if actual_str != expected {
let lcs = diff_lines(&actual_str, &expected);
bail!(
"contents differ from goldenfile {}:\n{}",
&goldenfile_path,
lcs
);
}
Ok(())
}