@@ -1194,132 +1194,172 @@ func TestGit(t *testing.T) {
1194
1194
tempDir := test .TempExamples (t )
1195
1195
configPath := filepath .Join (tempDir , "/treefmt.toml" )
1196
1196
1197
+ test .ChangeWorkDir (t , tempDir )
1198
+
1197
1199
// basic config
1198
1200
cfg := & config.Config {
1199
1201
FormatterConfigs : map [string ]* config.Formatter {
1200
1202
"echo" : {
1201
- Command : "echo" ,
1203
+ Command : "echo" , // will not generate any underlying changes in the file
1202
1204
Includes : []string {"*" },
1203
1205
},
1204
1206
},
1205
1207
}
1206
1208
1207
1209
test .WriteConfig (t , configPath , cfg )
1208
1210
1209
- run := func (traversed int , matched int , formatted int , changed int ) {
1210
- _ , statz , err := treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
1211
- as .NoError (err )
1212
-
1213
- assertStats (t , as , statz , map [stats.Type ]int {
1214
- stats .Traversed : traversed ,
1215
- stats .Matched : matched ,
1216
- stats .Formatted : formatted ,
1217
- stats .Changed : changed ,
1218
- })
1219
- }
1220
-
1221
1211
// init a git repo
1222
1212
gitCmd := exec .Command ("git" , "init" )
1223
- gitCmd .Dir = tempDir
1224
1213
as .NoError (gitCmd .Run (), "failed to init git repository" )
1225
1214
1226
1215
// run before adding anything to the index
1227
- run (0 , 0 , 0 , 0 )
1216
+ treefmt2 (t ,
1217
+ withConfig (configPath , cfg ),
1218
+ withNoError (as ),
1219
+ withStats (as , map [stats.Type ]int {
1220
+ stats .Traversed : 0 ,
1221
+ }),
1222
+ )
1228
1223
1229
1224
// add everything to the index
1230
1225
gitCmd = exec .Command ("git" , "add" , "." )
1231
- gitCmd .Dir = tempDir
1232
1226
as .NoError (gitCmd .Run (), "failed to add everything to the index" )
1233
1227
1234
- run (32 , 32 , 32 , 0 )
1228
+ treefmt2 (t ,
1229
+ withConfig (configPath , cfg ),
1230
+ withNoError (as ),
1231
+ withStats (as , map [stats.Type ]int {
1232
+ stats .Traversed : 32 ,
1233
+ stats .Matched : 32 ,
1234
+ stats .Formatted : 32 ,
1235
+ stats .Changed : 0 ,
1236
+ }),
1237
+ )
1235
1238
1236
1239
// remove python directory from the index
1237
1240
gitCmd = exec .Command ("git" , "rm" , "--cached" , "python/*" )
1238
- gitCmd .Dir = tempDir
1239
1241
as .NoError (gitCmd .Run (), "failed to remove python directory from the index" )
1240
1242
1241
- run (29 , 29 , 29 , 0 )
1243
+ // we should traverse and match against fewer files, but no formatting should occur as no formatting signatures
1244
+ // are impacted
1245
+ treefmt2 (t ,
1246
+ withConfig (configPath , cfg ),
1247
+ withNoError (as ),
1248
+ withStats (as , map [stats.Type ]int {
1249
+ stats .Traversed : 29 ,
1250
+ stats .Matched : 29 ,
1251
+ stats .Formatted : 0 ,
1252
+ stats .Changed : 0 ,
1253
+ }),
1254
+ )
1242
1255
1243
1256
// remove nixpkgs.toml from the filesystem but leave it in the index
1244
1257
as .NoError (os .Remove (filepath .Join (tempDir , "nixpkgs.toml" )))
1245
- run (28 , 28 , 28 , 0 )
1246
1258
1247
1259
// walk with filesystem instead of with git
1248
1260
// the .git folder contains 49 additional files
1249
1261
// when added to the 31 we started with (32 minus nixpkgs.toml which we removed from the filesystem), we should
1250
1262
// traverse 80 files.
1251
- _ , statz , err := treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir , "--walk" , "filesystem" )
1252
- as .NoError (err )
1253
-
1254
- assertStats (t , as , statz , map [stats.Type ]int {
1255
- stats .Traversed : 80 ,
1256
- stats .Matched : 80 ,
1257
- stats .Formatted : 80 ,
1258
- stats .Changed : 0 ,
1259
- })
1260
-
1261
- // capture current cwd, so we can replace it after the test is finished
1262
- cwd , err := os .Getwd ()
1263
- as .NoError (err )
1264
-
1265
- t .Cleanup (func () {
1266
- // return to the previous working directory
1267
- as .NoError (os .Chdir (cwd ))
1268
- })
1263
+ treefmt2 (t ,
1264
+ withArgs ("--walk" , "filesystem" ),
1265
+ withConfig (configPath , cfg ),
1266
+ withNoError (as ),
1267
+ withStats (as , map [stats.Type ]int {
1268
+ stats .Traversed : 80 ,
1269
+ stats .Matched : 80 ,
1270
+ stats .Formatted : 49 , // the echo formatter should only be applied to the new files
1271
+ stats .Changed : 0 ,
1272
+ }),
1273
+ )
1269
1274
1270
1275
// format specific sub paths
1271
- _ , statz , err = treefmt ( t , "-C" , tempDir , "-c" , "go" , "-vv" )
1272
- as . NoError ( err )
1276
+ // we should traverse and match against those files, but without any underlying change to their files or their
1277
+ // formatting config, we will not format them
1273
1278
1274
- assertStats (t , as , statz , map [stats.Type ]int {
1275
- stats .Traversed : 2 ,
1276
- stats .Matched : 2 ,
1277
- stats .Changed : 0 ,
1278
- })
1279
-
1280
- _ , statz , err = treefmt (t , "-C" , tempDir , "-c" , "go" , "haskell" )
1281
- as .NoError (err )
1282
-
1283
- assertStats (t , as , statz , map [stats.Type ]int {
1284
- stats .Traversed : 9 ,
1285
- stats .Matched : 9 ,
1286
- stats .Changed : 0 ,
1287
- })
1279
+ treefmt2 (t ,
1280
+ withArgs ("go" ),
1281
+ withConfig (configPath , cfg ),
1282
+ withNoError (as ),
1283
+ withStats (as , map [stats.Type ]int {
1284
+ stats .Traversed : 2 ,
1285
+ stats .Matched : 2 ,
1286
+ stats .Formatted : 0 ,
1287
+ stats .Changed : 0 ,
1288
+ }),
1289
+ )
1288
1290
1289
- _ , statz , err = treefmt (t , "-C" , tempDir , "-c" , "go" , "haskell" , "ruby" )
1290
- as .NoError (err )
1291
+ treefmt2 (t ,
1292
+ withArgs ("go" , "haskell" ),
1293
+ withConfig (configPath , cfg ),
1294
+ withNoError (as ),
1295
+ withStats (as , map [stats.Type ]int {
1296
+ stats .Traversed : 9 ,
1297
+ stats .Matched : 9 ,
1298
+ stats .Formatted : 0 ,
1299
+ stats .Changed : 0 ,
1300
+ }),
1301
+ )
1291
1302
1292
- assertStats (t , as , statz , map [stats.Type ]int {
1293
- stats .Traversed : 10 ,
1294
- stats .Matched : 10 ,
1295
- stats .Changed : 0 ,
1296
- })
1303
+ treefmt2 (t ,
1304
+ withArgs ("-C" , tempDir , "go" , "haskell" , "ruby" ),
1305
+ withConfig (configPath , cfg ),
1306
+ withNoError (as ),
1307
+ withStats (as , map [stats.Type ]int {
1308
+ stats .Traversed : 10 ,
1309
+ stats .Matched : 10 ,
1310
+ stats .Formatted : 0 ,
1311
+ stats .Changed : 0 ,
1312
+ }),
1313
+ )
1297
1314
1298
1315
// try with a bad path
1299
- _ , _ , err = treefmt (t , "-C" , tempDir , "-c" , "haskell" , "foo" )
1300
- as .ErrorContains (err , "path foo not found" )
1316
+ treefmt2 (t ,
1317
+ withArgs ("-C" , tempDir , "haskell" , "foo" ),
1318
+ withConfig (configPath , cfg ),
1319
+ withError (func (err error ) {
1320
+ as .ErrorContains (err , "path foo not found" )
1321
+ }),
1322
+ )
1301
1323
1302
1324
// try with a path not in the git index, e.g. it is skipped
1303
- _ , err = os .Create (filepath .Join (tempDir , "foo.txt" ))
1304
- as .NoError (err )
1305
-
1306
- _ , statz , err = treefmt (t , "-C" , tempDir , "-c" , "haskell" , "foo.txt" )
1325
+ _ , err := os .Create (filepath .Join (tempDir , "foo.txt" ))
1307
1326
as .NoError (err )
1308
1327
1309
- assertStats (t , as , statz , map [stats.Type ]int {
1310
- stats .Traversed : 8 ,
1311
- stats .Matched : 8 ,
1312
- stats .Changed : 0 ,
1313
- })
1328
+ treefmt2 (t ,
1329
+ withArgs ("haskell" , "foo.txt" ),
1330
+ withConfig (configPath , cfg ),
1331
+ withNoError (as ),
1332
+ withStats (as , map [stats.Type ]int {
1333
+ stats .Traversed : 8 ,
1334
+ stats .Matched : 8 ,
1335
+ stats .Formatted : 1 , // we only format foo.txt, which is new to the cache
1336
+ stats .Changed : 0 ,
1337
+ }),
1338
+ )
1314
1339
1315
- _ , statz , err = treefmt (t , "-C" , tempDir , "-c" , "foo.txt" )
1316
- as .NoError (err )
1340
+ treefmt2 (t ,
1341
+ withArgs ("go" , "foo.txt" ),
1342
+ withConfig (configPath , cfg ),
1343
+ withNoError (as ),
1344
+ withStats (as , map [stats.Type ]int {
1345
+ stats .Traversed : 3 ,
1346
+ stats .Matched : 3 ,
1347
+ stats .Formatted : 0 ,
1348
+ stats .Changed : 0 ,
1349
+ }),
1350
+ )
1317
1351
1318
- assertStats (t , as , statz , map [stats.Type ]int {
1319
- stats .Traversed : 1 ,
1320
- stats .Matched : 1 ,
1321
- stats .Changed : 0 ,
1322
- })
1352
+ treefmt2 (t ,
1353
+ withArgs ("foo.txt" ),
1354
+ withConfig (configPath , cfg ),
1355
+ withNoError (as ),
1356
+ withStats (as , map [stats.Type ]int {
1357
+ stats .Traversed : 1 ,
1358
+ stats .Matched : 1 ,
1359
+ stats .Formatted : 0 ,
1360
+ stats .Changed : 0 ,
1361
+ }),
1362
+ )
1323
1363
}
1324
1364
1325
1365
func TestPathsArg (t * testing.T ) {
0 commit comments