2015-05-28 12:23:07 -05:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-12-08 07:16:47 -06:00
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
2017-09-18 23:46:13 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2015-05-28 12:23:07 -05:00
|
|
|
extern crate regex;
|
2017-08-08 10:16:35 -05:00
|
|
|
extern crate rustfmt_nightly as rustfmt;
|
2015-08-30 13:47:46 -05:00
|
|
|
extern crate term;
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2015-09-10 17:27:22 -05:00
|
|
|
use std::collections::HashMap;
|
2015-05-28 12:23:07 -05:00
|
|
|
use std::fs;
|
2017-09-21 14:54:29 -05:00
|
|
|
use std::io::{self, BufRead, BufReader, Read};
|
2017-10-06 11:53:55 -05:00
|
|
|
use std::iter::Peekable;
|
2016-04-02 16:32:24 -05:00
|
|
|
use std::path::{Path, PathBuf};
|
2017-10-06 11:53:55 -05:00
|
|
|
use std::str::Chars;
|
2015-09-17 13:21:06 -05:00
|
|
|
|
2015-05-28 12:23:07 -05:00
|
|
|
use rustfmt::*;
|
2016-01-21 21:09:01 -06:00
|
|
|
use rustfmt::filemap::{write_system_newlines, FileMap};
|
2017-11-09 14:23:12 -06:00
|
|
|
use rustfmt::config::{Color, Config, ReportTactic};
|
2015-09-10 17:27:22 -05:00
|
|
|
use rustfmt::rustfmt_diff::*;
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2016-02-01 22:40:45 -06:00
|
|
|
const DIFF_CONTEXT_SIZE: usize = 3;
|
2015-08-30 13:47:46 -05:00
|
|
|
|
2017-12-08 07:16:47 -06:00
|
|
|
fn get_path_string(dir_entry: io::Result<fs::DirEntry>) -> PathBuf {
|
|
|
|
dir_entry.expect("Couldn't get DirEntry").path().to_owned()
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
|
|
|
|
2015-06-23 06:26:04 -05:00
|
|
|
// Integration tests. The files in the tests/source are formatted and compared
|
|
|
|
// to their equivalent in tests/target. The target file and config can be
|
2016-11-02 23:22:16 -05:00
|
|
|
// overridden by annotations in the source file. The input and output must match
|
2015-06-23 06:26:04 -05:00
|
|
|
// exactly.
|
2015-05-28 12:23:07 -05:00
|
|
|
#[test]
|
|
|
|
fn system_tests() {
|
2015-09-17 13:21:06 -05:00
|
|
|
// Get all files in the tests/source directory.
|
2016-01-31 11:58:38 -06:00
|
|
|
let files = fs::read_dir("tests/source").expect("Couldn't read source dir");
|
2015-09-17 13:21:06 -05:00
|
|
|
// Turn a DirEntry into a String that represents the relative path to the
|
|
|
|
// file.
|
2015-05-28 12:23:07 -05:00
|
|
|
let files = files.map(get_path_string);
|
2016-04-04 18:02:22 -05:00
|
|
|
let (_reports, count, fails) = check_files(files);
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
// Display results.
|
2015-06-23 06:26:04 -05:00
|
|
|
println!("Ran {} system tests.", count);
|
2017-08-29 08:16:04 -05:00
|
|
|
assert_eq!(fails, 0, "{} system tests failed", fails);
|
2015-06-23 06:26:04 -05:00
|
|
|
}
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2015-10-23 09:42:07 -05:00
|
|
|
// Do the same for tests/coverage-source directory
|
|
|
|
// the only difference is the coverage mode
|
|
|
|
#[test]
|
|
|
|
fn coverage_tests() {
|
2017-05-25 02:08:08 -05:00
|
|
|
let files = fs::read_dir("tests/coverage/source").expect("Couldn't read source dir");
|
2015-10-23 09:42:07 -05:00
|
|
|
let files = files.map(get_path_string);
|
2016-04-04 18:02:22 -05:00
|
|
|
let (_reports, count, fails) = check_files(files);
|
2015-10-23 09:42:07 -05:00
|
|
|
|
|
|
|
println!("Ran {} tests in coverage mode.", count);
|
2017-08-29 08:16:04 -05:00
|
|
|
assert_eq!(fails, 0, "{} tests failed", fails);
|
2015-10-23 09:42:07 -05:00
|
|
|
}
|
|
|
|
|
2016-01-17 22:06:00 -06:00
|
|
|
#[test]
|
|
|
|
fn checkstyle_test() {
|
2016-04-04 18:02:22 -05:00
|
|
|
let filename = "tests/writemode/source/fn-single-line.rs";
|
|
|
|
let expected_filename = "tests/writemode/target/checkstyle.xml";
|
2017-12-08 07:16:47 -06:00
|
|
|
assert_output(Path::new(filename), Path::new(expected_filename));
|
2016-01-21 21:09:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Helper function for comparing the results of rustfmt
|
|
|
|
// to a known output file generated by one of the write modes.
|
2017-12-08 07:16:47 -06:00
|
|
|
fn assert_output(source: &Path, expected_filename: &Path) {
|
2017-08-29 08:16:04 -05:00
|
|
|
let config = read_config(source);
|
2016-04-02 16:32:24 -05:00
|
|
|
let (file_map, _report) = format_file(source, &config);
|
2016-02-05 14:59:41 -06:00
|
|
|
|
2016-01-21 21:09:01 -06:00
|
|
|
// Populate output by writing to a vec.
|
|
|
|
let mut out = vec![];
|
2016-02-05 14:59:41 -06:00
|
|
|
let _ = filemap::write_all_files(&file_map, &mut out, &config);
|
2016-01-21 21:09:01 -06:00
|
|
|
let output = String::from_utf8(out).unwrap();
|
|
|
|
|
2017-05-25 02:08:08 -05:00
|
|
|
let mut expected_file = fs::File::open(&expected_filename).expect("Couldn't open target");
|
2016-01-17 22:06:00 -06:00
|
|
|
let mut expected_text = String::new();
|
2017-06-15 18:49:49 -05:00
|
|
|
expected_file
|
|
|
|
.read_to_string(&mut expected_text)
|
|
|
|
.expect("Failed reading target");
|
2016-01-17 22:06:00 -06:00
|
|
|
|
2016-01-19 23:07:01 -06:00
|
|
|
let compare = make_diff(&expected_text, &output, DIFF_CONTEXT_SIZE);
|
2017-08-29 08:16:04 -05:00
|
|
|
if !compare.is_empty() {
|
2016-01-19 23:07:01 -06:00
|
|
|
let mut failures = HashMap::new();
|
2017-12-08 07:16:47 -06:00
|
|
|
failures.insert(source.to_owned(), compare);
|
2016-01-19 23:07:01 -06:00
|
|
|
print_mismatches(failures);
|
|
|
|
assert!(false, "Text does not match expected output");
|
2016-01-17 22:06:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-23 06:26:04 -05:00
|
|
|
// Idempotence tests. Files in tests/target are checked to be unaltered by
|
|
|
|
// rustfmt.
|
|
|
|
#[test]
|
|
|
|
fn idempotence_tests() {
|
2015-09-17 13:21:06 -05:00
|
|
|
// Get all files in the tests/target directory.
|
2017-03-27 17:25:59 -05:00
|
|
|
let files = fs::read_dir("tests/target")
|
|
|
|
.expect("Couldn't read target dir")
|
|
|
|
.map(get_path_string);
|
2016-04-04 18:02:22 -05:00
|
|
|
let (_reports, count, fails) = check_files(files);
|
2015-09-17 13:21:06 -05:00
|
|
|
|
|
|
|
// Display results.
|
|
|
|
println!("Ran {} idempotent tests.", count);
|
2017-08-29 08:16:04 -05:00
|
|
|
assert_eq!(fails, 0, "{} idempotent tests failed", fails);
|
2015-09-17 13:21:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run rustfmt on itself. This operation must be idempotent. We also check that
|
|
|
|
// no warnings are emitted.
|
|
|
|
#[test]
|
|
|
|
fn self_tests() {
|
|
|
|
let files = fs::read_dir("src/bin")
|
2016-04-22 01:53:39 -05:00
|
|
|
.expect("Couldn't read src dir")
|
|
|
|
.chain(fs::read_dir("tests").expect("Couldn't read tests dir"))
|
|
|
|
.map(get_path_string);
|
2015-09-17 13:21:06 -05:00
|
|
|
// Hack because there's no `IntoIterator` impl for `[T; N]`.
|
2017-12-08 07:16:47 -06:00
|
|
|
let files = files.chain(Some(PathBuf::from("src/lib.rs")).into_iter());
|
|
|
|
let files = files.chain(Some(PathBuf::from("build.rs")).into_iter());
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2016-04-04 18:02:22 -05:00
|
|
|
let (reports, count, fails) = check_files(files);
|
2015-09-17 13:21:06 -05:00
|
|
|
let mut warnings = 0;
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
// Display results.
|
|
|
|
println!("Ran {} self tests.", count);
|
2017-08-29 08:16:04 -05:00
|
|
|
assert_eq!(fails, 0, "{} self tests failed", fails);
|
2015-09-17 13:21:06 -05:00
|
|
|
|
|
|
|
for format_report in reports {
|
|
|
|
println!("{}", format_report);
|
|
|
|
warnings += format_report.warning_count();
|
|
|
|
}
|
|
|
|
|
2017-08-29 08:16:04 -05:00
|
|
|
assert_eq!(
|
|
|
|
warnings,
|
|
|
|
0,
|
2017-06-11 23:01:41 -05:00
|
|
|
"Rustfmt's code generated {} warnings",
|
|
|
|
warnings
|
|
|
|
);
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
|
|
|
|
2016-04-11 11:49:56 -05:00
|
|
|
#[test]
|
|
|
|
fn stdin_formatting_smoke_test() {
|
|
|
|
let input = Input::Text("fn main () {}".to_owned());
|
|
|
|
let config = Config::default();
|
2017-07-05 04:31:37 -05:00
|
|
|
let (error_summary, file_map, _report) =
|
|
|
|
format_input::<io::Stdout>(input, &config, None).unwrap();
|
2016-04-14 18:51:50 -05:00
|
|
|
assert!(error_summary.has_no_errors());
|
2016-05-15 04:41:05 -05:00
|
|
|
for &(ref file_name, ref text) in &file_map {
|
2017-12-08 07:16:47 -06:00
|
|
|
if let FileName::Custom(ref file_name) = *file_name {
|
|
|
|
if file_name == "stdin" {
|
|
|
|
assert_eq!(text.to_string(), "fn main() {}\n");
|
|
|
|
return;
|
|
|
|
}
|
2016-05-15 04:41:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
panic!("no stdin");
|
2016-04-11 11:49:56 -05:00
|
|
|
}
|
|
|
|
|
2017-09-21 03:06:44 -05:00
|
|
|
// FIXME(#1990) restore this test
|
|
|
|
// #[test]
|
|
|
|
// fn stdin_disable_all_formatting_test() {
|
|
|
|
// let input = String::from("fn main() { println!(\"This should not be formatted.\"); }");
|
|
|
|
// let mut child = Command::new("./target/debug/rustfmt")
|
|
|
|
// .stdin(Stdio::piped())
|
|
|
|
// .stdout(Stdio::piped())
|
|
|
|
// .arg("--config-path=./tests/config/disable_all_formatting.toml")
|
|
|
|
// .spawn()
|
|
|
|
// .expect("failed to execute child");
|
|
|
|
|
|
|
|
// {
|
|
|
|
// let stdin = child.stdin.as_mut().expect("failed to get stdin");
|
|
|
|
// stdin
|
|
|
|
// .write_all(input.as_bytes())
|
|
|
|
// .expect("failed to write stdin");
|
|
|
|
// }
|
|
|
|
// let output = child.wait_with_output().expect("failed to wait on child");
|
|
|
|
// assert!(output.status.success());
|
|
|
|
// assert!(output.stderr.is_empty());
|
|
|
|
// assert_eq!(input, String::from_utf8(output.stdout).unwrap());
|
|
|
|
// }
|
2017-09-18 00:19:50 -05:00
|
|
|
|
2016-04-14 18:51:50 -05:00
|
|
|
#[test]
|
|
|
|
fn format_lines_errors_are_reported() {
|
|
|
|
let long_identifier = String::from_utf8(vec![b'a'; 239]).unwrap();
|
|
|
|
let input = Input::Text(format!("fn {}() {{}}", long_identifier));
|
|
|
|
let config = Config::default();
|
2017-07-05 04:31:37 -05:00
|
|
|
let (error_summary, _file_map, _report) =
|
|
|
|
format_input::<io::Stdout>(input, &config, None).unwrap();
|
2016-04-14 18:51:50 -05:00
|
|
|
assert!(error_summary.has_formatting_errors());
|
|
|
|
}
|
|
|
|
|
2015-05-28 12:23:07 -05:00
|
|
|
// For each file, run rustfmt and collect the output.
|
|
|
|
// Returns the number of files checked and the number of failures.
|
2016-04-04 18:02:22 -05:00
|
|
|
fn check_files<I>(files: I) -> (Vec<FormatReport>, u32, u32)
|
2017-06-11 23:01:41 -05:00
|
|
|
where
|
2017-12-08 07:16:47 -06:00
|
|
|
I: Iterator<Item = PathBuf>,
|
2015-05-28 12:23:07 -05:00
|
|
|
{
|
|
|
|
let mut count = 0;
|
|
|
|
let mut fails = 0;
|
2015-09-17 13:21:06 -05:00
|
|
|
let mut reports = vec![];
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2017-12-08 07:16:47 -06:00
|
|
|
for file_name in files.filter(|f| f.extension().map_or(false, |f| f == "rs")) {
|
|
|
|
debug!("Testing '{}'...", file_name.display());
|
2017-09-18 23:46:13 -05:00
|
|
|
|
2016-04-04 18:02:22 -05:00
|
|
|
match idempotent_check(file_name) {
|
2017-02-19 12:57:02 -06:00
|
|
|
Ok(ref report) if report.has_warnings() => {
|
|
|
|
print!("{}", report);
|
|
|
|
fails += 1;
|
|
|
|
}
|
2015-09-17 13:21:06 -05:00
|
|
|
Ok(report) => reports.push(report),
|
|
|
|
Err(msg) => {
|
|
|
|
print_mismatches(msg);
|
|
|
|
fails += 1;
|
|
|
|
}
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
2015-09-17 13:21:06 -05:00
|
|
|
|
2015-05-28 12:23:07 -05:00
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
(reports, count, fails)
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
|
|
|
|
2017-12-08 07:16:47 -06:00
|
|
|
fn print_mismatches(result: HashMap<PathBuf, Vec<Mismatch>>) {
|
2015-08-30 13:47:46 -05:00
|
|
|
let mut t = term::stdout().unwrap();
|
|
|
|
|
|
|
|
for (file_name, diff) in result {
|
2017-11-09 14:23:12 -06:00
|
|
|
print_diff(
|
|
|
|
diff,
|
2017-12-08 07:16:47 -06:00
|
|
|
|line_num| format!("\nMismatch at {}:{}:", file_name.display(), line_num),
|
2017-11-09 14:23:12 -06:00
|
|
|
Color::Auto,
|
|
|
|
);
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
2015-08-30 13:47:46 -05:00
|
|
|
|
2016-04-07 22:51:06 -05:00
|
|
|
t.reset().unwrap();
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
|
|
|
|
2017-12-08 07:16:47 -06:00
|
|
|
fn read_config(filename: &Path) -> Config {
|
2017-08-29 08:16:04 -05:00
|
|
|
let sig_comments = read_significant_comments(filename);
|
2016-08-09 15:11:27 -05:00
|
|
|
// Look for a config file... If there is a 'config' property in the significant comments, use
|
|
|
|
// that. Otherwise, if there are no significant comments at all, look for a config file with
|
|
|
|
// the same name as the test file.
|
2016-08-08 16:13:45 -05:00
|
|
|
let mut config = if !sig_comments.is_empty() {
|
2017-12-08 07:16:47 -06:00
|
|
|
get_config(sig_comments.get("config").map(Path::new))
|
2016-08-08 16:13:45 -05:00
|
|
|
} else {
|
2017-12-08 07:16:47 -06:00
|
|
|
get_config(filename.with_extension("toml").file_name().map(Path::new))
|
2016-08-09 15:10:48 -05:00
|
|
|
};
|
2016-01-17 22:06:00 -06:00
|
|
|
|
|
|
|
for (key, val) in &sig_comments {
|
|
|
|
if key != "target" && key != "config" {
|
2017-05-17 23:37:29 -05:00
|
|
|
config.override_value(key, val);
|
2016-01-17 22:06:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't generate warnings for to-do items.
|
2017-05-17 23:37:29 -05:00
|
|
|
config.set().report_todo(ReportTactic::Never);
|
2016-04-02 15:41:25 -05:00
|
|
|
|
2016-01-21 21:09:01 -06:00
|
|
|
config
|
|
|
|
}
|
2016-01-17 22:06:00 -06:00
|
|
|
|
2017-07-12 12:21:36 -05:00
|
|
|
fn format_file<P: Into<PathBuf>>(filepath: P, config: &Config) -> (FileMap, FormatReport) {
|
|
|
|
let filepath = filepath.into();
|
|
|
|
let input = Input::File(filepath);
|
2017-07-19 10:35:00 -05:00
|
|
|
let (_error_summary, file_map, report) =
|
2017-08-29 08:16:04 -05:00
|
|
|
format_input::<io::Stdout>(input, config, None).unwrap();
|
|
|
|
(file_map, report)
|
2016-01-17 22:06:00 -06:00
|
|
|
}
|
|
|
|
|
2017-12-08 07:16:47 -06:00
|
|
|
pub fn idempotent_check(
|
|
|
|
filename: PathBuf,
|
|
|
|
) -> Result<FormatReport, HashMap<PathBuf, Vec<Mismatch>>> {
|
2015-08-19 14:41:19 -05:00
|
|
|
let sig_comments = read_significant_comments(&filename);
|
2016-04-04 18:02:22 -05:00
|
|
|
let config = read_config(&filename);
|
2016-04-02 16:32:24 -05:00
|
|
|
let (file_map, format_report) = format_file(filename, &config);
|
2015-09-17 13:21:06 -05:00
|
|
|
|
2016-01-12 17:12:48 -06:00
|
|
|
let mut write_result = HashMap::new();
|
2016-05-15 04:41:05 -05:00
|
|
|
for &(ref filename, ref text) in &file_map {
|
2016-01-12 17:12:48 -06:00
|
|
|
let mut v = Vec::new();
|
|
|
|
// Won't panic, as we're not doing any IO.
|
|
|
|
write_system_newlines(&mut v, text, &config).unwrap();
|
|
|
|
// Won't panic, we are writing correct utf8.
|
|
|
|
let one_result = String::from_utf8(v).unwrap();
|
2017-12-08 07:16:47 -06:00
|
|
|
if let FileName::Real(ref filename) = *filename {
|
|
|
|
write_result.insert(filename.to_owned(), one_result);
|
|
|
|
}
|
2016-01-12 17:12:48 -06:00
|
|
|
}
|
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
let target = sig_comments.get("target").map(|x| &(*x)[..]);
|
|
|
|
|
2016-04-04 18:02:22 -05:00
|
|
|
handle_result(write_result, target).map(|_| format_report)
|
2015-09-17 13:21:06 -05:00
|
|
|
}
|
2015-08-19 14:41:19 -05:00
|
|
|
|
2016-08-09 15:11:27 -05:00
|
|
|
// Reads test config file using the supplied (optional) file name. If there's no file name or the
|
|
|
|
// file doesn't exist, just return the default config. Otherwise, the file must be read
|
|
|
|
// successfully.
|
2017-12-08 07:16:47 -06:00
|
|
|
fn get_config(config_file: Option<&Path>) -> Config {
|
2015-07-31 18:21:44 -05:00
|
|
|
let config_file_name = match config_file {
|
2015-09-17 13:21:06 -05:00
|
|
|
None => return Default::default(),
|
2015-07-31 18:21:44 -05:00
|
|
|
Some(file_name) => {
|
2017-12-08 07:16:47 -06:00
|
|
|
let mut full_path = PathBuf::from("tests/config/");
|
|
|
|
full_path.push(file_name);
|
|
|
|
if !full_path.exists() {
|
2016-08-08 16:13:45 -05:00
|
|
|
return Default::default();
|
|
|
|
};
|
2015-07-31 18:21:44 -05:00
|
|
|
full_path
|
|
|
|
}
|
|
|
|
};
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2017-05-25 02:08:08 -05:00
|
|
|
let mut def_config_file = fs::File::open(config_file_name).expect("Couldn't open config");
|
2015-05-28 12:23:07 -05:00
|
|
|
let mut def_config = String::new();
|
2017-06-15 18:49:49 -05:00
|
|
|
def_config_file
|
|
|
|
.read_to_string(&mut def_config)
|
|
|
|
.expect("Couldn't read config");
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2017-03-31 10:45:02 -05:00
|
|
|
Config::from_toml(&def_config).expect("Invalid toml")
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
|
|
|
|
2015-08-19 14:41:19 -05:00
|
|
|
// Reads significant comments of the form: // rustfmt-key: value
|
|
|
|
// into a hash map.
|
2017-12-08 07:16:47 -06:00
|
|
|
fn read_significant_comments(file_name: &Path) -> HashMap<String, String> {
|
|
|
|
let file =
|
|
|
|
fs::File::open(file_name).expect(&format!("Couldn't read file {}", file_name.display()));
|
2015-05-28 12:23:07 -05:00
|
|
|
let reader = BufReader::new(file);
|
2015-08-19 14:41:19 -05:00
|
|
|
let pattern = r"^\s*//\s*rustfmt-([^:]+):\s*(\S+)";
|
2017-08-29 08:16:04 -05:00
|
|
|
let regex = regex::Regex::new(pattern).expect("Failed creating pattern 1");
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2015-08-19 14:41:19 -05:00
|
|
|
// Matches lines containing significant comments or whitespace.
|
2015-09-10 17:52:57 -05:00
|
|
|
let line_regex = regex::Regex::new(r"(^\s*$)|(^\s*//\s*rustfmt-[^:]+:\s*\S+)")
|
2016-04-22 01:53:39 -05:00
|
|
|
.expect("Failed creating pattern 2");
|
2015-05-28 12:23:07 -05:00
|
|
|
|
2017-03-27 17:01:44 -05:00
|
|
|
reader
|
|
|
|
.lines()
|
2016-04-22 02:03:36 -05:00
|
|
|
.map(|line| line.expect("Failed getting line"))
|
2017-08-29 08:16:04 -05:00
|
|
|
.take_while(|line| line_regex.is_match(line))
|
2016-04-22 02:03:36 -05:00
|
|
|
.filter_map(|line| {
|
2017-05-16 09:24:38 -05:00
|
|
|
regex.captures_iter(&line).next().map(|capture| {
|
2017-06-11 23:01:41 -05:00
|
|
|
(
|
|
|
|
capture
|
|
|
|
.get(1)
|
|
|
|
.expect("Couldn't unwrap capture")
|
|
|
|
.as_str()
|
|
|
|
.to_owned(),
|
|
|
|
capture
|
|
|
|
.get(2)
|
|
|
|
.expect("Couldn't unwrap capture")
|
|
|
|
.as_str()
|
|
|
|
.to_owned(),
|
|
|
|
)
|
2017-05-16 09:24:38 -05:00
|
|
|
})
|
2017-03-27 17:25:59 -05:00
|
|
|
})
|
2016-04-22 02:03:36 -05:00
|
|
|
.collect()
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compare output to input.
|
2015-08-19 14:41:19 -05:00
|
|
|
// TODO: needs a better name, more explanation.
|
2017-06-11 23:01:41 -05:00
|
|
|
fn handle_result(
|
2017-12-08 07:16:47 -06:00
|
|
|
result: HashMap<PathBuf, String>,
|
2017-06-11 23:01:41 -05:00
|
|
|
target: Option<&str>,
|
2017-12-08 07:16:47 -06:00
|
|
|
) -> Result<(), HashMap<PathBuf, Vec<Mismatch>>> {
|
2015-05-28 12:23:07 -05:00
|
|
|
let mut failures = HashMap::new();
|
|
|
|
|
|
|
|
for (file_name, fmt_text) in result {
|
2015-08-19 14:41:19 -05:00
|
|
|
// If file is in tests/source, compare to file with same name in tests/target.
|
2016-04-04 18:02:22 -05:00
|
|
|
let target = get_target(&file_name, target);
|
2017-04-30 16:44:12 -05:00
|
|
|
let open_error = format!("Couldn't open target {:?}", &target);
|
|
|
|
let mut f = fs::File::open(&target).expect(&open_error);
|
2015-05-28 12:23:07 -05:00
|
|
|
|
|
|
|
let mut text = String::new();
|
2017-04-30 16:44:12 -05:00
|
|
|
let read_error = format!("Failed reading target {:?}", &target);
|
|
|
|
f.read_to_string(&mut text).expect(&read_error);
|
2015-09-17 13:21:06 -05:00
|
|
|
|
2017-10-06 11:53:55 -05:00
|
|
|
// Ignore LF and CRLF difference for Windows.
|
|
|
|
if !string_eq_ignore_newline_repr(&fmt_text, &text) {
|
2015-09-10 17:27:22 -05:00
|
|
|
let diff = make_diff(&text, &fmt_text, DIFF_CONTEXT_SIZE);
|
2017-06-11 23:01:41 -05:00
|
|
|
assert!(
|
|
|
|
!diff.is_empty(),
|
|
|
|
"Empty diff? Maybe due to a missing a newline at the end of a file?"
|
|
|
|
);
|
2015-08-30 13:47:46 -05:00
|
|
|
failures.insert(file_name, diff);
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-30 13:47:46 -05:00
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
if failures.is_empty() {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(failures)
|
2015-05-28 12:23:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Map source file paths to their target paths.
|
2017-12-08 07:16:47 -06:00
|
|
|
fn get_target(file_name: &Path, target: Option<&str>) -> PathBuf {
|
|
|
|
if let Some(n) = file_name
|
|
|
|
.components()
|
|
|
|
.position(|c| c.as_os_str() == "source")
|
|
|
|
{
|
|
|
|
let mut target_file_name = PathBuf::new();
|
|
|
|
for (i, c) in file_name.components().enumerate() {
|
|
|
|
if i == n {
|
|
|
|
target_file_name.push("target");
|
|
|
|
} else {
|
|
|
|
target_file_name.push(c.as_os_str());
|
|
|
|
}
|
|
|
|
}
|
2016-04-04 18:02:22 -05:00
|
|
|
if let Some(replace_name) = target {
|
2017-12-08 07:16:47 -06:00
|
|
|
target_file_name.with_file_name(replace_name)
|
2016-04-04 18:02:22 -05:00
|
|
|
} else {
|
|
|
|
target_file_name
|
2015-11-20 14:05:10 -06:00
|
|
|
}
|
2015-05-28 12:23:07 -05:00
|
|
|
} else {
|
2016-04-04 18:02:22 -05:00
|
|
|
// This is either and idempotence check or a self check
|
2015-05-28 12:23:07 -05:00
|
|
|
file_name.to_owned()
|
|
|
|
}
|
|
|
|
}
|
2015-12-28 05:53:34 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rustfmt_diff_make_diff_tests() {
|
|
|
|
let diff = make_diff("a\nb\nc\nd", "a\ne\nc\nd", 3);
|
2017-06-11 23:01:41 -05:00
|
|
|
assert_eq!(
|
|
|
|
diff,
|
|
|
|
vec![
|
|
|
|
Mismatch {
|
|
|
|
line_number: 1,
|
|
|
|
lines: vec![
|
|
|
|
DiffLine::Context("a".into()),
|
|
|
|
DiffLine::Resulting("b".into()),
|
|
|
|
DiffLine::Expected("e".into()),
|
|
|
|
DiffLine::Context("c".into()),
|
|
|
|
DiffLine::Context("d".into()),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
);
|
2015-12-28 05:53:34 -06:00
|
|
|
}
|
2016-08-09 20:21:04 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rustfmt_diff_no_diff_test() {
|
|
|
|
let diff = make_diff("a\nb\nc\nd", "a\nb\nc\nd", 3);
|
|
|
|
assert_eq!(diff, vec![]);
|
|
|
|
}
|
2017-10-06 11:53:55 -05:00
|
|
|
|
|
|
|
// Compare strings without distinguishing between CRLF and LF
|
|
|
|
fn string_eq_ignore_newline_repr(left: &str, right: &str) -> bool {
|
|
|
|
let left = CharsIgnoreNewlineRepr(left.chars().peekable());
|
|
|
|
let right = CharsIgnoreNewlineRepr(right.chars().peekable());
|
|
|
|
left.eq(right)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct CharsIgnoreNewlineRepr<'a>(Peekable<Chars<'a>>);
|
|
|
|
|
|
|
|
impl<'a> Iterator for CharsIgnoreNewlineRepr<'a> {
|
|
|
|
type Item = char;
|
|
|
|
fn next(&mut self) -> Option<char> {
|
2017-11-02 07:45:00 -05:00
|
|
|
self.0.next().map(|c| {
|
|
|
|
if c == '\r' {
|
|
|
|
if *self.0.peek().unwrap_or(&'\0') == '\n' {
|
|
|
|
self.0.next();
|
|
|
|
'\n'
|
|
|
|
} else {
|
|
|
|
'\r'
|
|
|
|
}
|
2017-10-06 11:53:55 -05:00
|
|
|
} else {
|
2017-11-02 07:45:00 -05:00
|
|
|
c
|
2017-10-06 11:53:55 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn string_eq_ignore_newline_repr_test() {
|
|
|
|
assert!(string_eq_ignore_newline_repr("", ""));
|
|
|
|
assert!(!string_eq_ignore_newline_repr("", "abc"));
|
|
|
|
assert!(!string_eq_ignore_newline_repr("abc", ""));
|
|
|
|
assert!(string_eq_ignore_newline_repr("a\nb\nc\rd", "a\nb\r\nc\rd"));
|
|
|
|
assert!(string_eq_ignore_newline_repr("a\r\n\r\n\r\nb", "a\n\n\nb"));
|
|
|
|
assert!(!string_eq_ignore_newline_repr("a\r\nbcd", "a\nbcdefghijk"));
|
|
|
|
}
|