rust/tests/system.rs

343 lines
12 KiB
Rust
Raw Normal View History

2015-05-28 19:23:07 +02: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.
extern crate rustfmt;
extern crate diff;
extern crate regex;
extern crate term;
2015-05-28 19:23:07 +02:00
use std::collections::HashMap;
2015-05-28 19:23:07 +02:00
use std::fs;
use std::io::{self, Read, BufRead, BufReader};
use std::path::Path;
2015-05-28 19:23:07 +02:00
use rustfmt::*;
use rustfmt::filemap::write_system_newlines;
use rustfmt::config::{Config, ReportTactic, WriteMode};
use rustfmt::rustfmt_diff::*;
2015-05-28 19:23:07 +02:00
static DIFF_CONTEXT_SIZE: usize = 3;
2015-05-28 19:23:07 +02:00
fn get_path_string(dir_entry: io::Result<fs::DirEntry>) -> String {
2015-09-11 00:53:21 +02:00
let path = dir_entry.ok().expect("Couldn't get DirEntry.").path();
2015-05-28 19:23:07 +02:00
2015-09-11 00:53:21 +02:00
path.to_str().expect("Couldn't stringify path.").to_owned()
2015-05-28 19:23:07 +02: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
// overriden by annotations in the source file. The input and output must match
// exactly.
// FIXME(#28) would be good to check for error messages and fail on them, or at
// least report.
2015-05-28 19:23:07 +02:00
#[test]
fn system_tests() {
// Get all files in the tests/source directory.
2015-09-11 00:53:21 +02:00
let files = fs::read_dir("tests/source").ok().expect("Couldn't read source dir.");
// Turn a DirEntry into a String that represents the relative path to the
// file.
2015-05-28 19:23:07 +02:00
let files = files.map(get_path_string);
let (_reports, count, fails) = check_files(files, WriteMode::Default);
2015-05-28 19:23:07 +02:00
// Display results.
println!("Ran {} system tests.", count);
assert!(fails == 0, "{} system tests failed", fails);
}
2015-05-28 19:23:07 +02:00
2015-10-23 16:42:07 +02:00
// Do the same for tests/coverage-source directory
// the only difference is the coverage mode
#[test]
fn coverage_tests() {
let files = fs::read_dir("tests/coverage-source").ok().expect("Couldn't read source dir.");
let files = files.map(get_path_string);
let (_reports, count, fails) = check_files(files, WriteMode::Coverage);
println!("Ran {} tests in coverage mode.", count);
assert!(fails == 0, "{} tests failed", fails);
}
#[test]
fn checkstyle_test() {
let filename = "tests/source/fn-single-line.rs".to_string();
let expected = "tests/writemode/checkstyle.xml";
let output = run_rustfmt(filename.clone(), WriteMode::Checkstyle);
let mut expected_file = fs::File::open(&expected)
.ok()
.expect("Couldn't open target.");
let mut expected_text = String::new();
expected_file.read_to_string(&mut expected_text)
.ok()
.expect("Failed reading target.");
let compare = make_diff(&expected_text, &output, DIFF_CONTEXT_SIZE);
if compare.len() > 0 {
let mut failures = HashMap::new();
failures.insert(filename, compare);
print_mismatches(failures);
assert!(false, "Text does not match expected output");
}
}
// Idempotence tests. Files in tests/target are checked to be unaltered by
// rustfmt.
#[test]
fn idempotence_tests() {
// Get all files in the tests/target directory.
let files = fs::read_dir("tests/target")
.ok()
.expect("Couldn't read target dir.")
.map(get_path_string);
let (_reports, count, fails) = check_files(files, WriteMode::Default);
// Display results.
println!("Ran {} idempotent tests.", count);
assert!(fails == 0, "{} idempotent tests failed", fails);
}
// 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")
.ok()
.expect("Couldn't read src dir.")
.chain(fs::read_dir("tests").ok().expect("Couldn't read tests dir."))
.map(get_path_string);
// Hack because there's no `IntoIterator` impl for `[T; N]`.
let files = files.chain(Some("src/lib.rs".to_owned()).into_iter());
2015-05-28 19:23:07 +02:00
let (reports, count, fails) = check_files(files, WriteMode::Default);
let mut warnings = 0;
2015-05-28 19:23:07 +02:00
// Display results.
println!("Ran {} self tests.", count);
assert!(fails == 0, "{} self tests failed", fails);
for format_report in reports {
println!("{}", format_report);
warnings += format_report.warning_count();
}
2015-09-24 01:15:08 +02:00
assert!(warnings == 0,
"Rustfmt's code generated {} warnings",
warnings);
2015-05-28 19:23:07 +02:00
}
// For each file, run rustfmt and collect the output.
// Returns the number of files checked and the number of failures.
2015-10-23 16:42:07 +02:00
fn check_files<I>(files: I, write_mode: WriteMode) -> (Vec<FormatReport>, u32, u32)
2015-05-28 19:23:07 +02:00
where I: Iterator<Item = String>
{
let mut count = 0;
let mut fails = 0;
let mut reports = vec![];
2015-05-28 19:23:07 +02:00
for file_name in files.filter(|f| f.ends_with(".rs")) {
println!("Testing '{}'...", file_name);
2015-10-23 16:42:07 +02:00
match idempotent_check(file_name, write_mode) {
Ok(report) => reports.push(report),
Err(msg) => {
print_mismatches(msg);
fails += 1;
}
2015-05-28 19:23:07 +02:00
}
2015-05-28 19:23:07 +02:00
count += 1;
}
(reports, count, fails)
2015-05-28 19:23:07 +02:00
}
fn print_mismatches(result: HashMap<String, Vec<Mismatch>>) {
let mut t = term::stdout().unwrap();
for (file_name, diff) in result {
2015-09-24 01:15:08 +02:00
print_diff(diff,
|line_num| format!("\nMismatch at {}:{}:", file_name, line_num));
2015-05-28 19:23:07 +02:00
}
assert!(t.reset().unwrap());
2015-05-28 19:23:07 +02:00
}
pub fn run_rustfmt(filename: String, write_mode: WriteMode) -> String {
let sig_comments = read_significant_comments(&filename);
let mut config = get_config(sig_comments.get("config").map(|x| &(*x)[..]));
for (key, val) in &sig_comments {
if key != "target" && key != "config" {
config.override_value(key, val);
}
}
// Don't generate warnings for to-do items.
config.report_todo = ReportTactic::Never;
// Simulate run()
let mut out = Vec::new();
let file_map = format(Path::new(&filename), &config, write_mode);
let _ = filemap::write_all_files(&file_map, &mut out, write_mode, &config);
String::from_utf8(out).unwrap()
}
2015-10-23 16:42:07 +02:00
pub fn idempotent_check(filename: String,
write_mode: WriteMode)
-> Result<FormatReport, HashMap<String, Vec<Mismatch>>> {
let sig_comments = read_significant_comments(&filename);
let mut config = get_config(sig_comments.get("config").map(|x| &(*x)[..]));
for (key, val) in &sig_comments {
if key != "target" && key != "config" {
config.override_value(key, val);
}
}
// Don't generate warnings for to-do items.
config.report_todo = ReportTactic::Never;
2015-05-28 19:23:07 +02:00
2015-10-23 16:42:07 +02:00
let mut file_map = format(Path::new(&filename), &config, write_mode);
let format_report = fmt_lines(&mut file_map, &config);
let mut write_result = HashMap::new();
for (filename, text) in file_map.iter() {
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();
write_result.insert(filename.clone(), one_result);
}
let target = sig_comments.get("target").map(|x| &(*x)[..]);
2015-10-23 16:42:07 +02:00
handle_result(write_result, target, write_mode).map(|_| format_report)
}
// Reads test config file from comments and reads its contents.
fn get_config(config_file: Option<&str>) -> Config {
let config_file_name = match config_file {
None => return Default::default(),
Some(file_name) => {
let mut full_path = "tests/config/".to_owned();
full_path.push_str(&file_name);
full_path
}
};
2015-05-28 19:23:07 +02:00
2015-09-01 23:51:57 +02:00
let mut def_config_file = fs::File::open(config_file_name)
.ok()
2015-09-11 00:53:21 +02:00
.expect("Couldn't open config.");
2015-05-28 19:23:07 +02:00
let mut def_config = String::new();
2015-09-11 00:53:21 +02:00
def_config_file.read_to_string(&mut def_config).ok().expect("Couldn't read config.");
2015-05-28 19:23:07 +02:00
Config::from_toml(&def_config)
2015-05-28 19:23:07 +02:00
}
// Reads significant comments of the form: // rustfmt-key: value
// into a hash map.
fn read_significant_comments(file_name: &str) -> HashMap<String, String> {
2015-09-01 23:51:57 +02:00
let file = fs::File::open(file_name)
.ok()
2015-09-11 00:53:21 +02:00
.expect(&format!("Couldn't read file {}.", file_name));
2015-05-28 19:23:07 +02:00
let reader = BufReader::new(file);
let pattern = r"^\s*//\s*rustfmt-([^:]+):\s*(\S+)";
2015-05-28 19:23:07 +02:00
let regex = regex::Regex::new(&pattern).ok().expect("Failed creating pattern 1.");
// Matches lines containing significant comments or whitespace.
let line_regex = regex::Regex::new(r"(^\s*$)|(^\s*//\s*rustfmt-[^:]+:\s*\S+)")
.ok()
.expect("Failed creating pattern 2.");
2015-05-28 19:23:07 +02:00
reader.lines()
2015-09-09 23:14:54 +02:00
.map(|line| line.ok().expect("Failed getting line."))
.take_while(|line| line_regex.is_match(&line))
.filter_map(|line| {
regex.captures_iter(&line).next().map(|capture| {
2015-09-11 00:53:21 +02:00
(capture.at(1).expect("Couldn't unwrap capture.").to_owned(),
capture.at(2).expect("Couldn't unwrap capture.").to_owned())
})
2015-09-09 23:14:54 +02:00
})
.collect()
2015-05-28 19:23:07 +02:00
}
// Compare output to input.
// TODO: needs a better name, more explanation.
fn handle_result(result: HashMap<String, String>,
2015-10-23 16:42:07 +02:00
target: Option<&str>,
write_mode: WriteMode)
-> Result<(), HashMap<String, Vec<Mismatch>>> {
2015-05-28 19:23:07 +02:00
let mut failures = HashMap::new();
for (file_name, fmt_text) in result {
// If file is in tests/source, compare to file with same name in tests/target.
2015-10-23 16:42:07 +02:00
let target = get_target(&file_name, target, write_mode);
2015-09-11 00:53:21 +02:00
let mut f = fs::File::open(&target).ok().expect("Couldn't open target.");
2015-05-28 19:23:07 +02:00
let mut text = String::new();
f.read_to_string(&mut text).ok().expect("Failed reading target.");
2015-05-28 19:23:07 +02:00
if fmt_text != text {
let diff = make_diff(&text, &fmt_text, DIFF_CONTEXT_SIZE);
failures.insert(file_name, diff);
2015-05-28 19:23:07 +02:00
}
}
if failures.is_empty() {
Ok(())
} else {
Err(failures)
2015-05-28 19:23:07 +02:00
}
}
// Map source file paths to their target paths.
2015-10-23 16:42:07 +02:00
fn get_target(file_name: &str, target: Option<&str>, write_mode: WriteMode) -> String {
let file_path = Path::new(file_name);
2015-10-23 16:42:07 +02:00
let (source_path_prefix, target_path_prefix) = match write_mode {
2015-11-20 21:05:10 +01:00
WriteMode::Coverage => {
(Path::new("tests/coverage-source/"),
"tests/coverage-target/")
}
2015-10-23 16:42:07 +02:00
_ => (Path::new("tests/source/"), "tests/target/"),
};
if file_path.starts_with(source_path_prefix) {
let mut components = file_path.components();
// Can't skip(2) as the resulting iterator can't as_path()
components.next();
components.next();
let new_target = match components.as_path().to_str() {
Some(string) => string,
None => file_name,
};
let base = target.unwrap_or(new_target);
2015-05-28 19:23:07 +02:00
2015-10-23 16:42:07 +02:00
format!("{}{}", target_path_prefix, base)
2015-05-28 19:23:07 +02:00
} else {
file_name.to_owned()
}
}
2015-12-28 12:53:34 +01:00
#[test]
fn rustfmt_diff_make_diff_tests() {
let diff = make_diff("a\nb\nc\nd", "a\ne\nc\nd", 3);
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())],
}]);
}