Skip to content

Commit 500c356

Browse files
committed
feat: improve cpu profile test
Signed-off-by: Brian McGee <[email protected]>
1 parent 7a717ec commit 500c356

File tree

1 file changed

+23
-10
lines changed

1 file changed

+23
-10
lines changed

cmd/root_test.go

+23-10
Original file line numberDiff line numberDiff line change
@@ -139,18 +139,31 @@ func TestCpuProfile(t *testing.T) {
139139
as.NoError(os.Chdir(cwd))
140140
})
141141

142-
_, _, err = treefmt(t, "-C", tempDir, "--allow-missing-formatter", "--cpu-profile", "cpu.pprof")
143-
as.NoError(err)
144-
as.FileExists(filepath.Join(tempDir, "cpu.pprof"))
145-
_, err = os.Stat(filepath.Join(tempDir, "cpu.pprof"))
146-
as.NoError(err)
142+
// change to temp dir
143+
as.NoError(os.Chdir(tempDir), "failed to change to temp dir")
144+
// allow missing formatter
145+
t.Setenv("TREEFMT_ALLOW_MISSING_FORMATTER", "true")
147146

147+
treefmt2(
148+
t, args("--cpu-profile", "cpu.pprof"),
149+
func(_ []byte, _ *stats.Stats, err error) {
150+
// check the profile exists
151+
as.NoError(err)
152+
as.FileExists(filepath.Join(tempDir, "cpu.pprof"))
153+
},
154+
)
155+
156+
// test with env
148157
t.Setenv("TREEFMT_CPU_PROFILE", "env.pprof")
149-
_, _, err = treefmt(t, "-C", tempDir, "--allow-missing-formatter")
150-
as.NoError(err)
151-
as.FileExists(filepath.Join(tempDir, "env.pprof"))
152-
_, err = os.Stat(filepath.Join(tempDir, "env.pprof"))
153-
as.NoError(err)
158+
159+
treefmt2(
160+
t, args(),
161+
func(_ []byte, _ *stats.Stats, err error) {
162+
// check the profile exists
163+
as.NoError(err)
164+
as.FileExists(filepath.Join(tempDir, "env.pprof"))
165+
},
166+
)
154167
}
155168

156169
func TestAllowMissingFormatter(t *testing.T) {

0 commit comments

Comments
 (0)