forgejo/modules/indexer/issues
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
..
bleve.go Automatically pause queue if index service is unavailable (#15066) 2022-01-27 10:30:51 +02:00
bleve_test.go test: use T.TempDir to create temporary test directory (#21043) 2022-09-04 16:14:53 +01:00
db.go Move issues related files into models/issues (#19931) 2022-06-13 17:37:59 +08:00
elastic_search.go Automatically pause queue if index service is unavailable (#15066) 2022-01-27 10:30:51 +02:00
indexer.go Move issues related files into models/issues (#19931) 2022-06-13 17:37:59 +08:00
indexer_test.go test: use T.TempDir to create temporary test directory (#21043) 2022-09-04 16:14:53 +01:00