mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6052f2b396
I noticed that we're using a homegrown package for assertions. The functions are extremely similar to testify, but with enough slight differences to be confusing (for example, Equal takes its arguments in a different order). We already vendor testify, and it's used in a few places by tests. I also found some problems with pkg/testutil/assert. For example, the NotNil function seems to be broken. It checks the argument against "nil", which only works for an interface. If you pass in a nil map or slice, the equality check will fail. In the interest of avoiding NIH, I'm proposing replacing pkg/testutil/assert with testify. The test code looks almost the same, but we avoid the confusion of having two similar but slightly different assertion packages, and having to maintain our own package instead of using a commonly-used one. In the process, I found a few places where the tests should halt if an assertion fails, so I've made those cases (that I noticed) use "require" instead of "assert", and I've vendored the "require" package from testify alongside the already-present "assert" package. Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
36 lines
778 B
Go
36 lines
778 B
Go
package tempfile
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// TempFile is a temporary file that can be used with unit tests. TempFile
|
|
// reduces the boilerplate setup required in each test case by handling
|
|
// setup errors.
|
|
type TempFile struct {
|
|
File *os.File
|
|
}
|
|
|
|
// NewTempFile returns a new temp file with contents
|
|
func NewTempFile(t require.TestingT, prefix string, content string) *TempFile {
|
|
file, err := ioutil.TempFile("", prefix+"-")
|
|
require.NoError(t, err)
|
|
|
|
_, err = file.Write([]byte(content))
|
|
require.NoError(t, err)
|
|
file.Close()
|
|
return &TempFile{File: file}
|
|
}
|
|
|
|
// Name returns the filename
|
|
func (f *TempFile) Name() string {
|
|
return f.File.Name()
|
|
}
|
|
|
|
// Remove removes the file
|
|
func (f *TempFile) Remove() {
|
|
os.Remove(f.Name())
|
|
}
|