@@ -14,7 +14,7 @@ import (
14
14
15
15
"github.com/charmbracelet/log"
16
16
"github.com/numtide/treefmt/cmd"
17
- format2 "github.com/numtide/treefmt/cmd/format"
17
+ formatCmd "github.com/numtide/treefmt/cmd/format"
18
18
"github.com/numtide/treefmt/config"
19
19
"github.com/numtide/treefmt/format"
20
20
"github.com/numtide/treefmt/stats"
@@ -482,7 +482,7 @@ func TestCache(t *testing.T) {
482
482
483
483
// running should match but not format anything
484
484
_ , statz , err = treefmt (t , "--config-file" , configPath , "--tree-root" , tempDir )
485
- as .NoError (err )
485
+ as .ErrorIs (err , formatCmd . ErrFormattingFailures )
486
486
487
487
assertStats (t , as , statz , map [stats.Type ]int {
488
488
stats .Traversed : 32 ,
@@ -492,8 +492,8 @@ func TestCache(t *testing.T) {
492
492
})
493
493
494
494
// running again should provide the same result
495
- _ , statz , err = treefmt (t , "--config-file" , configPath , "--tree-root" , tempDir , "-vv" )
496
- as .NoError (err )
495
+ _ , statz , err = treefmt (t , "--config-file" , configPath , "--tree-root" , tempDir )
496
+ as .ErrorIs (err , formatCmd . ErrFormattingFailures )
497
497
498
498
assertStats (t , as , statz , map [stats.Type ]int {
499
499
stats .Traversed : 32 ,
@@ -588,13 +588,13 @@ func TestFailOnChange(t *testing.T) {
588
588
589
589
test .WriteConfig (t , configPath , cfg )
590
590
_ , _ , err := treefmt (t , "--fail-on-change" , "--config-file" , configPath , "--tree-root" , tempDir )
591
- as .ErrorIs (err , format2 .ErrFailOnChange )
591
+ as .ErrorIs (err , formatCmd .ErrFailOnChange )
592
592
593
593
// test with no cache
594
594
t .Setenv ("TREEFMT_FAIL_ON_CHANGE" , "true" )
595
595
test .WriteConfig (t , configPath , cfg )
596
596
_ , _ , err = treefmt (t , "--config-file" , configPath , "--tree-root" , tempDir , "--no-cache" )
597
- as .ErrorIs (err , format2 .ErrFailOnChange )
597
+ as .ErrorIs (err , formatCmd .ErrFailOnChange )
598
598
}
599
599
600
600
func TestBustCacheOnFormatterChange (t * testing.T ) {
@@ -1027,7 +1027,7 @@ func TestStdin(t *testing.T) {
1027
1027
// we get an error about the missing filename parameter.
1028
1028
out , _ , err := treefmt (t , "-C" , tempDir , "--allow-missing-formatter" , "--stdin" )
1029
1029
as .EqualError (err , "exactly one path should be specified when using the --stdin flag" )
1030
- as .Equal ("" , string (out ))
1030
+ as .Equal ("Error: exactly one path should be specified when using the --stdin flag \n " , string (out ))
1031
1031
1032
1032
// now pass along the filename parameter
1033
1033
os .Stdin = test .TempFile (t , "" , "stdin" , & contents )
@@ -1051,7 +1051,7 @@ func TestStdin(t *testing.T) {
1051
1051
1052
1052
out , _ , err = treefmt (t , "-C" , tempDir , "--allow-missing-formatter" , "--stdin" , "../test.nix" )
1053
1053
as .Errorf (err , "path ../test.nix not inside the tree root %s" , tempDir )
1054
- as .Equal ( "" , string (out ))
1054
+ as .Contains ( string (out ), "Error: path ../test.nix not inside the tree root" )
1055
1055
1056
1056
// try some markdown instead
1057
1057
contents = `
@@ -1281,21 +1281,20 @@ func treefmt(t *testing.T, args ...string) ([]byte, *stats.Stats, error) {
1281
1281
time .Sleep (time .Until (waitUntil ))
1282
1282
}()
1283
1283
1284
- if err := root .Execute (); err != nil {
1285
- return nil , nil , err
1286
- }
1284
+ // execute the command
1285
+ cmdErr := root .Execute ()
1287
1286
1288
1287
// reset and read the temporary output
1289
- if _ , err := tempOut .Seek (0 , 0 ); err != nil {
1290
- return nil , nil , fmt .Errorf ("failed to reset temp output for reading: %w" , err )
1288
+ if _ , resetErr := tempOut .Seek (0 , 0 ); resetErr != nil {
1289
+ t . Fatal ( fmt .Errorf ("failed to reset temp output for reading: %w" , resetErr ) )
1291
1290
}
1292
1291
1293
- out , err := io .ReadAll (tempOut )
1294
- if err != nil {
1295
- return nil , nil , fmt .Errorf ("failed to read temp output: %w" , err )
1292
+ out , readErr := io .ReadAll (tempOut )
1293
+ if readErr != nil {
1294
+ t . Fatal ( fmt .Errorf ("failed to read temp output: %w" , readErr ) )
1296
1295
}
1297
1296
1298
- return out , statz , nil
1297
+ return out , statz , cmdErr
1299
1298
}
1300
1299
1301
1300
func assertStats (
0 commit comments