mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c55a4ac779
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>
30 lines
676 B
Go
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))
|
|
}
|