1
1
mirror of https://github.com/go-gitea/gitea.git synced 2024-11-19 05:45:00 +01:00
gitea/models
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
..
activities Add more checks in migration code (#21011) 2022-09-04 13:47:56 +03:00
admin Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
appstate
asymkey
auth Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
avatars
db test: use T.TempDir to create temporary test directory (#21043) 2022-09-04 16:14:53 +01:00
fixtures
foreignreference
git
issues Fix missed sort bug (#20996) 2022-08-31 14:15:12 -04:00
migrations Add another index for Action table on postgres (#21033) 2022-09-03 17:27:59 +01:00
organization Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
packages Delete unreferenced packages when deleting a package version (#20977) 2022-09-03 17:01:00 +01:00
perm Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
project
pull
repo fix hard-coded timeout and error panic in API archive download endpoint (#20925) 2022-08-29 11:45:20 +02:00
unit
unittest Kd/ci playwright go test (#20123) 2022-09-02 15:18:23 -04:00
user Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
webhook
error.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
fixture_generation.go
fixture_test.go
main_test.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
migrate_test.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
migrate.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
org_team_test.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
org_team.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
org_test.go
org.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
repo_collaboration_test.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
repo_collaboration.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
repo_test.go
repo_transfer_test.go
repo_transfer.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00
repo.go fix hard-coded timeout and error panic in API archive download endpoint (#20925) 2022-08-29 11:45:20 +02:00
user.go Move some files into models' sub packages (#20262) 2022-08-25 10:31:57 +08:00