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>
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
package testutil
|
|
|
|
import (
|
|
"strings"
|
|
"unicode"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// ErrorContains checks that the error is not nil, and contains the expected
|
|
// substring.
|
|
func ErrorContains(t require.TestingT, err error, expectedError string) {
|
|
require.Error(t, err)
|
|
assert.Contains(t, err.Error(), expectedError)
|
|
}
|
|
|
|
// EqualNormalizedString compare the actual value to the expected value after applying the specified
|
|
// transform function. It fails the test if these two transformed string are not equal.
|
|
// For example `EqualNormalizedString(t, RemoveSpace, "foo\n", "foo")` wouldn't fail the test as
|
|
// spaces (and thus '\n') are removed before comparing the string.
|
|
func EqualNormalizedString(t require.TestingT, transformFun func(rune) rune, actual, expected string) {
|
|
require.Equal(t, strings.Map(transformFun, expected), strings.Map(transformFun, actual))
|
|
}
|
|
|
|
// RemoveSpace returns -1 if the specified runes is considered as a space (unicode)
|
|
// and the rune itself otherwise.
|
|
func RemoveSpace(r rune) rune {
|
|
if unicode.IsSpace(r) {
|
|
return -1
|
|
}
|
|
return r
|
|
}
|