mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-03-10 09:29:30 +00:00
Several packages are only used while running the e2e suite. These packages are less important to update, as the they can not influence the final executable that is part of the Ceph-CSI container-image. By moving these dependencies out of the main Ceph-CSI go.mod, it is easier to identify if a reported CVE affects Ceph-CSI, or only the testing (like most of the Kubernetes CVEs). Signed-off-by: Niels de Vos <ndevos@ibm.com>
30 lines
750 B
Go
30 lines
750 B
Go
package matchers
|
|
|
|
import (
|
|
"github.com/onsi/gomega/types"
|
|
)
|
|
|
|
type NotMatcher struct {
|
|
Matcher types.GomegaMatcher
|
|
}
|
|
|
|
func (m *NotMatcher) Match(actual interface{}) (bool, error) {
|
|
success, err := m.Matcher.Match(actual)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return !success, nil
|
|
}
|
|
|
|
func (m *NotMatcher) FailureMessage(actual interface{}) (message string) {
|
|
return m.Matcher.NegatedFailureMessage(actual) // works beautifully
|
|
}
|
|
|
|
func (m *NotMatcher) NegatedFailureMessage(actual interface{}) (message string) {
|
|
return m.Matcher.FailureMessage(actual) // works beautifully
|
|
}
|
|
|
|
func (m *NotMatcher) MatchMayChangeInTheFuture(actual interface{}) bool {
|
|
return types.MatchMayChangeInTheFuture(m.Matcher, actual) // just return m.Matcher's value
|
|
}
|