Skip to content

Commit bdd673d

Browse files
prashantvabhinav
andauthored
Replace os.TempDir usage with t.TempDir (#1146)
Current tests can leave files around if tests fail, and even though they use rand, it's not seeded, different runs can share the same output file which causes other failures (e.g., file exists when it's not expected to). Avoid this by using t.TempDir which automatically removed after tests have run. Co-authored-by: Abhinav Gupta <[email protected]>
1 parent 4b03bc5 commit bdd673d

6 files changed

+16
-42
lines changed

config_test.go

+7-17
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
package zap
2222

2323
import (
24-
"io"
2524
"os"
25+
"path/filepath"
2626
"testing"
2727

2828
"github.com/stretchr/testify/assert"
@@ -58,11 +58,9 @@ func TestConfig(t *testing.T) {
5858

5959
for _, tt := range tests {
6060
t.Run(tt.desc, func(t *testing.T) {
61-
temp, err := os.CreateTemp("", "zap-prod-config-test")
62-
require.NoError(t, err, "Failed to create temp file.")
63-
defer os.Remove(temp.Name())
61+
logOut := filepath.Join(t.TempDir(), "test.log")
6462

65-
tt.cfg.OutputPaths = []string{temp.Name()}
63+
tt.cfg.OutputPaths = []string{logOut}
6664
tt.cfg.EncoderConfig.TimeKey = "" // no timestamps in tests
6765
tt.cfg.InitialFields = map[string]interface{}{"z": "zz", "k": "v"}
6866

@@ -74,7 +72,7 @@ func TestConfig(t *testing.T) {
7472
logger.Info("info")
7573
logger.Warn("warn")
7674

77-
byteContents, err := io.ReadAll(temp)
75+
byteContents, err := os.ReadFile(logOut)
7876
require.NoError(t, err, "Couldn't read log contents from temp file.")
7977
logs := string(byteContents)
8078
assert.Regexp(t, tt.expectRe, logs, "Unexpected log output.")
@@ -180,16 +178,8 @@ func TestConfigWithSamplingHook(t *testing.T) {
180178
expectDropped := 99 // 200 - 100 initial - 1 thereafter
181179
expectSampled := 103 // 2 from initial + 100 + 1 thereafter
182180

183-
temp, err := os.CreateTemp("", "zap-prod-config-test")
184-
require.NoError(t, err, "Failed to create temp file.")
185-
defer func() {
186-
err := os.Remove(temp.Name())
187-
if err != nil {
188-
return
189-
}
190-
}()
191-
192-
cfg.OutputPaths = []string{temp.Name()}
181+
logOut := filepath.Join(t.TempDir(), "test.log")
182+
cfg.OutputPaths = []string{logOut}
193183
cfg.EncoderConfig.TimeKey = "" // no timestamps in tests
194184
cfg.InitialFields = map[string]interface{}{"z": "zz", "k": "v"}
195185

@@ -200,7 +190,7 @@ func TestConfigWithSamplingHook(t *testing.T) {
200190
logger.Info("info")
201191
logger.Warn("warn")
202192

203-
byteContents, err := io.ReadAll(temp)
193+
byteContents, err := os.ReadFile(logOut)
204194
require.NoError(t, err, "Couldn't read log contents from temp file.")
205195
logs := string(byteContents)
206196
assert.Regexp(t, expectRe, logs, "Unexpected log output.")

stacktrace_ext_test.go

+2-6
Original file line numberDiff line numberDiff line change
@@ -160,12 +160,8 @@ func verifyNoZap(t *testing.T, logs string) {
160160
}
161161

162162
func withGoPath(t *testing.T, f func(goPath string)) {
163-
goPath, err := os.MkdirTemp("", "gopath")
164-
require.NoError(t, err, "Failed to create temporary directory for GOPATH")
165-
//defer os.RemoveAll(goPath)
166-
167-
os.Setenv("GOPATH", goPath)
168-
defer os.Setenv("GOPATH", os.Getenv("GOPATH"))
163+
goPath := filepath.Join(t.TempDir(), "gopath")
164+
t.Setenv("GOPATH", goPath)
169165

170166
f(goPath)
171167
}

writer_test.go

+1-9
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@
2121
package zap
2222

2323
import (
24-
"encoding/hex"
2524
"errors"
2625
"io"
27-
"math/rand"
2826
"net/url"
2927
"os"
3028
"path/filepath"
@@ -50,7 +48,7 @@ func TestOpenNoPaths(t *testing.T) {
5048
}
5149

5250
func TestOpen(t *testing.T) {
53-
tempName := tempFileName("", "zap-open-test")
51+
tempName := filepath.Join(t.TempDir(), "test.log")
5452
assert.False(t, fileExists(tempName))
5553
require.True(t, strings.HasPrefix(tempName, "/"), "Expected absolute temp file path.")
5654

@@ -171,12 +169,6 @@ func TestCombineWriteSyncers(t *testing.T) {
171169
w.Write([]byte("test"))
172170
}
173171

174-
func tempFileName(prefix, suffix string) string {
175-
randBytes := make([]byte, 16)
176-
rand.Read(randBytes)
177-
return filepath.Join(os.TempDir(), prefix+hex.EncodeToString(randBytes)+suffix)
178-
}
179-
180172
func fileExists(name string) bool {
181173
if _, err := os.Stat(name); os.IsNotExist(err) {
182174
return false

zapcore/buffered_write_syncer_bench_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,11 @@ import (
3030

3131
func BenchmarkBufferedWriteSyncer(b *testing.B) {
3232
b.Run("write file with buffer", func(b *testing.B) {
33-
file, err := os.CreateTemp("", "log")
33+
file, err := os.CreateTemp(b.TempDir(), "test.log")
3434
require.NoError(b, err)
3535

3636
defer func() {
3737
assert.NoError(b, file.Close())
38-
assert.NoError(b, os.Remove(file.Name()))
3938
}()
4039

4140
w := &BufferedWriteSyncer{

zapcore/core_test.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,8 @@ func TestNopCore(t *testing.T) {
6767
}
6868

6969
func TestIOCore(t *testing.T) {
70-
temp, err := os.CreateTemp("", "zapcore-test-iocore")
71-
require.NoError(t, err, "Failed to create temp file.")
72-
defer os.Remove(temp.Name())
70+
temp, err := os.CreateTemp(t.TempDir(), "test.log")
71+
require.NoError(t, err)
7372

7473
// Drop timestamps for simpler assertions (timestamp encoding is tested
7574
// elsewhere).

zapcore/write_syncer_bench_test.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"os"
2525
"testing"
2626

27-
"github.com/stretchr/testify/assert"
27+
"github.com/stretchr/testify/require"
2828
"go.uber.org/zap/internal/ztest"
2929
)
3030

@@ -76,10 +76,8 @@ func BenchmarkMultiWriteSyncer(b *testing.B) {
7676

7777
func BenchmarkWriteSyncer(b *testing.B) {
7878
b.Run("write file with no buffer", func(b *testing.B) {
79-
file, err := os.CreateTemp("", "log")
80-
assert.NoError(b, err)
81-
defer file.Close()
82-
defer os.Remove(file.Name())
79+
file, err := os.CreateTemp(b.TempDir(), "test.log")
80+
require.NoError(b, err)
8381

8482
w := AddSync(file)
8583
b.ResetTimer()

0 commit comments

Comments
 (0)