@@ -65,44 +65,58 @@ func TestAllowMissingFormatter(t *testing.T) {
65
65
func TestSpecifyingFormatters (t * testing.T ) {
66
66
as := require .New (t )
67
67
68
- tempDir := test .TempExamples (t )
69
- configPath := tempDir + "/treefmt.toml"
70
-
71
- test .WriteConfig (t , configPath , config2.Config {
68
+ cfg := config2.Config {
72
69
Formatters : map [string ]* config2.Formatter {
73
70
"elm" : {
74
71
Command : "touch" ,
72
+ Options : []string {"-m" },
75
73
Includes : []string {"*.elm" },
76
74
},
77
75
"nix" : {
78
76
Command : "touch" ,
77
+ Options : []string {"-m" },
79
78
Includes : []string {"*.nix" },
80
79
},
81
80
"ruby" : {
82
81
Command : "touch" ,
82
+ Options : []string {"-m" },
83
83
Includes : []string {"*.rb" },
84
84
},
85
85
},
86
- })
86
+ }
87
+
88
+ var tempDir , configPath string
87
89
90
+ // we reset the temp dir between successive runs as it appears that touching the file and modifying the mtime can
91
+ // is not granular enough between assertions in quick succession
92
+ setup := func () {
93
+ tempDir = test .TempExamples (t )
94
+ configPath = tempDir + "/treefmt.toml"
95
+ test .WriteConfig (t , configPath , cfg )
96
+ }
97
+
98
+ setup ()
88
99
_ , err := cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
89
100
as .NoError (err )
90
101
assertStats (t , as , 31 , 31 , 3 , 3 )
91
102
103
+ setup ()
92
104
_ , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir , "--formatters" , "elm,nix" )
93
105
as .NoError (err )
94
106
assertStats (t , as , 31 , 31 , 2 , 2 )
95
107
108
+ setup ()
96
109
_ , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir , "--formatters" , "ruby,nix" )
97
110
as .NoError (err )
98
111
assertStats (t , as , 31 , 31 , 2 , 2 )
99
112
113
+ setup ()
100
114
_ , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir , "--formatters" , "nix" )
101
115
as .NoError (err )
102
116
assertStats (t , as , 31 , 31 , 1 , 1 )
103
117
104
118
// test bad names
105
-
119
+ setup ()
106
120
_ , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir , "--formatters" , "foo" )
107
121
as .Errorf (err , "formatter not found in config: foo" )
108
122
0 commit comments