open-nomad/client/allocdir
Eng Zer Jun 97d1bc735c
test: use `T.TempDir` to create temporary test directory (#12853)
* test: use `T.TempDir` to create temporary test directory

This commit replaces `ioutil.TempDir` 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 `ioutil.TempDir`
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>

* test: fix TestLogmon_Start_restart on Windows

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>

* test: fix failing TestConsul_Integration

t.TempDir fails to perform the cleanup properly because the folder is
still in use

testing.go:967: TempDir RemoveAll cleanup: unlinkat /tmp/TestConsul_Integration2837567823/002/191a6f1a-5371-cf7c-da38-220fe85d10e5/web/secrets: device or resource busy

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2022-05-12 11:42:40 -04:00
..
input replace 'a alloc' with 'an alloc' where appropriate (#11792) 2022-01-10 11:59:46 -05:00
alloc_dir.go client: check escaping of alloc dir using symlinks 2022-02-09 19:50:13 -05:00
alloc_dir_test.go test: use `T.TempDir` to create temporary test directory (#12853) 2022-05-12 11:42:40 -04:00
fs_darwin.go Set ownership on directories in chroot 2017-04-17 12:41:33 -07:00
fs_freebsd.go Set ownership on directories in chroot 2017-04-17 12:41:33 -07:00
fs_linux.go Add gosimple linter (#9590) 2020-12-09 11:05:18 -08:00
fs_linux_test.go test: use `T.TempDir` to create temporary test directory (#12853) 2022-05-12 11:42:40 -04:00
fs_solaris.go Set ownership on directories in chroot 2017-04-17 12:41:33 -07:00
fs_unix.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
fs_windows.go Run Linux Images (LCOW) and Windows Containers side by side (#7850) 2020-05-04 13:08:47 -04:00
task_dir.go client: never embed alloc_dir in chroot 2021-10-18 09:22:01 -07:00
task_dir_linux.go driver: add pre09 migration logic 2019-01-18 18:31:01 -05:00
task_dir_nonlinux.go chore: fixup inconsistent method receiver names. (#11704) 2021-12-20 11:44:21 +01:00
task_dir_test.go test: use `T.TempDir` to create temporary test directory (#12853) 2022-05-12 11:42:40 -04:00
testing.go client: never embed alloc_dir in chroot 2021-10-18 09:22:01 -07:00