8
8
"path/filepath"
9
9
"testing"
10
10
11
+ "git.numtide.com/numtide/treefmt/internal/config"
12
+
11
13
"git.numtide.com/numtide/treefmt/internal/test"
12
14
"github.com/go-git/go-billy/v5/osfs"
13
15
"github.com/go-git/go-git/v5"
@@ -24,16 +26,16 @@ func TestAllowMissingFormatter(t *testing.T) {
24
26
tempDir := t .TempDir ()
25
27
configPath := tempDir + "/treefmt.toml"
26
28
27
- test .WriteConfig (t , configPath , format .Config {
28
- Formatters : map [string ]* format. FormatterConfig {
29
+ test .WriteConfig (t , configPath , config .Config {
30
+ Formatters : map [string ]* config. Formatter {
29
31
"foo-fmt" : {
30
32
Command : "foo-fmt" ,
31
33
},
32
34
},
33
35
})
34
36
35
37
_ , err := cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
36
- as .ErrorIs (err , format .ErrFormatterNotFound )
38
+ as .ErrorIs (err , format .ErrCommandNotFound )
37
39
38
40
_ , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir , "--allow-missing-formatter" )
39
41
as .NoError (err )
@@ -45,8 +47,8 @@ func TestDependencyCycle(t *testing.T) {
45
47
tempDir := t .TempDir ()
46
48
configPath := tempDir + "/treefmt.toml"
47
49
48
- test .WriteConfig (t , configPath , format .Config {
49
- Formatters : map [string ]* format. FormatterConfig {
50
+ test .WriteConfig (t , configPath , config .Config {
51
+ Formatters : map [string ]* config. Formatter {
50
52
"a" : {Command : "echo" , Before : "b" },
51
53
"b" : {Command : "echo" , Before : "c" },
52
54
"c" : {Command : "echo" , Before : "a" },
@@ -66,8 +68,8 @@ func TestSpecifyingFormatters(t *testing.T) {
66
68
tempDir := test .TempExamples (t )
67
69
configPath := tempDir + "/treefmt.toml"
68
70
69
- test .WriteConfig (t , configPath , format .Config {
70
- Formatters : map [string ]* format. FormatterConfig {
71
+ test .WriteConfig (t , configPath , config .Config {
72
+ Formatters : map [string ]* config. Formatter {
71
73
"elm" : {
72
74
Command : "echo" ,
73
75
Includes : []string {"*.elm" },
@@ -115,66 +117,66 @@ func TestIncludesAndExcludes(t *testing.T) {
115
117
configPath := tempDir + "/echo.toml"
116
118
117
119
// test without any excludes
118
- config := format .Config {
119
- Formatters : map [string ]* format. FormatterConfig {
120
+ cfg := config .Config {
121
+ Formatters : map [string ]* config. Formatter {
120
122
"echo" : {
121
123
Command : "echo" ,
122
124
Includes : []string {"*" },
123
125
},
124
126
},
125
127
}
126
128
127
- test .WriteConfig (t , configPath , config )
129
+ test .WriteConfig (t , configPath , cfg )
128
130
out , err := cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
129
131
as .NoError (err )
130
132
as .Contains (string (out ), fmt .Sprintf ("%d files changed" , 29 ))
131
133
132
134
// globally exclude nix files
133
- config .Global .Excludes = []string {"*.nix" }
135
+ cfg .Global .Excludes = []string {"*.nix" }
134
136
135
- test .WriteConfig (t , configPath , config )
137
+ test .WriteConfig (t , configPath , cfg )
136
138
out , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
137
139
as .NoError (err )
138
140
as .Contains (string (out ), fmt .Sprintf ("%d files changed" , 28 ))
139
141
140
142
// add haskell files to the global exclude
141
- config .Global .Excludes = []string {"*.nix" , "*.hs" }
143
+ cfg .Global .Excludes = []string {"*.nix" , "*.hs" }
142
144
143
- test .WriteConfig (t , configPath , config )
145
+ test .WriteConfig (t , configPath , cfg )
144
146
out , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
145
147
as .NoError (err )
146
148
as .Contains (string (out ), fmt .Sprintf ("%d files changed" , 22 ))
147
149
148
- echo := config .Formatters ["echo" ]
150
+ echo := cfg .Formatters ["echo" ]
149
151
150
152
// remove python files from the echo formatter
151
153
echo .Excludes = []string {"*.py" }
152
154
153
- test .WriteConfig (t , configPath , config )
155
+ test .WriteConfig (t , configPath , cfg )
154
156
out , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
155
157
as .NoError (err )
156
158
as .Contains (string (out ), fmt .Sprintf ("%d files changed" , 20 ))
157
159
158
160
// remove go files from the echo formatter
159
161
echo .Excludes = []string {"*.py" , "*.go" }
160
162
161
- test .WriteConfig (t , configPath , config )
163
+ test .WriteConfig (t , configPath , cfg )
162
164
out , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
163
165
as .NoError (err )
164
166
as .Contains (string (out ), fmt .Sprintf ("%d files changed" , 19 ))
165
167
166
168
// adjust the includes for echo to only include elm files
167
169
echo .Includes = []string {"*.elm" }
168
170
169
- test .WriteConfig (t , configPath , config )
171
+ test .WriteConfig (t , configPath , cfg )
170
172
out , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
171
173
as .NoError (err )
172
174
as .Contains (string (out ), fmt .Sprintf ("%d files changed" , 1 ))
173
175
174
176
// add js files to echo formatter
175
177
echo .Includes = []string {"*.elm" , "*.js" }
176
178
177
- test .WriteConfig (t , configPath , config )
179
+ test .WriteConfig (t , configPath , cfg )
178
180
out , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
179
181
as .NoError (err )
180
182
as .Contains (string (out ), fmt .Sprintf ("%d files changed" , 2 ))
@@ -187,16 +189,16 @@ func TestCache(t *testing.T) {
187
189
configPath := tempDir + "/echo.toml"
188
190
189
191
// test without any excludes
190
- config := format .Config {
191
- Formatters : map [string ]* format. FormatterConfig {
192
+ cfg := config .Config {
193
+ Formatters : map [string ]* config. Formatter {
192
194
"echo" : {
193
195
Command : "echo" ,
194
196
Includes : []string {"*" },
195
197
},
196
198
},
197
199
}
198
200
199
- test .WriteConfig (t , configPath , config )
201
+ test .WriteConfig (t , configPath , cfg )
200
202
out , err := cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
201
203
as .NoError (err )
202
204
as .Contains (string (out ), fmt .Sprintf ("%d files changed" , 29 ))
@@ -222,16 +224,16 @@ func TestChangeWorkingDirectory(t *testing.T) {
222
224
configPath := tempDir + "/treefmt.toml"
223
225
224
226
// test without any excludes
225
- config := format .Config {
226
- Formatters : map [string ]* format. FormatterConfig {
227
+ cfg := config .Config {
228
+ Formatters : map [string ]* config. Formatter {
227
229
"echo" : {
228
230
Command : "echo" ,
229
231
Includes : []string {"*" },
230
232
},
231
233
},
232
234
}
233
235
234
- test .WriteConfig (t , configPath , config )
236
+ test .WriteConfig (t , configPath , cfg )
235
237
236
238
// by default, we look for ./treefmt.toml and use the cwd for the tree root
237
239
// this should fail if the working directory hasn't been changed first
@@ -247,16 +249,16 @@ func TestFailOnChange(t *testing.T) {
247
249
configPath := tempDir + "/echo.toml"
248
250
249
251
// test without any excludes
250
- config := format .Config {
251
- Formatters : map [string ]* format. FormatterConfig {
252
+ cfg := config .Config {
253
+ Formatters : map [string ]* config. Formatter {
252
254
"echo" : {
253
255
Command : "echo" ,
254
256
Includes : []string {"*" },
255
257
},
256
258
},
257
259
}
258
260
259
- test .WriteConfig (t , configPath , config )
261
+ test .WriteConfig (t , configPath , cfg )
260
262
_ , err := cmd (t , "--fail-on-change" , "--config-file" , configPath , "--tree-root" , tempDir )
261
263
as .ErrorIs (err , ErrFailOnChange )
262
264
}
@@ -283,8 +285,8 @@ func TestBustCacheOnFormatterChange(t *testing.T) {
283
285
as .NoError (os .Setenv ("PATH" , binPath + ":" + os .Getenv ("PATH" )))
284
286
285
287
// start with 2 formatters
286
- config := format .Config {
287
- Formatters : map [string ]* format. FormatterConfig {
288
+ cfg := config .Config {
289
+ Formatters : map [string ]* config. Formatter {
288
290
"python" : {
289
291
Command : "black" ,
290
292
Includes : []string {"*.py" },
@@ -297,7 +299,7 @@ func TestBustCacheOnFormatterChange(t *testing.T) {
297
299
},
298
300
}
299
301
300
- test .WriteConfig (t , configPath , config )
302
+ test .WriteConfig (t , configPath , cfg )
301
303
args := []string {"--config-file" , configPath , "--tree-root" , tempDir }
302
304
out , err := cmd (t , args ... )
303
305
as .NoError (err )
@@ -328,12 +330,12 @@ func TestBustCacheOnFormatterChange(t *testing.T) {
328
330
as .Contains (string (out ), "0 files changed" )
329
331
330
332
// add go formatter
331
- config .Formatters ["go" ] = & format. FormatterConfig {
333
+ cfg .Formatters ["go" ] = & config. Formatter {
332
334
Command : "gofmt" ,
333
335
Options : []string {"-w" },
334
336
Includes : []string {"*.go" },
335
337
}
336
- test .WriteConfig (t , configPath , config )
338
+ test .WriteConfig (t , configPath , cfg )
337
339
338
340
out , err = cmd (t , args ... )
339
341
as .NoError (err )
@@ -345,8 +347,8 @@ func TestBustCacheOnFormatterChange(t *testing.T) {
345
347
as .Contains (string (out ), "0 files changed" )
346
348
347
349
// remove python formatter
348
- delete (config .Formatters , "python" )
349
- test .WriteConfig (t , configPath , config )
350
+ delete (cfg .Formatters , "python" )
351
+ test .WriteConfig (t , configPath , cfg )
350
352
351
353
out , err = cmd (t , args ... )
352
354
as .NoError (err )
@@ -358,8 +360,8 @@ func TestBustCacheOnFormatterChange(t *testing.T) {
358
360
as .Contains (string (out ), "0 files changed" )
359
361
360
362
// remove elm formatter
361
- delete (config .Formatters , "elm" )
362
- test .WriteConfig (t , configPath , config )
363
+ delete (cfg .Formatters , "elm" )
364
+ test .WriteConfig (t , configPath , cfg )
363
365
364
366
out , err = cmd (t , args ... )
365
367
as .NoError (err )
@@ -378,15 +380,15 @@ func TestGitWorktree(t *testing.T) {
378
380
configPath := filepath .Join (tempDir , "/treefmt.toml" )
379
381
380
382
// basic config
381
- config := format .Config {
382
- Formatters : map [string ]* format. FormatterConfig {
383
+ cfg := config .Config {
384
+ Formatters : map [string ]* config. Formatter {
383
385
"echo" : {
384
386
Command : "echo" ,
385
387
Includes : []string {"*" },
386
388
},
387
389
},
388
390
}
389
- test .WriteConfig (t , configPath , config )
391
+ test .WriteConfig (t , configPath , cfg )
390
392
391
393
// init a git repo
392
394
repo , err := git .Init (
@@ -433,8 +435,8 @@ func TestOrderingFormatters(t *testing.T) {
433
435
configPath := path .Join (tempDir , "treefmt.toml" )
434
436
435
437
// missing child
436
- test .WriteConfig (t , configPath , format .Config {
437
- Formatters : map [string ]* format. FormatterConfig {
438
+ test .WriteConfig (t , configPath , config .Config {
439
+ Formatters : map [string ]* config. Formatter {
438
440
"hs-a" : {
439
441
Command : "echo" ,
440
442
Includes : []string {"*.hs" },
@@ -447,8 +449,8 @@ func TestOrderingFormatters(t *testing.T) {
447
449
as .ErrorContains (err , "formatter hs-a is before hs-b but config for hs-b was not found" )
448
450
449
451
// multiple roots
450
- test .WriteConfig (t , configPath , format .Config {
451
- Formatters : map [string ]* format. FormatterConfig {
452
+ test .WriteConfig (t , configPath , config .Config {
453
+ Formatters : map [string ]* config. Formatter {
452
454
"hs-a" : {
453
455
Command : "echo" ,
454
456
Includes : []string {"*.hs" },
0 commit comments