1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-13 00:38:12 -04:00
gitea/modules/log
Eng Zer Jun 8b0aaa5f86
test: use T.TempDir to create temporary test directory (#21043)
A testing cleanup. 

This pull request replaces `os.MkdirTemp` with `t.TempDir`. We can use the `T.TempDir` function from the `testing` package to create temporary directory. The directory created by `T.TempDir` is automatically removed when the test and all its subtests complete. 

This saves us at least 2 lines (error check, and cleanup) on every instance, or in some cases adds cleanup that we forgot.

Reference: https://pkg.go.dev/testing#T.TempDir

```go
func TestFoo(t *testing.T) {
	// before
	tmpDir, err := os.MkdirTemp("", "")
	require.NoError(t, err)
	defer os.RemoveAll(tmpDir)

	// now
	tmpDir := t.TempDir()
}
```

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2022-09-04 16:14:53 +01:00
..
buffer_test.go
buffer.go
colors_router.go
colors.go
conn_test.go
conn.go
console_other.go Only set CanColorStdout / CanColorStderr to true if the stdout/stderr is a terminal (#19581) 2022-05-03 18:03:34 +02:00
console_test.go
console_windows.go
console.go
errors.go
event.go Empty log queue on flush and close (#19994) 2022-06-18 10:33:13 +08:00
file_test.go test: use T.TempDir to create temporary test directory (#21043) 2022-09-04 16:14:53 +01:00
file.go Go 1.19 format (#20758) 2022-08-30 21:15:45 -05:00
flags.go
groutinelabel_test.go
groutinelabel.go
level_test.go
level.go
log_test.go
log.go
logger.go
multichannel.go Disable doctor logging on panic (#20847) 2022-08-18 21:27:27 -04:00
provider.go
smtp_test.go
smtp.go Go 1.19 format (#20758) 2022-08-30 21:15:45 -05:00
stack.go
writer_test.go
writer.go