|
| 1 | +use similar::TextDiff; |
| 2 | +use std::path::Path; |
| 3 | + |
| 4 | +#[cfg(test)] |
| 5 | +mod tests; |
| 6 | + |
| 7 | +pub fn diff() -> Diff { |
| 8 | + Diff::new() |
| 9 | +} |
| 10 | + |
| 11 | +#[derive(Debug)] |
| 12 | +pub struct Diff { |
| 13 | + expected: Option<String>, |
| 14 | + expected_name: Option<String>, |
| 15 | + actual: Option<String>, |
| 16 | + actual_name: Option<String>, |
| 17 | +} |
| 18 | + |
| 19 | +impl Diff { |
| 20 | + /// Construct a bare `diff` invocation. |
| 21 | + pub fn new() -> Self { |
| 22 | + Self { expected: None, expected_name: None, actual: None, actual_name: None } |
| 23 | + } |
| 24 | + |
| 25 | + /// Specify the expected output for the diff from a file. |
| 26 | + pub fn expected_file<P: AsRef<Path>>(&mut self, path: P) -> &mut Self { |
| 27 | + let path = path.as_ref(); |
| 28 | + let content = std::fs::read_to_string(path).expect("failed to read file"); |
| 29 | + let name = path.to_string_lossy().to_string(); |
| 30 | + |
| 31 | + self.expected = Some(content); |
| 32 | + self.expected_name = Some(name); |
| 33 | + self |
| 34 | + } |
| 35 | + |
| 36 | + /// Specify the expected output for the diff from a given text string. |
| 37 | + pub fn expected_text<T: AsRef<[u8]>>(&mut self, name: &str, text: T) -> &mut Self { |
| 38 | + self.expected = Some(String::from_utf8_lossy(text.as_ref()).to_string()); |
| 39 | + self.expected_name = Some(name.to_string()); |
| 40 | + self |
| 41 | + } |
| 42 | + |
| 43 | + /// Specify the actual output for the diff from a file. |
| 44 | + pub fn actual_file<P: AsRef<Path>>(&mut self, path: P) -> &mut Self { |
| 45 | + let path = path.as_ref(); |
| 46 | + let content = std::fs::read_to_string(path).expect("failed to read file"); |
| 47 | + let name = path.to_string_lossy().to_string(); |
| 48 | + |
| 49 | + self.actual = Some(content); |
| 50 | + self.actual_name = Some(name); |
| 51 | + self |
| 52 | + } |
| 53 | + |
| 54 | + /// Specify the actual output for the diff from a given text string. |
| 55 | + pub fn actual_text<T: AsRef<[u8]>>(&mut self, name: &str, text: T) -> &mut Self { |
| 56 | + self.actual = Some(String::from_utf8_lossy(text.as_ref()).to_string()); |
| 57 | + self.actual_name = Some(name.to_string()); |
| 58 | + self |
| 59 | + } |
| 60 | + |
| 61 | + /// Executes the diff process, prints any differences to the standard error. |
| 62 | + #[track_caller] |
| 63 | + pub fn run(&self) { |
| 64 | + let expected = self.expected.as_ref().expect("expected text not set"); |
| 65 | + let actual = self.actual.as_ref().expect("actual text not set"); |
| 66 | + let expected_name = self.expected_name.as_ref().unwrap(); |
| 67 | + let actual_name = self.actual_name.as_ref().unwrap(); |
| 68 | + |
| 69 | + let output = TextDiff::from_lines(expected, actual) |
| 70 | + .unified_diff() |
| 71 | + .header(expected_name, actual_name) |
| 72 | + .to_string(); |
| 73 | + |
| 74 | + if !output.is_empty() { |
| 75 | + panic!( |
| 76 | + "test failed: `{}` is different from `{}`\n\n{}", |
| 77 | + expected_name, actual_name, output |
| 78 | + ) |
| 79 | + } |
| 80 | + } |
| 81 | +} |
0 commit comments