@@ -294,7 +294,9 @@ func TestIncludesAndExcludes(t *testing.T) {
294
294
as := require .New (t )
295
295
296
296
tempDir := test .TempExamples (t )
297
- configPath := tempDir + "/touch.toml"
297
+ configPath := tempDir + "/treefmt.toml"
298
+
299
+ test .ChangeWorkDir (t , tempDir )
298
300
299
301
// test without any excludes
300
302
cfg := & config.Config {
@@ -410,29 +412,28 @@ func TestPrjRootEnvVariable(t *testing.T) {
410
412
as := require .New (t )
411
413
412
414
tempDir := test .TempExamples (t )
413
- configPath := tempDir + "/treefmt.toml"
414
-
415
- // test without any excludes
416
- cfg := & config.Config {
417
- FormatterConfigs : map [string ]* config.Formatter {
418
- "echo" : {
419
- Command : "echo" ,
420
- Includes : []string {"*" },
421
- },
422
- },
423
- }
415
+ configPath := filepath .Join (tempDir , "treefmt.toml" )
424
416
425
- test .WriteConfig (t , configPath , cfg )
426
417
t .Setenv ("PRJ_ROOT" , tempDir )
427
- _ , statz , err := treefmt (t , "--config-file" , configPath )
428
- as .NoError (err )
429
418
430
- assertStats (t , as , statz , map [stats.Type ]int {
431
- stats .Traversed : 32 ,
432
- stats .Matched : 32 ,
433
- stats .Formatted : 32 ,
434
- stats .Changed : 0 ,
435
- })
419
+ treefmt2 (t ,
420
+ withConfig (configPath , & config.Config {
421
+ FormatterConfigs : map [string ]* config.Formatter {
422
+ "echo" : {
423
+ Command : "echo" ,
424
+ Includes : []string {"*" },
425
+ },
426
+ },
427
+ }),
428
+ withArgs ("--config-file" , configPath ),
429
+ withNoError (as ),
430
+ withStats (as , map [stats.Type ]int {
431
+ stats .Traversed : 32 ,
432
+ stats .Matched : 32 ,
433
+ stats .Formatted : 32 ,
434
+ stats .Changed : 0 ,
435
+ }),
436
+ )
436
437
}
437
438
438
439
func TestCache (t * testing.T ) {
@@ -1478,7 +1479,13 @@ func assertStats(
1478
1479
}
1479
1480
1480
1481
type options struct {
1481
- args []string
1482
+ args []string
1483
+
1484
+ config struct {
1485
+ path string
1486
+ value * config.Config
1487
+ }
1488
+
1482
1489
assertOut func ([]byte )
1483
1490
assertError func (error )
1484
1491
assertStats func (* stats.Stats )
@@ -1498,6 +1505,13 @@ func withArgs(args ...string) option {
1498
1505
}
1499
1506
}
1500
1507
1508
+ func withConfig (path string , cfg * config.Config ) option {
1509
+ return func (o * options ) {
1510
+ o .config .path = path
1511
+ o .config .value = cfg
1512
+ }
1513
+ }
1514
+
1501
1515
func withStats (as * require.Assertions , expected map [stats.Type ]int ) option {
1502
1516
return func (o * options ) {
1503
1517
o .assertStats = func (s * stats.Stats ) {
@@ -1555,6 +1569,11 @@ func treefmt2(
1555
1569
args = []string {}
1556
1570
}
1557
1571
1572
+ // write config
1573
+ if opts .config .value != nil {
1574
+ test .WriteConfig (t , opts .config .path , opts .config .value )
1575
+ }
1576
+
1558
1577
// bump mod times before running
1559
1578
if opts .bump .path != "" {
1560
1579
test .LutimesBump (t , opts .bump .path , opts .bump .atime , opts .bump .modtime )
0 commit comments