Skip to content

Commit 45592a9

Browse files
committed
feat: add test helper for changing work directory
Signed-off-by: Brian McGee <[email protected]>
1 parent 500c356 commit 45592a9

File tree

2 files changed

+26
-20
lines changed

2 files changed

+26
-20
lines changed

cmd/root_test.go

+2-20
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,9 @@ import (
2727
func TestOnUnmatched(t *testing.T) {
2828
as := require.New(t)
2929

30-
// capture current cwd, so we can replace it after the test is finished
31-
cwd, err := os.Getwd()
32-
as.NoError(err)
33-
34-
t.Cleanup(func() {
35-
// return to the previous working directory
36-
as.NoError(os.Chdir(cwd))
37-
})
38-
3930
tempDir := test.TempExamples(t)
4031

41-
as.NoError(os.Chdir(tempDir), "failed to change to temp dir")
32+
test.ChangeWorkDir(t, tempDir)
4233

4334
paths := []string{
4435
"go/go.mod",
@@ -130,17 +121,8 @@ func TestCpuProfile(t *testing.T) {
130121
as := require.New(t)
131122
tempDir := test.TempExamples(t)
132123

133-
// capture current cwd, so we can replace it after the test is finished
134-
cwd, err := os.Getwd()
135-
as.NoError(err)
136-
137-
t.Cleanup(func() {
138-
// return to the previous working directory
139-
as.NoError(os.Chdir(cwd))
140-
})
124+
test.ChangeWorkDir(t, tempDir)
141125

142-
// change to temp dir
143-
as.NoError(os.Chdir(tempDir), "failed to change to temp dir")
144126
// allow missing formatter
145127
t.Setenv("TREEFMT_ALLOW_MISSING_FORMATTER", "true")
146128

test/test.go

+24
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,27 @@ func Lutimes(t *testing.T, path string, atime time.Time, mtime time.Time) error
7979

8080
return nil
8181
}
82+
83+
// ChangeWorkDir changes the current working directory for the duration of the test.
84+
// The original directory is restored when the test ends.
85+
func ChangeWorkDir(t *testing.T, dir string) {
86+
t.Helper()
87+
88+
// capture current cwd, so we can replace it after the test is finished
89+
cwd, err := os.Getwd()
90+
if err != nil {
91+
t.Fatal(fmt.Errorf("failed to get current working directory: %w", err))
92+
}
93+
94+
t.Cleanup(func() {
95+
// return to the previous working directory
96+
if err := os.Chdir(cwd); err != nil {
97+
t.Fatal(fmt.Errorf("failed to return to the previous working directory: %w", err))
98+
}
99+
})
100+
101+
// change to the new directory
102+
if err := os.Chdir(dir); err != nil {
103+
t.Fatal(fmt.Errorf("failed to change working directory to %s: %w", dir, err))
104+
}
105+
}

0 commit comments

Comments
 (0)