matchers

package
v0.11.3-merged-prereqs Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 18, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ConsistOfHeaders added in v1.14.20

func ConsistOfHeaders(headers http.Header) types.GomegaMatcher

ConsistOfHeaders produces a matcher that will only match if all provided headers are completely accounted for, including multi-value headers. This matcher will fail if there are any extra headers that are not specified in the headers passed in.

func ContainHeaderKeys added in v1.15.12

func ContainHeaderKeys(keys []string) types.GomegaMatcher

ContainHeaderKeys produces a matcher that will only match if all provided header keys exist.

func ContainHeaderKeysExact added in v1.15.28

func ContainHeaderKeysExact(keys []string) types.GomegaMatcher

ContainHeaderKeysExact produces a matcher that will only match if all provided header keys exist and no others.

func ContainHeaders

func ContainHeaders(headers http.Header) types.GomegaMatcher

ContainHeaders produces a matcher that will only match if all provided headers are completely accounted for, including multi-value headers.

func ContainMapElements added in v1.17.0

func ContainMapElements[keyT comparable, valT any](m map[keyT]valT) types.GomegaMatcher

ContainMapElements produces a matcher that will only match if all provided map elements are completely accounted for. The actual value is expected to not be nil or empty since there are other, more appropriate matchers for those cases.

func ContainSubstrings

func ContainSubstrings(substrings []string) types.GomegaMatcher

ContainSubstrings produces a matcher that will match if all provided strings occur within the targeted string

func HaveAcceptedState added in v1.17.0

func HaveAcceptedState() types.GomegaMatcher

func HaveExactResponseBody

func HaveExactResponseBody(body string) types.GomegaMatcher

HaveExactResponseBody expects a 200 response with a body that matches the provided string

func HaveHttpResponse

func HaveHttpResponse(expected *HttpResponse) types.GomegaMatcher

HaveHttpResponse returns a GomegaMatcher which validates that an http.Response contains particular expected properties (status, body..etc) If an expected body isn't specified, the body is not matched

func HaveKubeGatewayRouteStatus added in v1.17.0

func HaveKubeGatewayRouteStatus(expected *KubeGatewayRouteStatus) types.GomegaMatcher

HaveKubeGatewayRouteStatus produces a matcher that will match if the provided status matches the actual status

func HaveMedianLessThan added in v1.15.0

func HaveMedianLessThan(upperBound time.Duration) types.GomegaMatcher

HaveMedianLessThan returns a matcher requiring the given slice of durations have a median value less than the given upperBound

func HaveNameAndNamespace added in v1.17.0

func HaveNameAndNamespace(name string, namespace string) types.GomegaMatcher

HaveNameAndNamespace returns a matcher that will match a pointer to a client.Object with the given name and namespace

func HaveNamespacedStatuses added in v1.17.0

func HaveNamespacedStatuses(expected *SoloKitNamespacedStatuses) types.GomegaMatcher

func HaveOkResponse

func HaveOkResponse() types.GomegaMatcher

HaveOkResponse expects a http response with a 200 status code

func HaveOkResponseWithHeaders

func HaveOkResponseWithHeaders(headers map[string]interface{}) types.GomegaMatcher

HaveOkResponseWithHeaders expects an 200 response with a set of headers that match the provided headers

func HavePartialResponseBody

func HavePartialResponseBody(substring string) types.GomegaMatcher

HavePartialResponseBody expects a 200 response with a body that contains the provided substring

func HavePercentileLessThan added in v1.15.0

func HavePercentileLessThan(percentile int, upperBound time.Duration) types.GomegaMatcher

HavePercentileLessThan returns a matcher requiring the given slice of durations to be less than the given upperBound at the given percentile

func HavePercentileWithin added in v1.15.0

func HavePercentileWithin(percentile int, target, window time.Duration) types.GomegaMatcher

HavePercentileWithin returns a matcher requiring the given slice of durations to be within a window of a given target at the given percentile

func HaveReasonSubstrings added in v1.17.0

func HaveReasonSubstrings(reasons ...string) types.GomegaMatcher

func HaveRejectedStateWithReasonSubstrings added in v1.17.0

func HaveRejectedStateWithReasonSubstrings(reasons ...string) types.GomegaMatcher

func HaveReportedBy added in v1.17.0

func HaveReportedBy(reporter string) types.GomegaMatcher

func HaveState added in v1.17.0

func HaveState(state core.Status_State) types.GomegaMatcher

func HaveStatus added in v1.17.0

func HaveStatus(expected *SoloKitStatus) types.GomegaMatcher

HaveStatus produces a matcher that will match if the provided status matches the actual status

func HaveStatusCode

func HaveStatusCode(statusCode int) types.GomegaMatcher

HaveStatusCode expects a http response with a particular status code

func HaveStatusInNamespace added in v1.17.0

func HaveStatusInNamespace(ns string, status *core.Status) types.GomegaMatcher

func HaveWarningStateWithReasonSubstrings added in v1.17.0

func HaveWarningStateWithReasonSubstrings(reasons ...string) types.GomegaMatcher

func MatchStatusInNamespace added in v1.17.0

func MatchStatusInNamespace(ns string, matcher types.GomegaMatcher) types.GomegaMatcher

MatchStatusInNamespace will create a matcher that allows a *HaveStatusMatcher generated from this package to be matched against the provided namespace in a HaveNamespacedStatusesMatcher

func PodMatches added in v1.17.0

func PodMatches(pod ExpectedPod) types.GomegaMatcher

PodMatches returns a GomegaMatcher that checks whether a pod

Types

type BeEquivalentToDiffMatcher

type BeEquivalentToDiffMatcher struct {
	matchers.BeEquivalentToMatcher
}

func BeEquivalentToDiff

