@@ -199,6 +199,7 @@ fn skips() -> Result<()> {
199
199
Ok ( ( ) )
200
200
}
201
201
202
+ /// Test global `files`, `exclude`, and hook level `files`, `exclude`.
202
203
#[ test]
203
204
fn files_and_exclude ( ) -> Result < ( ) > {
204
205
let context = TestContext :: new ( ) ;
@@ -264,7 +265,7 @@ fn files_and_exclude() -> Result<()> {
264
265
- id: trailing-whitespace
265
266
files: valid.json
266
267
- id: end-of-file-fixer
267
- exclude: (valid.json|file.txt )
268
+ exclude: (valid.json|main.py )
268
269
- id: check-json
269
270
"
270
271
} ) ?;
@@ -285,17 +286,80 @@ fn files_and_exclude() -> Result<()> {
285
286
- exit code: 1
286
287
- files were modified by this hook
287
288
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
290
351
- exit code: 1
291
352
- files were modified by this hook
292
353
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
294
360
295
361
----- stderr -----
296
362
"# ) ;
297
363
298
364
Ok ( ( ) )
299
365
}
300
-
301
- // TODO: test `types`, `types_or`, `exclude_types`
0 commit comments