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
extern crate itertools;
use self::itertools::Itertools;
use impl_prelude::*;
const CR_LF_ENDING: &'static str = "\r\n";
const CARRIAGE_RETURN_SYMBOL: &'static str = "\u{23ce}";
#[derive(Debug, Default, Clone, Copy)]
pub struct CheckWhitespace;
impl CheckWhitespace {
pub fn new() -> Self {
CheckWhitespace {}
}
}
impl Check for CheckWhitespace {
fn name(&self) -> &str {
"check-whitespace"
}
fn check(&self, ctx: &CheckGitContext, commit: &Commit) -> Result<CheckResult> {
let mut result = CheckResult::new();
let diff_tree = ctx.git()
.arg("diff-tree")
.arg("--no-commit-id")
.arg("--root")
.arg("-c")
.arg("--check")
.arg(commit.sha1.as_str())
.output()
.chain_err(|| "failed to construct diff-tree command")?;
if !diff_tree.status.success() {
let output = String::from_utf8_lossy(&diff_tree.stdout);
let crlf_msg = if output.contains(CR_LF_ENDING) {
" including CR/LF line endings"
} else {
""
};
let formatted_output = output.split('\n')
.dropping_back(1)
.map(|line| format!(" {}\n", line))
.join("")
.replace('\r', CARRIAGE_RETURN_SYMBOL);
result.add_error(format!("commit {} adds bad whitespace{}:\n\n{}",
commit.sha1,
crlf_msg,
formatted_output));
}
Ok(result)
}
}
#[cfg(test)]
mod tests {
use checks::CheckWhitespace;
use checks::test::*;
static DEFAULT_TOPIC: &'static str = "829cdf8cb069b8f8a634a034d3f85089271601cf";
static ALL_IGNORED_TOPIC: &'static str = "3a87e0f3f7430bbb81ebbd8ae8764b7f26384f1c";
static ALL_IGNORED_BLANKET_TOPIC: &'static str = "92cac7579a26f7d8449512476bd64b3000688fd5";
#[test]
fn test_check_whitespace_defaults() {
let check = CheckWhitespace::new();
let mut conf = GitCheckConfiguration::new();
conf.add_check(&check);
let result = test_check("test_check_whitespace_defaults", DEFAULT_TOPIC, &conf);
assert_eq!(result.warnings().len(), 0);
assert_eq!(result.alerts().len(), 0);
assert_eq!(result.errors().len(), 1);
assert_eq!(&result.errors()[0],
"commit 829cdf8cb069b8f8a634a034d3f85089271601cf adds bad whitespace including \
CR/LF line endings:\n\
\n \
crlf-file:1: trailing whitespace.\n \
+This file contains CRLF lines.\u{23ce}\n \
crlf-file:2: trailing whitespace.\n \
+\u{23ce}\n \
crlf-file:3: trailing whitespace.\n \
+line1\u{23ce}\n \
crlf-file:4: trailing whitespace.\n \
+line2\u{23ce}\n \
crlf-mixed-file:3: trailing whitespace.\n \
+crlf\u{23ce}\n \
extra-newlines:2: new blank line at EOF.\n \
mixed-tabs-spaces:3: space before tab in indent.\n \
+ \tmixed indent\n \
trailing-spaces:3: trailing whitespace.\n \
+trailing \n \
trailing-tab:3: trailing whitespace.\n \
+trailing\t\n");
assert_eq!(result.temporary(), false);
assert_eq!(result.allowed(), false);
assert_eq!(result.pass(), false);
}
#[test]
fn test_check_whitespace_all_ignored() {
let check = CheckWhitespace::new();
let mut conf = GitCheckConfiguration::new();
conf.add_check(&check);
let result = test_check("test_check_whitespace_all_ignored",
ALL_IGNORED_TOPIC,
&conf);
assert_eq!(result.warnings().len(), 0);
assert_eq!(result.alerts().len(), 0);
assert_eq!(result.errors().len(), 0);
assert_eq!(result.temporary(), false);
assert_eq!(result.allowed(), false);
assert_eq!(result.pass(), true);
}
#[test]
fn test_check_whitespace_all_ignored_blanket() {
let check = CheckWhitespace::new();
let mut conf = GitCheckConfiguration::new();
conf.add_check(&check);
let result = test_check("test_check_whitespace_all_ignored_blanket",
ALL_IGNORED_BLANKET_TOPIC,
&conf);
assert_eq!(result.warnings().len(), 0);
assert_eq!(result.alerts().len(), 0);
assert_eq!(result.errors().len(), 0);
assert_eq!(result.temporary(), false);
assert_eq!(result.allowed(), false);
assert_eq!(result.pass(), true);
}
}