Skip to content

Commit 92321c8

Browse files
committed
feat: improve specifying formatters test
Signed-off-by: Brian McGee <[email protected]>
1 parent 53ea16a commit 92321c8

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

cli/format_test.go

+20-6
Original file line numberDiff line numberDiff line change
@@ -65,44 +65,58 @@ func TestAllowMissingFormatter(t *testing.T) {
6565
func TestSpecifyingFormatters(t *testing.T) {
6666
as := require.New(t)
6767

68-
tempDir := test.TempExamples(t)
69-
configPath := tempDir + "/treefmt.toml"
70-
71-
test.WriteConfig(t, configPath, config2.Config{
68+
cfg := config2.Config{
7269
Formatters: map[string]*config2.Formatter{
7370
"elm": {
7471
Command: "touch",
72+
Options: []string{"-m"},
7573
Includes: []string{"*.elm"},
7674
},
7775
"nix": {
7876
Command: "touch",
77+
Options: []string{"-m"},
7978
Includes: []string{"*.nix"},
8079
},
8180
"ruby": {
8281
Command: "touch",
82+
Options: []string{"-m"},
8383
Includes: []string{"*.rb"},
8484
},
8585
},
86-
})
86+
}
87+
88+
var tempDir, configPath string
8789

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()
8899
_, err := cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir)
89100
as.NoError(err)
90101
assertStats(t, as, 31, 31, 3, 3)
91102

103+
setup()
92104
_, err = cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir, "--formatters", "elm,nix")
93105
as.NoError(err)
94106
assertStats(t, as, 31, 31, 2, 2)
95107

108+
setup()
96109
_, err = cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir, "--formatters", "ruby,nix")
97110
as.NoError(err)
98111
assertStats(t, as, 31, 31, 2, 2)
99112

113+
setup()
100114
_, err = cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir, "--formatters", "nix")
101115
as.NoError(err)
102116
assertStats(t, as, 31, 31, 1, 1)
103117

104118
// test bad names
105-
119+
setup()
106120
_, err = cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir, "--formatters", "foo")
107121
as.Errorf(err, "formatter not found in config: foo")
108122

format/formatter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ func (f *Formatter) Apply(ctx context.Context, files []*walk.File, filter bool)
8787
if len(out) > 0 {
8888
_, _ = fmt.Fprintf(os.Stderr, "%s error:\n%s\n", f.name, out)
8989
}
90-
return fmt.Errorf("formatter %s failed to apply: %w", f.name, err)
90+
return fmt.Errorf("formatter '%s' with options '%v' failed to apply: %w", f.config.Command, f.config.Options, err)
9191
}
9292

9393
//

test/examples/touch.toml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
[formatter.echo]
22
command = "touch"
3+
# only change mtime
4+
options = ["-m"]
35
includes = [ "*.*" ]

0 commit comments

Comments
 (0)