1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
use crate::cargo::TestBinary;
use crate::config::*;
use crate::errors::*;
use crate::event_log::*;
use crate::path_utils::*;
use crate::process_handling::*;
use crate::report::report_coverage;
use crate::source_analysis::{LineAnalysis, SourceAnalysis};
use crate::test_loader::*;
use crate::traces::*;
use std::ffi::OsString;
use std::fs::create_dir_all;
use tracing::{debug, error, info, warn};
use tracing_subscriber::{filter::LevelFilter, EnvFilter};
pub mod branching;
pub mod cargo;
pub mod config;
pub mod errors;
pub mod event_log;
pub mod path_utils;
mod process_handling;
pub mod report;
pub mod source_analysis;
pub mod statemachine;
pub mod test_loader;
pub mod traces;
const RUST_LOG_ENV: &str = "RUST_LOG";
pub fn setup_logging(color: Color, debug: bool, verbose: bool) {
let base_exceptions = |env: EnvFilter| {
if debug {
env.add_directive("cargo_tarpaulin=trace".parse().unwrap())
} else if verbose {
env.add_directive("cargo_tarpaulin=debug".parse().unwrap())
} else {
env.add_directive("cargo_tarpaulin=info".parse().unwrap())
}
.add_directive(LevelFilter::INFO.into())
};
let filter = match std::env::var_os(RUST_LOG_ENV).map(OsString::into_string) {
Some(Ok(env)) => {
let mut filter = base_exceptions(EnvFilter::new(""));
for s in env.split(',') {
match s.parse() {
Ok(d) => filter = filter.add_directive(d),
Err(err) => println!("WARN ignoring log directive: `{}`: {}", s, err),
};
}
filter
}
_ => base_exceptions(EnvFilter::from_env(RUST_LOG_ENV)),
};
let with_ansi = color != Color::Never;
tracing_subscriber::FmtSubscriber::builder()
.with_max_level(tracing::Level::ERROR)
.with_env_filter(filter)
.with_ansi(with_ansi)
.init();
debug!("set up logging");
}
pub fn trace(configs: &[Config]) -> Result<TraceMap, RunError> {
let logger = create_logger(configs);
let mut tracemap = TraceMap::new();
let mut ret = 0;
let mut tarpaulin_result = Ok(());
let mut bad_threshold = Ok(());
for config in configs.iter() {
if config.name == "report" {
continue;
}
if let Some(log) = logger.as_ref() {
let name = config_name(config);
log.push_config(name);
}
create_target_dir(config);
match launch_tarpaulin(config, &logger) {
Ok((t, r)) => {
ret |= r;
if configs.len() > 1 {
bad_threshold = check_fail_threshold(&t, config);
}
tracemap.merge(&t);
}
Err(e) => {
error!("{}", e);
tarpaulin_result = tarpaulin_result.and(Err(e));
}
}
}
tracemap.dedup();
if let Err(bad_limit) = bad_threshold {
let _ = report_coverage(&configs[0], &tracemap);
Err(bad_limit)
} else if ret == 0 {
tarpaulin_result.map(|_| tracemap)
} else {
Err(RunError::TestFailed)
}
}
fn create_logger(configs: &[Config]) -> Option<EventLog> {
if configs.iter().any(|c| c.dump_traces) {
Some(EventLog::new(configs.iter().map(|x| x.root()).collect()))
} else {
None
}
}
fn create_target_dir(config: &Config) {
let path = config.target_dir();
if !path.exists() {
if let Err(e) = create_dir_all(&path) {
warn!("Failed to create target-dir {}", e);
}
}
}
fn config_name(config: &Config) -> String {
if config.name.is_empty() {
"<anonymous>".to_string()
} else {
config.name.clone()
}
}
fn check_fail_threshold(traces: &TraceMap, config: &Config) -> Result<(), RunError> {
let percent = traces.coverage_percentage() * 100.0;
match config.fail_under.as_ref() {
Some(limit) if percent < *limit => {
let error = RunError::BelowThreshold(percent, *limit);
error!("{}", error);
Err(error)
}
_ => Ok(()),
}
}
pub fn run(configs: &[Config]) -> Result<(), RunError> {
let tracemap = collect_tracemap(configs)?;
report_tracemap(configs, tracemap)
}
fn collect_tracemap(configs: &[Config]) -> Result<TraceMap, RunError> {
let mut tracemap = trace(configs)?;
if !configs.is_empty() {
for dir in get_source_walker(&configs[0]) {
tracemap.add_file(dir.path());
}
}
Ok(tracemap)
}
fn report_tracemap(configs: &[Config], tracemap: TraceMap) -> Result<(), RunError> {
let mut reported = false;
for c in configs.iter() {
if c.no_run || c.name != "report" {
continue;
}
report_coverage_with_check(c, &tracemap)?;
reported = true;
}
if !reported && !configs.is_empty() && !configs[0].no_run {
report_coverage_with_check(&configs[0], &tracemap)?;
}
Ok(())
}
fn report_coverage_with_check(c: &Config, tracemap: &TraceMap) -> Result<(), RunError> {
report_coverage(c, tracemap)?;
check_fail_threshold(tracemap, c)
}
pub fn launch_tarpaulin(
config: &Config,
logger: &Option<EventLog>,
) -> Result<(TraceMap, i32), RunError> {
if !config.name.is_empty() {
info!("Running config {}", config.name);
}
info!("Running Tarpaulin");
let mut result = TraceMap::new();
let mut return_code = 0i32;
info!("Building project");
let executables = cargo::get_tests(config)?;
if !config.no_run {
let project_analysis = SourceAnalysis::get_analysis(config);
let project_analysis = project_analysis.lines;
for exe in &executables {
if exe.should_panic() {
info!("Running a test executable that is expected to panic");
}
let coverage = get_test_coverage(exe, &project_analysis, config, false, logger)?;
if let Some(res) = coverage {
result.merge(&res.0);
return_code |= if exe.should_panic() {
(res.1 == 0).into()
} else {
res.1
};
}
if config.run_ignored {
let coverage = get_test_coverage(exe, &project_analysis, config, true, logger)?;
if let Some(res) = coverage {
result.merge(&res.0);
return_code |= res.1;
}
}
}
result.dedup();
}
Ok((result, return_code))
}