Skip to content

Commit 782c7a0

Browse files
committed
feat: improve git test
Signed-off-by: Brian McGee <[email protected]>
1 parent b956dcd commit 782c7a0

File tree

1 file changed

+119
-79
lines changed

1 file changed

+119
-79
lines changed

cmd/root_test.go

+119-79
Original file line numberDiff line numberDiff line change
@@ -1194,132 +1194,172 @@ func TestGit(t *testing.T) {
11941194
tempDir := test.TempExamples(t)
11951195
configPath := filepath.Join(tempDir, "/treefmt.toml")
11961196

1197+
test.ChangeWorkDir(t, tempDir)
1198+
11971199
// basic config
11981200
cfg := &config.Config{
11991201
FormatterConfigs: map[string]*config.Formatter{
12001202
"echo": {
1201-
Command: "echo",
1203+
Command: "echo", // will not generate any underlying changes in the file
12021204
Includes: []string{"*"},
12031205
},
12041206
},
12051207
}
12061208

12071209
test.WriteConfig(t, configPath, cfg)
12081210

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-
12211211
// init a git repo
12221212
gitCmd := exec.Command("git", "init")
1223-
gitCmd.Dir = tempDir
12241213
as.NoError(gitCmd.Run(), "failed to init git repository")
12251214

12261215
// 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+
)
12281223

12291224
// add everything to the index
12301225
gitCmd = exec.Command("git", "add", ".")
1231-
gitCmd.Dir = tempDir
12321226
as.NoError(gitCmd.Run(), "failed to add everything to the index")
12331227

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+
)
12351238

12361239
// remove python directory from the index
12371240
gitCmd = exec.Command("git", "rm", "--cached", "python/*")
1238-
gitCmd.Dir = tempDir
12391241
as.NoError(gitCmd.Run(), "failed to remove python directory from the index")
12401242

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+
)
12421255

12431256
// remove nixpkgs.toml from the filesystem but leave it in the index
12441257
as.NoError(os.Remove(filepath.Join(tempDir, "nixpkgs.toml")))
1245-
run(28, 28, 28, 0)
12461258

12471259
// walk with filesystem instead of with git
12481260
// the .git folder contains 49 additional files
12491261
// when added to the 31 we started with (32 minus nixpkgs.toml which we removed from the filesystem), we should
12501262
// 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+
)
12691274

12701275
// 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
12731278

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+
)
12881290

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+
)
12911302

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+
)
12971314

12981315
// 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+
)
13011323

13021324
// 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"))
13071326
as.NoError(err)
13081327

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+
)
13141339

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+
)
13171351

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+
)
13231363
}
13241364

13251365
func TestPathsArg(t *testing.T) {

0 commit comments

Comments
 (0)