mirror of
https://github.com/containers/podman.git
synced 2025-12-04 12:17:34 +08:00
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.5.0 to 1.7.0. - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.5.0...v1.7.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
36 lines
936 B
Go
36 lines
936 B
Go
// untested sections: 2
|
|
|
|
package matchers
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/onsi/gomega/format"
|
|
)
|
|
|
|
type HaveOccurredMatcher struct {
|
|
}
|
|
|
|
func (matcher *HaveOccurredMatcher) Match(actual interface{}) (success bool, err error) {
|
|
// is purely nil?
|
|
if actual == nil {
|
|
return false, nil
|
|
}
|
|
|
|
// must be an 'error' type
|
|
if !isError(actual) {
|
|
return false, fmt.Errorf("Expected an error-type. Got:\n%s", format.Object(actual, 1))
|
|
}
|
|
|
|
// must be non-nil (or a pointer to a non-nil)
|
|
return !isNil(actual), nil
|
|
}
|
|
|
|
func (matcher *HaveOccurredMatcher) FailureMessage(actual interface{}) (message string) {
|
|
return fmt.Sprintf("Expected an error to have occurred. Got:\n%s", format.Object(actual, 1))
|
|
}
|
|
|
|
func (matcher *HaveOccurredMatcher) NegatedFailureMessage(actual interface{}) (message string) {
|
|
return fmt.Sprintf("Unexpected error:\n%s\n%s\n%s", format.Object(actual, 1), format.IndentString(actual.(error).Error(), 1), "occurred")
|
|
}
|