Skip to content

Commit d0f5990

Browse files
committed
feat: improve prj root env test
Signed-off-by: Brian McGee <[email protected]>
1 parent 7909b55 commit d0f5990

File tree

2 files changed

+46
-22
lines changed

2 files changed

+46
-22
lines changed

cmd/root_test.go

+41-22
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,9 @@ func TestIncludesAndExcludes(t *testing.T) {
294294
as := require.New(t)
295295

296296
tempDir := test.TempExamples(t)
297-
configPath := tempDir + "/touch.toml"
297+
configPath := tempDir + "/treefmt.toml"
298+
299+
test.ChangeWorkDir(t, tempDir)
298300

299301
// test without any excludes
300302
cfg := &config.Config{
@@ -410,29 +412,28 @@ func TestPrjRootEnvVariable(t *testing.T) {
410412
as := require.New(t)
411413

412414
tempDir := test.TempExamples(t)
413-
configPath := tempDir + "/treefmt.toml"
414-
415-
// test without any excludes
416-
cfg := &config.Config{
417-
FormatterConfigs: map[string]*config.Formatter{
418-
"echo": {
419-
Command: "echo",
420-
Includes: []string{"*"},
421-
},
422-
},
423-
}
415+
configPath := filepath.Join(tempDir, "treefmt.toml")
424416

425-
test.WriteConfig(t, configPath, cfg)
426417
t.Setenv("PRJ_ROOT", tempDir)
427-
_, statz, err := treefmt(t, "--config-file", configPath)
428-
as.NoError(err)
429418

430-
assertStats(t, as, statz, map[stats.Type]int{
431-
stats.Traversed: 32,
432-
stats.Matched: 32,
433-
stats.Formatted: 32,
434-
stats.Changed: 0,
435-
})
419+
treefmt2(t,
420+
withConfig(configPath, &config.Config{
421+
FormatterConfigs: map[string]*config.Formatter{
422+
"echo": {
423+
Command: "echo",
424+
Includes: []string{"*"},
425+
},
426+
},
427+
}),
428+
withArgs("--config-file", configPath),
429+
withNoError(as),
430+
withStats(as, map[stats.Type]int{
431+
stats.Traversed: 32,
432+
stats.Matched: 32,
433+
stats.Formatted: 32,
434+
stats.Changed: 0,
435+
}),
436+
)
436437
}
437438

438439
func TestCache(t *testing.T) {
@@ -1478,7 +1479,13 @@ func assertStats(
14781479
}
14791480

14801481
type options struct {
1481-
args []string
1482+
args []string
1483+
1484+
config struct {
1485+
path string
1486+
value *config.Config
1487+
}
1488+
14821489
assertOut func([]byte)
14831490
assertError func(error)
14841491
assertStats func(*stats.Stats)
@@ -1498,6 +1505,13 @@ func withArgs(args ...string) option {
14981505
}
14991506
}
15001507

1508+
func withConfig(path string, cfg *config.Config) option {
1509+
return func(o *options) {
1510+
o.config.path = path
1511+
o.config.value = cfg
1512+
}
1513+
}
1514+
15011515
func withStats(as *require.Assertions, expected map[stats.Type]int) option {
15021516
return func(o *options) {
15031517
o.assertStats = func(s *stats.Stats) {
@@ -1555,6 +1569,11 @@ func treefmt2(
15551569
args = []string{}
15561570
}
15571571

1572+
// write config
1573+
if opts.config.value != nil {
1574+
test.WriteConfig(t, opts.config.path, opts.config.value)
1575+
}
1576+
15581577
// bump mod times before running
15591578
if opts.bump.path != "" {
15601579
test.LutimesBump(t, opts.bump.path, opts.bump.atime, opts.bump.modtime)

format/formatter.go

+5
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,11 @@ func newFormatter(
167167
f.log = log.WithPrefix(fmt.Sprintf("formatter | %s", name))
168168
}
169169

170+
// check there is at least one include
171+
if len(cfg.Includes) == 0 {
172+
return nil, fmt.Errorf("formatter '%v' has no includes", f.name)
173+
}
174+
170175
f.includes, err = compileGlobs(cfg.Includes)
171176
if err != nil {
172177
return nil, fmt.Errorf("failed to compile formatter '%v' includes: %w", f.name, err)

0 commit comments

Comments
 (0)