-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrusty_hook_test.rs
326 lines (295 loc) · 11.7 KB
/
rusty_hook_test.rs
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
use super::*;
use std::collections::HashMap;
#[cfg(test)]
pub(crate) mod utils {
use std::collections::HashMap;
pub(crate) const GIT_REV_PARSE_CMD: &str = "git rev-parse --show-toplevel";
#[allow(clippy::type_complexity)]
pub(crate) fn build_simple_command_runner(
outcome: Result<Option<String>, Option<String>>,
) -> Box<
dyn Fn(
&str,
Option<&str>,
bool,
Option<&HashMap<String, String>>,
) -> Result<Option<String>, Option<String>>,
> {
Box::new(
move |_: &str, _: Option<&str>, _: bool, _: Option<&HashMap<String, String>>| {
outcome.to_owned()
},
)
}
}
#[cfg(test)]
mod init_directory_tests {
use super::utils::build_simple_command_runner;
use super::*;
#[test]
fn returns_error_when_root_directory_detect_fails() {
let exp_err = "Failure determining git repo root directory";
let run_command = build_simple_command_runner(Err(Some(String::from(exp_err))));
let write_file = |_file_path: &str, _contents: &str, _x: bool| {
panic!("Should not get here");
};
let file_exists = |_path: &str| panic!("Should not get here");
let result = init(run_command, write_file, file_exists, vec![]);
assert_eq!(result, Err(String::from(exp_err)));
}
#[test]
fn should_return_error_when_hook_creation_fails() {
let run_command = build_simple_command_runner(Ok(Some(String::from(""))));
let write_file = |_file_path: &str, _contents: &str, _x: bool| Err(String::from(""));
let file_exists = |_path: &str| panic!("Should not get here");
let result = init(run_command, write_file, file_exists, vec![]);
assert_eq!(result, Err(String::from("Unable to create git hooks")));
}
#[test]
fn should_return_error_when_config_creation_fails() {
let run_command = build_simple_command_runner(Ok(Some(String::from(""))));
let write_file = |_file_path: &str, _contents: &str, _x: bool| Ok(());
let file_exists = |_path: &str| Err(());
let result = init(run_command, write_file, file_exists, vec![]);
assert_eq!(result, Err(String::from("Unable to create config file")));
}
#[test]
fn should_return_ok_on_success() {
let run_command = build_simple_command_runner(Ok(Some(String::from(""))));
let write_file = |_file_path: &str, _contents: &str, _x: bool| Ok(());
let file_exists = |_path: &str| Ok(false);
let result = init(run_command, write_file, file_exists, vec![]);
assert_eq!(result, Ok(()));
}
}
mod init_tests {
use super::*;
#[test]
fn invokes_init_directory_with_cwd() {
let run_command = |_cmd: &str,
dir: Option<&str>,
_stream_io: bool,
_env: Option<&HashMap<String, String>>| {
if let Some(target_dir) = dir {
if target_dir != "." {
return Err(None);
}
Ok(Some(String::from("")))
} else {
Ok(Some(String::from(".")))
}
};
let write_file = |_file_path: &str, _contents: &str, _x: bool| Ok(());
let file_exists = |_path: &str| Ok(false);
let result = init(run_command, write_file, file_exists, vec![]);
assert_eq!(result, Ok(()));
}
}
#[cfg(test)]
mod run_tests {
use super::utils::build_simple_command_runner;
use super::*;
#[test]
fn returns_error_when_root_directory_detect_fails() {
let exp_err = "Failure determining git repo root directory";
let run_command = build_simple_command_runner(Err(Some(String::from(exp_err))));
let read_file = |_file_path: &str| panic!("");
let file_exists = |_path: &str| panic!("");
let log = |_path: &str, _should_log: bool| panic!("");
let result = run(run_command, file_exists, read_file, log, "", None);
assert_eq!(result, Err(Some(String::from(exp_err))));
}
#[test]
fn returns_error_when_config_file_missing() {
let exp_err = config::NO_CONFIG_FILE_FOUND;
let run_command = build_simple_command_runner(Ok(Some(String::from(""))));
let read_file = |_file_path: &str| Err(());
let file_exists = |_path: &str| Ok(false);
let log = |_path: &str, _should_log: bool| panic!("");
let result = run(run_command, file_exists, read_file, log, "", None);
assert_eq!(result, Err(Some(String::from(exp_err))));
}
#[test]
fn returns_error_when_config_contents_unloadable() {
let exp_err = "Failed to parse config file";
let run_command = build_simple_command_runner(Ok(Some(String::from(""))));
let read_file = |_file_path: &str| Err(());
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, _should_log: bool| panic!("");
let result = run(run_command, file_exists, read_file, log, "", None);
assert_eq!(result, Err(Some(String::from(exp_err))));
}
#[test]
fn returns_ok_when_hook_missing() {
let contents = "[hooks]
pre-commit = 'cargo test'
";
let run_command = build_simple_command_runner(Ok(Some(String::from(""))));
let read_file = |_file_path: &str| Ok(String::from(contents));
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, _should_log: bool| panic!("");
let result = run(run_command, file_exists, read_file, log, "pre-push", None);
assert_eq!(result, Ok(()));
}
#[test]
fn returns_error_on_invalid_config() {
let exp_err = "Invalid rusty-hook config file";
let contents = "abc";
let run_command = build_simple_command_runner(Ok(Some(String::from(""))));
let read_file = |_file_path: &str| Ok(String::from(contents));
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, _should_log: bool| panic!("");
let result = run(run_command, file_exists, read_file, log, "pre-push", None);
assert_eq!(result, Err(Some(String::from(exp_err))));
}
#[test]
fn does_not_log_details_when_disabled() {
let contents = r#"[hooks]
pre-commit = "cargo test"
[logging]
verbose = false
"#;
let run_command = |cmd: &str,
_dir: Option<&str>,
stream_io: bool,
_env: Option<&HashMap<String, String>>| {
if cmd == "cargo test" && stream_io {
panic!("")
}
Ok(Some(String::from("")))
};
let read_file = |_file_path: &str| Ok(String::from(contents));
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, should_log: bool| {
if should_log {
panic!("")
}
};
let result = run(run_command, file_exists, read_file, log, "pre-commit", None);
assert_eq!(result, Ok(()));
}
#[test]
fn logs_details_when_enabled() {
let contents = r#"[hooks]
pre-commit = "cargo test"
[logging]
verbose = true
"#;
let run_command = |cmd: &str,
_dir: Option<&str>,
stream_io: bool,
_env: Option<&HashMap<String, String>>| {
if cmd == "cargo test" && !stream_io {
panic!("")
}
Ok(Some(String::from("")))
};
let read_file = |_file_path: &str| Ok(String::from(contents));
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, should_log: bool| {
if !should_log {
panic!("")
}
};
let result = run(run_command, file_exists, read_file, log, "pre-commit", None);
assert_eq!(result, Ok(()));
}
#[test]
fn returns_ok_when_script_succeeds() {
let contents = r#"[hooks]
pre-commit = "cargo test"
[logging]
verbose = false
"#;
let run_command = build_simple_command_runner(Ok(Some(String::from(""))));
let read_file = |_file_path: &str| Ok(String::from(contents));
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, _should_log: bool| ();
let result = run(run_command, file_exists, read_file, log, "pre-commit", None);
assert_eq!(result, Ok(()));
}
#[test]
fn returns_err_when_script_fails() {
let exp_err = "crashed";
let contents = r#"[hooks]
pre-commit = "cargo test"
[logging]
verbose = false
"#;
let run_command = |cmd: &str,
_dir: Option<&str>,
_stream_io: bool,
_env: Option<&HashMap<String, String>>| {
if cmd == "cargo test" {
return Err(Some(String::from(exp_err)));
}
Ok(Some(String::from("")))
};
let read_file = |_file_path: &str| Ok(String::from(contents));
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, _should_log: bool| ();
let result = run(run_command, file_exists, read_file, log, "pre-commit", None);
assert_eq!(result, Err(Some(String::from(exp_err))));
}
mod git_params {
use super::super::utils::GIT_REV_PARSE_CMD;
use super::*;
#[test]
fn handles_no_params_correctly() {
let contents = r#"[hooks]
pre-push = "echo %rh!"
[logging]
verbose = false
"#;
let run_command =
|c: &str, _: Option<&str>, _: bool, env: Option<&HashMap<String, String>>| {
assert!(env.is_none());
if c != GIT_REV_PARSE_CMD {
assert_eq!(c, "echo %rh!");
}
Ok(Some(String::new()))
};
let read_file = |_file_path: &str| Ok(String::from(contents));
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, _should_log: bool| ();
let result = run(run_command, file_exists, read_file, log, "pre-push", None);
assert!(result.is_ok());
}
#[test]
fn handles_params_correctly() {
let params = ".git/COMMIT_EDITMSG";
let hook_script = "echo %rh!";
let contents = format!(
r#"[hooks]
commit-msg = "{}"
[logging]
verbose = false
"#,
&hook_script
);
let run_command =
|c: &str, _: Option<&str>, _: bool, env: Option<&HashMap<String, String>>| {
if c != GIT_REV_PARSE_CMD {
assert!(env.is_some());
assert_eq!(c, &format!("echo {}", ¶ms));
let env = env.unwrap();
assert_eq!(env.len(), 1);
assert_eq!(env.get("RUSTY_HOOK_GIT_PARAMS").unwrap(), ¶ms);
}
Ok(Some(hook_script.to_owned()))
};
let read_file = |_file_path: &str| Ok(contents.to_owned());
let file_exists = |_path: &str| Ok(true);
let log = |_path: &str, _should_log: bool| ();
let result = run(
run_command,
file_exists,
read_file,
log,
"commit-msg",
Some(params.to_owned()),
);
assert!(result.is_ok());
}
}
}