func BeEquivalentToDiff(expected interface{}) *BeEquivalentToDiffMatcher

BeEquivalentToDiff is the same as BeEquivalentTo but prints a nice diff on failure best effect use ginkgo with -noColor

func (*BeEquivalentToDiffMatcher) FailureMessage

func (matcher *BeEquivalentToDiffMatcher) FailureMessage(actual interface{}) (message string)

func (*BeEquivalentToDiffMatcher) NegatedFailureMessage

func (matcher *BeEquivalentToDiffMatcher) NegatedFailureMessage(actual interface{}) (message string)

type ExpectedPod added in v1.17.0

type ExpectedPod struct {
	// ContainerName is the name of the container. Optional.
	ContainerName string

	// Status is the pod phase status (e.g. Running, Pending, Succeeded, Failed). Optional.
	Status corev1.PodPhase
}

ExpectedPod is a struct that represents the expected pod.

type HaveHttpResponseMatcher

type HaveHttpResponseMatcher struct {
	Expected *HttpResponse
	// contains filtered or unexported fields
}

func (*HaveHttpResponseMatcher) FailureMessage

func (m *HaveHttpResponseMatcher) FailureMessage(actual interface{}) (message string)

func (*HaveHttpResponseMatcher) Match

func (m *HaveHttpResponseMatcher) Match(actual interface{}) (success bool, err error)

func (*HaveHttpResponseMatcher) NegatedFailureMessage

func (m *HaveHttpResponseMatcher) NegatedFailureMessage(actual interface{}) (message string)

type HaveKubeGatewayRouteStatusMatcher added in v1.17.0

type HaveKubeGatewayRouteStatusMatcher struct {
	Expected *KubeGatewayRouteStatus
	// contains filtered or unexported fields
}

func (*HaveKubeGatewayRouteStatusMatcher) FailureMessage added in v1.17.0

func (m *HaveKubeGatewayRouteStatusMatcher) FailureMessage(actual interface{}) (message string)

func (*HaveKubeGatewayRouteStatusMatcher) Match added in v1.17.0

func (m *HaveKubeGatewayRouteStatusMatcher) Match(actual interface{}) (success bool, err error)

func (*HaveKubeGatewayRouteStatusMatcher) NegatedFailureMessage added in v1.17.0

func (m *HaveKubeGatewayRouteStatusMatcher) NegatedFailureMessage(actual interface{}) (message string)

type HaveNamespacedStatusesMatcher added in v1.17.0

type HaveNamespacedStatusesMatcher struct {
	Expected *SoloKitNamespacedStatuses
	// contains filtered or unexported fields
}

func (*HaveNamespacedStatusesMatcher) FailureMessage added in v1.17.0

func (m *HaveNamespacedStatusesMatcher) FailureMessage(actual interface{}) (message string)

func (*HaveNamespacedStatusesMatcher) Match added in v1.17.0

func (m *HaveNamespacedStatusesMatcher) Match(actual interface{}) (success bool, err error)

func (*HaveNamespacedStatusesMatcher) NegatedFailureMessage added in v1.17.0

func (m *HaveNamespacedStatusesMatcher) NegatedFailureMessage(actual interface{}) (message string)

type HaveStatusMatcher added in v1.17.0

type HaveStatusMatcher struct {
	Expected *SoloKitStatus
	// contains filtered or unexported fields
}

func (*HaveStatusMatcher) FailureMessage added in v1.17.0

func (m *HaveStatusMatcher) FailureMessage(actual interface{}) (message string)

func (*HaveStatusMatcher) Match added in v1.17.0

func (m *HaveStatusMatcher) Match(actual interface{}) (success bool, err error)

func (*HaveStatusMatcher) NegatedFailureMessage added in v1.17.0

func (m *HaveStatusMatcher) NegatedFailureMessage(actual interface{}) (message string)

type HttpResponse

type HttpResponse struct {
	// StatusCode is the expected status code for an http.Response
	// Required
	StatusCode int
	// Body is the expected response body for an http.Response
	// Body can be of type: {string, bytes, GomegaMatcher}
	// Optional: If not provided, defaults to an empty string
	Body interface{}
	// Headers is the set of expected header values for an http.Response
	// Each header can be of type: {string, GomegaMatcher}
	// Optional: If not provided, does not perform header validation
	Headers map[string]interface{}
	// Custom is a generic matcher that can be applied to validate any other properties of an http.Response
	// Optional: If not provided, does not perform additional validation
	Custom types.GomegaMatcher
}

HttpResponse defines the set of properties that we can validate from an http.Response

func (*HttpResponse) String added in v1.17.0

func (r *HttpResponse) String() string

type KubeGatewayRouteStatus added in v1.17.0

type KubeGatewayRouteStatus struct {

	// Custom is a generic matcher that can be applied to validate any other properties of a k8s gateway RouteStatus
	// Optional: If not provided, does not perform additional validation
	Custom types.GomegaMatcher
}

KubeGatewayRouteStatus defines the set of properties that we can validate from a k8s gateway RouteStatus

type SoloKitNamespacedStatuses added in v1.17.0

type SoloKitNamespacedStatuses struct {
	Statuses map[string]*SoloKitStatus
}

SoloKitNamespacedStatuses defines the set of properties that we can validate from a core.NamespacedStatuses

type SoloKitStatus added in v1.17.0

type SoloKitStatus struct {
	State      *core.Status_State
	Reason     string
	ReportedBy string
	// TODO: implement as needed
	// SubresourceStatuses map[string]*core.Status
	// Details             *structpb.Struct
	// Messages            []string
	// Custom is a generic matcher that can be applied to validate any other properties of a core.Status
	// Optional: If not provided, does not perform additional validation
	Custom types.GomegaMatcher
}

SoloKitStatus defines the set of properties that we can validate from a core.Status

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL