Skip to content

Commit 5659267

Browse files
committed
feat: improve missing formatter test
Signed-off-by: Brian McGee <[email protected]>
1 parent 45592a9 commit 5659267

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

cmd/root_test.go

+15-7
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ func TestAllowMissingFormatter(t *testing.T) {
152152
as := require.New(t)
153153

154154
tempDir := test.TempExamples(t)
155-
configPath := tempDir + "/treefmt.toml"
155+
configPath := filepath.Join(tempDir, "treefmt.toml")
156+
157+
test.ChangeWorkDir(t, tempDir)
156158

157159
test.WriteConfig(t, configPath, &config.Config{
158160
FormatterConfigs: map[string]*config.Formatter{
@@ -162,15 +164,21 @@ func TestAllowMissingFormatter(t *testing.T) {
162164
},
163165
})
164166

165-
_, _, err := treefmt(t, "--config-file", configPath, "--tree-root", tempDir, "-vv")
166-
as.ErrorIs(err, format.ErrCommandNotFound)
167+
// default
168+
treefmt2(t, args(), func(_ []byte, _ *stats.Stats, err error) {
169+
as.ErrorIs(err, format.ErrCommandNotFound)
170+
})
167171

168-
_, _, err = treefmt(t, "--config-file", configPath, "--tree-root", tempDir, "--allow-missing-formatter")
169-
as.NoError(err)
172+
// arg
173+
treefmt2(t, args("--allow-missing-formatter"), func(_ []byte, _ *stats.Stats, err error) {
174+
as.NoError(err)
175+
})
170176

177+
// env
171178
t.Setenv("TREEFMT_ALLOW_MISSING_FORMATTER", "true")
172-
_, _, err = treefmt(t, "--config-file", configPath, "--tree-root", tempDir)
173-
as.NoError(err)
179+
treefmt2(t, args(), func(_ []byte, _ *stats.Stats, err error) {
180+
as.NoError(err)
181+
})
174182
}
175183

176184
func TestSpecifyingFormatters(t *testing.T) {

0 commit comments

Comments
 (0)