Skip to content

Commit eb5440a

Browse files
committed
Add tests for types, types_or, exclude_types
1 parent 10328bd commit eb5440a

File tree

3 files changed

+80
-10
lines changed

3 files changed

+80
-10
lines changed

src/hook.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use rayon::iter::{IntoParallelIterator, ParallelIterator};
1515
use regex::Regex;
1616
use thiserror::Error;
1717
use tokio::process::Command;
18-
use tracing::{debug, error};
18+
use tracing::{debug, error, trace};
1919
use unicode_width::UnicodeWidthStr;
2020
use url::Url;
2121

@@ -662,9 +662,13 @@ async fn run_hook(
662662
let filenames: Vec<_> = filenames
663663
.filter(|&filename| {
664664
let path = Path::new(filename);
665-
// TODO: log error?
666-
let file_tags = tags_from_path(path).unwrap_or_default();
667-
filter.filter(&file_tags)
665+
match tags_from_path(path) {
666+
Ok(tags) => filter.filter(&tags),
667+
Err(err) => {
668+
trace!("Failed to get tags for {filename}: {err}");
669+
false
670+
}
671+
}
668672
})
669673
.collect();
670674

src/identify.rs

+2
Original file line numberDiff line numberDiff line change
@@ -808,5 +808,7 @@ mod tests {
808808
fn tags_from_filename() {
809809
let tags = super::tags_from_filename(Path::new("test.py"));
810810
assert_eq!(tags, vec!["python", "text"]);
811+
let tags = super::tags_from_filename(Path::new("data.json"));
812+
assert_eq!(tags, vec!["json", "text"]);
811813
}
812814
}

tests/run.rs

+70-6
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ fn skips() -> Result<()> {
199199
Ok(())
200200
}
201201

202+
/// Test global `files`, `exclude`, and hook level `files`, `exclude`.
202203
#[test]
203204
fn files_and_exclude() -> Result<()> {
204205
let context = TestContext::new();
@@ -264,7 +265,7 @@ fn files_and_exclude() -> Result<()> {
264265
- id: trailing-whitespace
265266
files: valid.json
266267
- id: end-of-file-fixer
267-
exclude: (valid.json|file.txt)
268+
exclude: (valid.json|main.py)
268269
- id: check-json
269270
"
270271
})?;
@@ -285,17 +286,80 @@ fn files_and_exclude() -> Result<()> {
285286
- exit code: 1
286287
- files were modified by this hook
287288
Fixing valid.json
288-
fix end of files.........................................................Failed
289-
- hook id: end-of-file-fixer
289+
fix end of files.........................................................Passed
290+
check json...............................................................Passed
291+
292+
----- stderr -----
293+
"#);
294+
295+
Ok(())
296+
}
297+
298+
/// Test selecting files by type, `types`, `types_or`, and `exclude_types`.
299+
#[test]
300+
fn file_types() -> Result<()> {
301+
let context = TestContext::new();
302+
303+
context.init_project();
304+
305+
let cwd = context.workdir();
306+
cwd.child("file.txt").write_str("Hello, world! ")?;
307+
cwd.child("json.json").write_str("{}\n ")?;
308+
cwd.child("main.py").write_str(r#"print "abc" "#)?;
309+
310+
// Global files and exclude.
311+
context
312+
.workdir()
313+
.child(".pre-commit-config.yaml")
314+
.write_str(indoc::indoc! {r#"
315+
repos:
316+
- repo: https://github.com/pre-commit/pre-commit-hooks
317+
rev: v5.0.0
318+
hooks:
319+
- id: trailing-whitespace
320+
types: [ "json" ]
321+
- id: trailing-whitespace
322+
types_or: [ "json", "python" ]
323+
- id: trailing-whitespace
324+
exclude_types: [ "json" ]
325+
- id: trailing-whitespace
326+
types: [ "json" ]
327+
exclude_types: [ "json" ]
328+
"#
329+
})?;
330+
331+
Command::new("git")
332+
.arg("add")
333+
.arg(".")
334+
.current_dir(cwd)
335+
.assert()
336+
.success();
337+
338+
cmd_snapshot!(context.filters(), context.run(), @r#"
339+
success: true
340+
exit_code: 0
341+
----- stdout -----
342+
Cloning https://github.com/pre-commit/[email protected]
343+
Installing environment for https://github.com/pre-commit/[email protected]
344+
trim trailing whitespace.................................................Failed
345+
- hook id: trailing-whitespace
346+
- exit code: 1
347+
- files were modified by this hook
348+
Fixing json.json
349+
trim trailing whitespace.................................................Failed
350+
- hook id: trailing-whitespace
290351
- exit code: 1
291352
- files were modified by this hook
292353
Fixing main.py
293-
check json...............................................................Passed
354+
trim trailing whitespace.................................................Failed
355+
- hook id: trailing-whitespace
356+
- exit code: 1
357+
- files were modified by this hook
358+
Fixing file.txt
359+
trim trailing whitespace.............................(no files to check)Skipped
294360
295361
----- stderr -----
296362
"#);
297363

298364
Ok(())
299365
}
300-
301-
// TODO: test `types`, `types_or`, `exclude_types`

0 commit comments

Comments
 (0)