1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/pkg/stack/stackdump_test.go
Eng Zer Jun c55a4ac779
refactor: move from io/ioutil to io and os package
The io/ioutil package has been deprecated in Go 1.16. This commit
replaces the existing io/ioutil functions with their new definitions in
io and os packages.

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2021-08-27 14:56:57 +08:00

30 lines
676 B
Go

package stack // import "github.com/docker/docker/pkg/stack"
import (
"os"
"testing"
"gotest.tools/v3/assert"
is "gotest.tools/v3/assert/cmp"
)
func TestDump(t *testing.T) {
Dump()
}
func TestDumpToFile(t *testing.T) {
directory, err := os.MkdirTemp("", "test-dump-tasks")
assert.Check(t, err)
defer os.RemoveAll(directory)
dumpPath, err := DumpToFile(directory)
assert.Check(t, err)
readFile, _ := os.ReadFile(dumpPath)
fileData := string(readFile)
assert.Check(t, is.Contains(fileData, "goroutine"))
}
func TestDumpToFileWithEmptyInput(t *testing.T) {
path, err := DumpToFile("")
assert.Check(t, err)
assert.Check(t, is.Equal(os.Stderr.Name(), path))
}