gitea/services
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
..
agit
asymkey
attachment
auth Share HTML template renderers and create a watcher framework (#20218) 2022-08-28 10:43:25 +01:00
automerge
comments
context
cron Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
externalaccount
forms
gitdiff
issue Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
lfs
mailer Share HTML template renderers and create a watcher framework (#20218) 2022-08-28 10:43:25 +01:00
migrations Add more checks in migration code (#21011) 2022-09-04 13:47:56 +03:00
mirror
org Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
packages Replace `ServeStream` with `ServeContent` (#20903) 2022-08-25 12:05:21 -04:00
pull
release Add more checks in migration code (#21011) 2022-09-04 13:47:56 +03:00
repository fix hard-coded timeout and error panic in API archive download endpoint (#20925) 2022-08-29 11:45:20 +02:00
task Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
user
webhook Update a few go dependencies (#21022) 2022-09-01 23:13:17 +02:00
wiki test: use `T.TempDir` to create temporary test directory (#21043) 2022-09-04 16:14:53 +01:00