authelia/internal/logging
Eng Zer Jun 59c11581b8
test: use testing tempdir tooling (#4468)
This commit replaces `os.MkdirTemp` with `t.TempDir` in tests. The
directory created by `t.TempDir` is automatically removed when the test
and all its subtests complete.

Prior to this commit, temporary directory created using `os.MkdirTemp`
needs to be removed manually by calling `os.RemoveAll`, which is omitted
in some tests. The error handling boilerplate e.g.
	defer func() {
		if err := os.RemoveAll(dir); err != nil {
			t.Fatal(err)
		}
	}
is also tedious, but `t.TempDir` handles this for us nicely.

Reference: https://pkg.go.dev/testing#T.TempDir
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
Co-authored-by: James Elliott <james-d-elliott@users.noreply.github.com>
2022-12-04 20:57:28 +11:00
..
const.go [BUGFIX] Disable colored logging outputs when file is specified (#1603) 2021-01-15 22:16:41 +11:00
logger.go feat(oidc): issuer jwk certificates (#3989) 2022-10-02 13:07:40 +11:00
logger_test.go test: use testing tempdir tooling (#4468) 2022-12-04 20:57:28 +11:00
printf.go refactor(logging): implement common interfaces (#3994) 2022-09-10 18:02:57 +10:00