mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
minor style improvements
This commit is contained in:
parent
d43037602e
commit
16f3969fc3
1 changed files with 30 additions and 28 deletions
|
@ -64,7 +64,7 @@ fn is_roc_file(path: &Path) -> bool {
|
|||
|
||||
pub fn format_files(files: std::vec::Vec<PathBuf>, mode: FormatMode) -> Result<(), String> {
|
||||
let arena = Bump::new();
|
||||
let mut files_to_reformat = Vec::new(); //for tracking files which need to be formatted
|
||||
let mut files_to_reformat = Vec::new(); // to track which files failed `roc format --check`
|
||||
|
||||
for file in flatten_directories(files) {
|
||||
let src = std::fs::read_to_string(&file).unwrap();
|
||||
|
@ -73,8 +73,8 @@ pub fn format_files(files: std::vec::Vec<PathBuf>, mode: FormatMode) -> Result<(
|
|||
Ok(buf) => {
|
||||
match mode {
|
||||
FormatMode::CheckOnly => {
|
||||
// If we notice that this file needs to be formatted, add it to the file
|
||||
// list for reporting afterwards
|
||||
// If a file fails `format --check`, add it to the file
|
||||
// list for reporting afterwards.
|
||||
if buf.as_str() != src {
|
||||
files_to_reformat.push(file.display().to_string());
|
||||
}
|
||||
|
@ -154,11 +154,11 @@ pub fn format_files(files: std::vec::Vec<PathBuf>, mode: FormatMode) -> Result<(
|
|||
},
|
||||
}
|
||||
}
|
||||
// After processing all files, check if there are any files that needed reformatting
|
||||
// After processing all files, check if any files failed `format --check`
|
||||
if !files_to_reformat.is_empty() {
|
||||
let file_list = files_to_reformat.join(", ");
|
||||
return Err(format!(
|
||||
"The following files need to be reformatted: {}",
|
||||
"The following file(s) failed `roc format --check`:\n\t{}\nYou can fix this with `roc format filename.roc`.",
|
||||
file_list
|
||||
));
|
||||
}
|
||||
|
@ -254,9 +254,9 @@ mod tests {
|
|||
use super::*;
|
||||
use std::fs::File;
|
||||
use std::io::Write;
|
||||
use tempfile::tempdir;
|
||||
use tempfile::{tempdir, TempDir};
|
||||
|
||||
const FORMATTED_CONTENT: &str = r#"app [main] { pf: platform "https://github.com/roc-lang/basic-cli/releases/download/0.10.0/vNe6s9hWzoTZtFmNkvEICPErI9ptji_ySjicO6CkucY.tar.br" }
|
||||
const FORMATTED_ROC: &str = r#"app [main] { pf: platform "https://github.com/roc-lang/basic-cli/releases/download/0.10.0/vNe6s9hWzoTZtFmNkvEICPErI9ptji_ySjicO6CkucY.tar.br" }
|
||||
|
||||
import pf.Stdout
|
||||
import pf.Task
|
||||
|
@ -264,7 +264,7 @@ import pf.Task
|
|||
main =
|
||||
Stdout.line! "I'm a Roc application!""#;
|
||||
|
||||
const UNFORMATTED_CONTENT: &str = r#"app [main] { pf: platform "https://github.com/roc-lang/basic-cli/releases/download/0.10.0/vNe6s9hWzoTZtFmNkvEICPErI9ptji_ySjicO6CkucY.tar.br" }
|
||||
const UNFORMATTED_ROC: &str = r#"app [main] { pf: platform "https://github.com/roc-lang/basic-cli/releases/download/0.10.0/vNe6s9hWzoTZtFmNkvEICPErI9ptji_ySjicO6CkucY.tar.br" }
|
||||
|
||||
|
||||
import pf.Stdout
|
||||
|
@ -283,57 +283,60 @@ main =
|
|||
file_path
|
||||
}
|
||||
|
||||
fn cleanup_temp_dir(dir: TempDir) {
|
||||
let result = dir.close();
|
||||
assert!(result.is_ok(), "Failed to delete temp directory");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_single_file_needs_reformatting() {
|
||||
let dir = tempdir().unwrap();
|
||||
let file_path = setup_test_file(dir.path(), "test1.roc", UNFORMATTED_CONTENT);
|
||||
let file_path = setup_test_file(dir.path(), "test1.roc", UNFORMATTED_ROC);
|
||||
|
||||
let result = format_files(vec![file_path.clone()], FormatMode::CheckOnly);
|
||||
assert!(result.is_err());
|
||||
assert_eq!(
|
||||
result.unwrap_err(),
|
||||
format!(
|
||||
"The following files need to be reformatted: {}",
|
||||
"The following file(s) failed `roc format --check`:\n\t{}\nYou can fix this with `roc format filename.roc`.",
|
||||
&file_path.as_path().to_str().unwrap()
|
||||
)
|
||||
);
|
||||
//ensure tmp files are cleaned up
|
||||
let result = dir.close();
|
||||
assert!(result.is_ok(), "Failed to delete temp directory");
|
||||
|
||||
cleanup_temp_dir(dir);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_multiple_files_needs_reformatting() {
|
||||
let dir = tempdir().unwrap();
|
||||
let file1 = setup_test_file(dir.path(), "test1.roc", UNFORMATTED_CONTENT);
|
||||
let file2 = setup_test_file(dir.path(), "test2.roc", UNFORMATTED_CONTENT);
|
||||
let file1 = setup_test_file(dir.path(), "test1.roc", UNFORMATTED_ROC);
|
||||
let file2 = setup_test_file(dir.path(), "test2.roc", UNFORMATTED_ROC);
|
||||
|
||||
let result = format_files(vec![file1, file2], FormatMode::CheckOnly);
|
||||
assert!(result.is_err());
|
||||
let error_message = result.unwrap_err();
|
||||
assert!(error_message.contains("test1.roc") && error_message.contains("test2.roc"));
|
||||
//ensure tmp files are cleaned up
|
||||
let result = dir.close();
|
||||
assert!(result.is_ok(), "Failed to delete temp directory");
|
||||
|
||||
cleanup_temp_dir(dir);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_no_files_need_reformatting() {
|
||||
let dir = tempdir().unwrap();
|
||||
let file_path = setup_test_file(dir.path(), "formatted.roc", FORMATTED_CONTENT);
|
||||
let file_path = setup_test_file(dir.path(), "formatted.roc", FORMATTED_ROC);
|
||||
|
||||
let result = format_files(vec![file_path], FormatMode::CheckOnly);
|
||||
assert!(result.is_ok());
|
||||
//ensure tmp files are cleaned up
|
||||
let result = dir.close();
|
||||
assert!(result.is_ok(), "Failed to delete temp directory");
|
||||
|
||||
cleanup_temp_dir(dir);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_some_files_need_reformatting() {
|
||||
let dir = tempdir().unwrap();
|
||||
let file_formatted = setup_test_file(dir.path(), "formatted.roc", FORMATTED_CONTENT);
|
||||
let file1_unformated = setup_test_file(dir.path(), "test1.roc", UNFORMATTED_CONTENT);
|
||||
let file2_unformated = setup_test_file(dir.path(), "test2.roc", UNFORMATTED_CONTENT);
|
||||
let file_formatted = setup_test_file(dir.path(), "formatted.roc", FORMATTED_ROC);
|
||||
let file1_unformated = setup_test_file(dir.path(), "test1.roc", UNFORMATTED_ROC);
|
||||
let file2_unformated = setup_test_file(dir.path(), "test2.roc", UNFORMATTED_ROC);
|
||||
|
||||
let result = format_files(
|
||||
vec![file_formatted, file1_unformated, file2_unformated],
|
||||
|
@ -343,8 +346,7 @@ main =
|
|||
let error_message = result.unwrap_err();
|
||||
assert!(error_message.contains("test1.roc") && error_message.contains("test2.roc"));
|
||||
assert!(!error_message.contains("formatted.roc"));
|
||||
//ensure tmp files are cleaned up
|
||||
let result = dir.close();
|
||||
assert!(result.is_ok(), "Failed to delete temp directory");
|
||||
|
||||
cleanup_temp_dir(dir);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue