open-nomad/drivers/shared/executor
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
..
proto
test-resources/busybox
exec_utils.go
executor.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
executor_basic.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
executor_linux.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
executor_linux_test.go test: use T.TempDir to create temporary test directory (#12853) 2022-05-12 11:42:40 -04:00
executor_plugin.go
executor_test.go test: use T.TempDir to create temporary test directory (#12853) 2022-05-12 11:42:40 -04:00
executor_universal_linux.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
executor_unix.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
executor_windows.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
grpc_client.go client: enable support for cgroups v2 2022-03-23 11:35:27 -05:00
grpc_server.go client: enable support for cgroups v2 2022-03-23 11:35:27 -05:00
libcontainer_nsenter_linux.go
pid_collector.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
pid_collector_test.go ci: swap ci parallelization for unconstrained gomaxprocs 2022-03-15 12:58:52 -05:00
plugins.go remove pre-0.9 driver code and related E2E test (#12791) 2022-04-27 09:53:37 -04:00
pty_unix.go deps: pty has new home 2022-01-19 12:33:05 -06:00
pty_windows.go gofmt all the files 2021-10-01 10:14:28 -04:00
resource_container_default.go raw_exec: make raw exec driver work with cgroups v2 2022-04-04 16:11:38 -05:00
utils.go remove pre-0.9 driver code and related E2E test (#12791) 2022-04-27 09:53:37 -04:00
utils_test.go
utils_unix.go gofmt all the files 2021-10-01 10:14:28 -04:00
utils_windows.go
z_executor_cmd.go drivers: remove duplicate import statements. 2021-06-11 09:38:09 +02:00