aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-03-08 14:20:36 +0000
committerAleksey Kladov <[email protected]>2021-03-08 18:45:06 +0000
commitb6ba0dec0c08dd2afcda951b09966b457f2c8bc3 (patch)
tree7cbc9679d81509e2dece8eedfea27d2682907ccd /crates
parent0f6f458cc1b460076093efda903bf1a1b9062697 (diff)
Generalize file ensuring infrastructure
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/src/config.rs9
-rw-r--r--crates/test_utils/src/lib.rs35
2 files changed, 38 insertions, 6 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs
index 4dbabdba7..02468631b 100644
--- a/crates/rust-analyzer/src/config.rs
+++ b/crates/rust-analyzer/src/config.rs
@@ -859,12 +859,12 @@ fn manual(fields: &[(&'static str, &'static str, &[&str], &str)]) -> String {
859mod tests { 859mod tests {
860 use std::fs; 860 use std::fs;
861 861
862 use test_utils::project_dir; 862 use test_utils::{ensure_file_contents, project_dir};
863 863
864 use super::*; 864 use super::*;
865 865
866 #[test] 866 #[test]
867 fn schema_in_sync_with_package_json() { 867 fn ensure_schema_in_package_json() {
868 let s = Config::json_schema(); 868 let s = Config::json_schema();
869 let schema = format!("{:#}", s); 869 let schema = format!("{:#}", s);
870 let mut schema = schema 870 let mut schema = schema
@@ -885,13 +885,12 @@ mod tests {
885 885
886 let start = package_json.find(start_marker).unwrap() + start_marker.len(); 886 let start = package_json.find(start_marker).unwrap() + start_marker.len();
887 let end = package_json.find(end_marker).unwrap(); 887 let end = package_json.find(end_marker).unwrap();
888
888 let p = remove_ws(&package_json[start..end]); 889 let p = remove_ws(&package_json[start..end]);
889 let s = remove_ws(&schema); 890 let s = remove_ws(&schema);
890
891 if !p.contains(&s) { 891 if !p.contains(&s) {
892 package_json.replace_range(start..end, &schema); 892 package_json.replace_range(start..end, &schema);
893 fs::write(&package_json_path, &mut package_json).unwrap(); 893 ensure_file_contents(&package_json_path, &package_json)
894 panic!("new config, updating package.json")
895 } 894 }
896 } 895 }
897 896
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs
index 27b05e34b..7f122b13e 100644
--- a/crates/test_utils/src/lib.rs
+++ b/crates/test_utils/src/lib.rs
@@ -14,7 +14,7 @@ mod fixture;
14use std::{ 14use std::{
15 convert::{TryFrom, TryInto}, 15 convert::{TryFrom, TryInto},
16 env, fs, 16 env, fs,
17 path::PathBuf, 17 path::{Path, PathBuf},
18}; 18};
19 19
20use profile::StopWatch; 20use profile::StopWatch;
@@ -353,3 +353,36 @@ pub fn bench(label: &'static str) -> impl Drop {
353 353
354 Bencher { sw: StopWatch::start(), label } 354 Bencher { sw: StopWatch::start(), label }
355} 355}
356
357/// Checks that the `file` has the specified `contents`. If that is not the
358/// case, updates the file and then fails the test.
359pub fn ensure_file_contents(file: &Path, contents: &str) {
360 if let Err(()) = try_ensure_file_contents(file, contents) {
361 panic!("Some files were not up-to-date");
362 }
363}
364
365/// Checks that the `file` has the specified `contents`. If that is not the
366/// case, updates the file and return an Error.
367pub fn try_ensure_file_contents(file: &Path, contents: &str) -> Result<(), ()> {
368 match std::fs::read_to_string(file) {
369 Ok(old_contents) if normalize_newlines(&old_contents) == normalize_newlines(contents) => {
370 return Ok(())
371 }
372 _ => (),
373 }
374 let display_path = file.strip_prefix(&project_dir()).unwrap_or(file);
375 eprintln!(
376 "\n\x1b[31;1merror\x1b[0m: {} was not up-to-date, updating\n",
377 display_path.display()
378 );
379 if let Some(parent) = file.parent() {
380 let _ = std::fs::create_dir_all(parent);
381 }
382 std::fs::write(file, contents).unwrap();
383 Err(())
384}
385
386fn normalize_newlines(s: &str) -> String {
387 s.replace("\r\n", "\n")
388}