Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions tests/testutils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ use std::fs::read_dir;

use difference::Changeset;

/// Read file and normalize newlines.
///
/// `rustc` seems to always normalize `\r\n` newlines to `\n`:
///
/// ```
/// let s = "
/// ";
/// assert_eq!(s.as_bytes(), &[10]);
/// ```
///
/// so this should always be correct.
fn read_text(path: &Path) -> String {
file::get_text(path).unwrap().replace("\r\n", "\n")
}

pub fn dir_tests<F>(
paths: &[&str],
f: F
Expand All @@ -15,7 +30,7 @@ where
{
for path in collect_tests(paths) {
let actual = {
let text = file::get_text(&path).unwrap();
let text = read_text(&path);
f(&text)
};
let path = path.with_extension("txt");
Expand All @@ -25,7 +40,7 @@ where
file::put_text(&path, actual).unwrap();
panic!("No expected result")
}
let expected = file::get_text(&path).unwrap();
let expected = read_text(&path);
let expected = expected.as_str();
let actual = actual.as_str();
assert_equal_text(expected, actual, &path);
Expand Down