mirror of
https://github.com/rancher/plugins.git
synced 2025-08-17 01:31:51 +00:00
Bumps the golang group with 2 updates in the / directory: [github.com/Microsoft/hcsshim](https://github.com/Microsoft/hcsshim) and [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo). Updates `github.com/Microsoft/hcsshim` from 0.12.4 to 0.12.6 - [Release notes](https://github.com/Microsoft/hcsshim/releases) - [Commits](https://github.com/Microsoft/hcsshim/compare/v0.12.4...v0.12.6) Updates `github.com/onsi/ginkgo/v2` from 2.19.0 to 2.20.1 - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.19.0...v2.20.1) Updates `github.com/onsi/gomega` from 1.33.1 to 1.34.1 - [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.33.1...v1.34.1) Updates `golang.org/x/sys` from 0.21.0 to 0.23.0 - [Commits](https://github.com/golang/sys/compare/v0.21.0...v0.23.0) --- updated-dependencies: - dependency-name: github.com/Microsoft/hcsshim dependency-type: direct:production update-type: version-update:semver-patch dependency-group: golang - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang - dependency-name: golang.org/x/sys dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang ... Signed-off-by: dependabot[bot] <support@github.com>
94 lines
2.3 KiB
Go
94 lines
2.3 KiB
Go
package matchers
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/onsi/gomega/format"
|
|
)
|
|
|
|
type mismatchFailure struct {
|
|
failure string
|
|
index int
|
|
}
|
|
|
|
type HaveExactElementsMatcher struct {
|
|
Elements []interface{}
|
|
mismatchFailures []mismatchFailure
|
|
missingIndex int
|
|
extraIndex int
|
|
}
|
|
|
|
func (matcher *HaveExactElementsMatcher) Match(actual interface{}) (success bool, err error) {
|
|
matcher.resetState()
|
|
|
|
if isMap(actual) {
|
|
return false, fmt.Errorf("error")
|
|
}
|
|
|
|
matchers := matchers(matcher.Elements)
|
|
values := valuesOf(actual)
|
|
|
|
lenMatchers := len(matchers)
|
|
lenValues := len(values)
|
|
success = true
|
|
|
|
for i := 0; i < lenMatchers || i < lenValues; i++ {
|
|
if i >= lenMatchers {
|
|
matcher.extraIndex = i
|
|
success = false
|
|
continue
|
|
}
|
|
|
|
if i >= lenValues {
|
|
matcher.missingIndex = i
|
|
success = false
|
|
return
|
|
}
|
|
|
|
elemMatcher := matchers[i].(omegaMatcher)
|
|
match, err := elemMatcher.Match(values[i])
|
|
if err != nil {
|
|
matcher.mismatchFailures = append(matcher.mismatchFailures, mismatchFailure{
|
|
index: i,
|
|
failure: err.Error(),
|
|
})
|
|
success = false
|
|
} else if !match {
|
|
matcher.mismatchFailures = append(matcher.mismatchFailures, mismatchFailure{
|
|
index: i,
|
|
failure: elemMatcher.FailureMessage(values[i]),
|
|
})
|
|
success = false
|
|
}
|
|
}
|
|
|
|
return success, nil
|
|
}
|
|
|
|
func (matcher *HaveExactElementsMatcher) FailureMessage(actual interface{}) (message string) {
|
|
message = format.Message(actual, "to have exact elements with", presentable(matcher.Elements))
|
|
if matcher.missingIndex > 0 {
|
|
message = fmt.Sprintf("%s\nthe missing elements start from index %d", message, matcher.missingIndex)
|
|
}
|
|
if matcher.extraIndex > 0 {
|
|
message = fmt.Sprintf("%s\nthe extra elements start from index %d", message, matcher.extraIndex)
|
|
}
|
|
if len(matcher.mismatchFailures) != 0 {
|
|
message = fmt.Sprintf("%s\nthe mismatch indexes were:", message)
|
|
}
|
|
for _, mismatch := range matcher.mismatchFailures {
|
|
message = fmt.Sprintf("%s\n%d: %s", message, mismatch.index, mismatch.failure)
|
|
}
|
|
return
|
|
}
|
|
|
|
func (matcher *HaveExactElementsMatcher) NegatedFailureMessage(actual interface{}) (message string) {
|
|
return format.Message(actual, "not to contain elements", presentable(matcher.Elements))
|
|
}
|
|
|
|
func (matcher *HaveExactElementsMatcher) resetState() {
|
|
matcher.mismatchFailures = nil
|
|
matcher.missingIndex = 0
|
|
matcher.extraIndex = 0
|
|
}
|