Merge pull request #515 from Wafflespeanut/coverage

Coverage mode for rustfmt...
This commit is contained in:
Marcus Klaas de Vries 2015-10-24 12:06:27 +02:00
commit 58ff0d8730
9 changed files with 86 additions and 26 deletions

View File

@ -108,7 +108,7 @@ fn determine_params<I>(args: I) -> Option<(PathBuf, WriteMode)>
opts.optopt("",
"write-mode",
"mode to write in",
"[replace|overwrite|display|diff]");
"[replace|overwrite|display|diff|coverage]");
let matches = match opts.parse(args) {
Ok(m) => m,
Err(e) => {

View File

@ -422,7 +422,7 @@ impl Rewrite for ast::Block {
return Some(user_str);
}
let mut visitor = FmtVisitor::from_codemap(context.codemap, context.config);
let mut visitor = FmtVisitor::from_codemap(context.codemap, context.config, None);
visitor.block_indent = context.block_indent;
let prefix = match self.rules {
@ -833,7 +833,7 @@ impl Rewrite for ast::Arm {
let attr_str = if !attrs.is_empty() {
// We only use this visitor for the attributes, should we use it for
// more?
let mut attr_visitor = FmtVisitor::from_codemap(context.codemap, context.config);
let mut attr_visitor = FmtVisitor::from_codemap(context.codemap, context.config, None);
attr_visitor.block_indent = context.block_indent;
attr_visitor.last_pos = attrs[0].span.lo;
if attr_visitor.visit_attrs(attrs) {

View File

@ -100,7 +100,7 @@ fn write_file(text: &StringBuffer,
let file = try!(File::create(&filename));
try!(write_system_newlines(file, text, config));
}
WriteMode::Display => {
WriteMode::Display | WriteMode::Coverage => {
println!("{}:\n", filename);
let stdout = stdout();
let stdout_lock = stdout.lock();

View File

@ -182,6 +182,8 @@ pub enum WriteMode {
Diff,
// Return the result as a mapping from filenames to Strings.
Return,
// Display how much of the input file was processed
Coverage,
}
impl FromStr for WriteMode {
@ -193,6 +195,7 @@ impl FromStr for WriteMode {
"display" => Ok(WriteMode::Display),
"overwrite" => Ok(WriteMode::Overwrite),
"diff" => Ok(WriteMode::Diff),
"coverage" => Ok(WriteMode::Coverage),
_ => Err(()),
}
}
@ -277,11 +280,11 @@ impl fmt::Display for FormatReport {
}
// Formatting which depends on the AST.
fn fmt_ast(krate: &ast::Crate, codemap: &CodeMap, config: &Config) -> FileMap {
fn fmt_ast(krate: &ast::Crate, codemap: &CodeMap, config: &Config, mode: WriteMode) -> FileMap {
let mut file_map = FileMap::new();
for (path, module) in modules::list_files(krate, codemap) {
let path = path.to_str().unwrap();
let mut visitor = FmtVisitor::from_codemap(codemap, config);
let mut visitor = FmtVisitor::from_codemap(codemap, config, Some(mode));
visitor.format_separate_mod(module, path);
file_map.insert(path.to_owned(), visitor.buffer);
}
@ -370,10 +373,10 @@ pub fn fmt_lines(file_map: &mut FileMap, config: &Config) -> FormatReport {
report
}
pub fn format(file: &Path, config: &Config) -> FileMap {
pub fn format(file: &Path, config: &Config, mode: WriteMode) -> FileMap {
let parse_session = ParseSess::new();
let krate = parse::parse_crate_from_file(file, Vec::new(), &parse_session);
let mut file_map = fmt_ast(&krate, parse_session.codemap(), config);
let mut file_map = fmt_ast(&krate, parse_session.codemap(), config, mode);
// For some reason, the codemap does not include terminating
// newlines so we must add one on for each file. This is sad.
@ -387,7 +390,7 @@ pub fn format(file: &Path, config: &Config) -> FileMap {
// write_mode determines what happens to the result of running rustfmt, see
// WriteMode.
pub fn run(file: &Path, write_mode: WriteMode, config: &Config) {
let mut result = format(file, config);
let mut result = format(file, config, write_mode);
println!("{}", fmt_lines(&mut result, config));

View File

@ -8,8 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use WriteMode;
use visitor::FmtVisitor;
use syntax::codemap::{self, BytePos, Span, Pos};
use comment::{CodeCharKind, CommentCodeSlices, rewrite_comment};
@ -80,7 +80,7 @@ impl<'a> FmtVisitor<'a> {
fn write_snippet_inner<F>(&mut self,
big_snippet: &str,
big_diff: usize,
snippet: &str,
old_snippet: &str,
process_last_snippet: F)
where F: Fn(&mut FmtVisitor, &str, &str)
{
@ -91,6 +91,26 @@ impl<'a> FmtVisitor<'a> {
let mut last_wspace = None;
let mut rewrite_next_comment = true;
fn replace_chars(string: &str) -> String {
string.chars()
.map(|ch| {
match ch.is_whitespace() {
true => ch,
false => 'X',
}
})
.collect()
}
let replaced = match self.write_mode {
Some(mode) => match mode {
WriteMode::Coverage => replace_chars(old_snippet),
_ => old_snippet.to_owned(),
},
None => old_snippet.to_owned(),
};
let snippet = &*replaced;
for (kind, offset, subslice) in CommentCodeSlices::new(snippet) {
if let CodeCharKind::Comment = kind {
let last_char = big_snippet[..(offset + big_diff)]

View File

@ -14,7 +14,7 @@ use syntax::visit;
use strings::string_buffer::StringBuffer;
use Indent;
use {Indent, WriteMode};
use utils;
use config::Config;
use rewrite::{Rewrite, RewriteContext};
@ -29,6 +29,7 @@ pub struct FmtVisitor<'a> {
// TODO: RAII util for indenting
pub block_indent: Indent,
pub config: &'a Config,
pub write_mode: Option<WriteMode>,
}
impl<'a> FmtVisitor<'a> {
@ -356,7 +357,10 @@ impl<'a> FmtVisitor<'a> {
}
}
pub fn from_codemap(codemap: &'a CodeMap, config: &'a Config) -> FmtVisitor<'a> {
pub fn from_codemap(codemap: &'a CodeMap,
config: &'a Config,
mode: Option<WriteMode>)
-> FmtVisitor<'a> {
FmtVisitor {
codemap: codemap,
buffer: StringBuffer::new(),
@ -366,6 +370,7 @@ impl<'a> FmtVisitor<'a> {
alignment: 0,
},
config: config,
write_mode: mode,
}
}

View File

@ -0,0 +1,6 @@
/// Here's a doc comment!
fn main() {
// foo is bar
let foo = "bar";
// loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong comment!!!!!
}

View File

@ -0,0 +1,6 @@
/// Here's a doc comment!
fn main() {
XX XXX XX XXX
let foo = "bar";
XX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXX
}

View File

@ -43,13 +43,25 @@ fn system_tests() {
// Turn a DirEntry into a String that represents the relative path to the
// file.
let files = files.map(get_path_string);
let (_reports, count, fails) = check_files(files);
let (_reports, count, fails) = check_files(files, WriteMode::Return);
// Display results.
println!("Ran {} system tests.", count);
assert!(fails == 0, "{} system tests failed", fails);
}
// 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);
}
// Idempotence tests. Files in tests/target are checked to be unaltered by
// rustfmt.
#[test]
@ -59,7 +71,7 @@ fn idempotence_tests() {
.ok()
.expect("Couldn't read target dir.")
.map(get_path_string);
let (_reports, count, fails) = check_files(files);
let (_reports, count, fails) = check_files(files, WriteMode::Return);
// Display results.
println!("Ran {} idempotent tests.", count);
@ -78,7 +90,7 @@ fn self_tests() {
// Hack because there's no `IntoIterator` impl for `[T; N]`.
let files = files.chain(Some("src/lib.rs".to_owned()).into_iter());
let (reports, count, fails) = check_files(files);
let (reports, count, fails) = check_files(files, WriteMode::Return);
let mut warnings = 0;
// Display results.
@ -97,7 +109,7 @@ fn self_tests() {
// For each file, run rustfmt and collect the output.
// Returns the number of files checked and the number of failures.
fn check_files<I>(files: I) -> (Vec<FormatReport>, u32, u32)
fn check_files<I>(files: I, write_mode: WriteMode) -> (Vec<FormatReport>, u32, u32)
where I: Iterator<Item = String>
{
let mut count = 0;
@ -107,7 +119,7 @@ fn check_files<I>(files: I) -> (Vec<FormatReport>, u32, u32)
for file_name in files.filter(|f| f.ends_with(".rs")) {
println!("Testing '{}'...", file_name);
match idempotent_check(file_name) {
match idempotent_check(file_name, write_mode) {
Ok(report) => reports.push(report),
Err(msg) => {
print_mismatches(msg);
@ -132,7 +144,9 @@ fn print_mismatches(result: HashMap<String, Vec<Mismatch>>) {
assert!(t.reset().unwrap());
}
pub fn idempotent_check(filename: String) -> Result<FormatReport, HashMap<String, Vec<Mismatch>>> {
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)[..]));
@ -145,14 +159,14 @@ pub fn idempotent_check(filename: String) -> Result<FormatReport, HashMap<String
// Don't generate warnings for to-do items.
config.report_todo = ReportTactic::Never;
let mut file_map = format(Path::new(&filename), &config);
let mut file_map = format(Path::new(&filename), &config, write_mode);
let format_report = fmt_lines(&mut file_map, &config);
// Won't panic, as we're not doing any IO.
let write_result = filemap::write_all_files(&file_map, WriteMode::Return, &config).unwrap();
let target = sig_comments.get("target").map(|x| &(*x)[..]);
handle_result(write_result, target).map(|_| format_report)
handle_result(write_result, target, write_mode).map(|_| format_report)
}
// Reads test config file from comments and reads its contents.
@ -205,13 +219,14 @@ fn read_significant_comments(file_name: &str) -> HashMap<String, String> {
// Compare output to input.
// TODO: needs a better name, more explanation.
fn handle_result(result: HashMap<String, String>,
target: Option<&str>)
target: Option<&str>,
write_mode: WriteMode)
-> Result<(), HashMap<String, Vec<Mismatch>>> {
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.
let target = get_target(&file_name, target);
let target = get_target(&file_name, target, write_mode);
let mut f = fs::File::open(&target).ok().expect("Couldn't open target.");
let mut text = String::new();
@ -231,9 +246,14 @@ fn handle_result(result: HashMap<String, String>,
}
// Map source file paths to their target paths.
fn get_target(file_name: &str, target: Option<&str>) -> String {
fn get_target(file_name: &str, target: Option<&str>, write_mode: WriteMode) -> String {
let file_path = Path::new(file_name);
let source_path_prefix = Path::new("tests/source/");
let (source_path_prefix, target_path_prefix) = match write_mode {
WriteMode::Coverage => (Path::new("tests/coverage-source/"),
"tests/coverage-target/"),
_ => (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()
@ -246,7 +266,7 @@ fn get_target(file_name: &str, target: Option<&str>) -> String {
};
let base = target.unwrap_or(new_target);
format!("tests/target/{}", base)
format!("{}{}", target_path_prefix, base)
} else {
file_name.to_owned()
}