-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gab Satchi
committed
Jun 25, 2020
1 parent
a9b58bf
commit ff76970
Showing
2 changed files
with
126 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
Copyright 2020 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package controllers | ||
|
||
import ( | ||
"fmt" | ||
|
||
. "github.com/onsi/gomega" | ||
"github.com/onsi/gomega/types" | ||
clusterv1 "sigs.k8s.io/cluster-api/api/v1alpha3" | ||
) | ||
|
||
// MatchMachineHealthCheckStatus returns a custom matcher to check equality of clusterv1.MachineHealthCheckStatus | ||
func MatchMachineHealthCheckStatus(expected *clusterv1.MachineHealthCheckStatus) types.GomegaMatcher { | ||
return &machineHealthCheckStatusMatcher{ | ||
expected: expected, | ||
} | ||
} | ||
|
||
type machineHealthCheckStatusMatcher struct { | ||
expected *clusterv1.MachineHealthCheckStatus | ||
} | ||
|
||
func (m machineHealthCheckStatusMatcher) Match(actual interface{}) (success bool, err error) { | ||
actualStatus, ok := actual.(*clusterv1.MachineHealthCheckStatus) | ||
if !ok { | ||
return false, fmt.Errorf("actual should be of type MachineHealthCheckStatus") | ||
} | ||
|
||
ok, err = Equal(m.expected.CurrentHealthy).Match(actualStatus.CurrentHealthy) | ||
if !ok { | ||
return ok, err | ||
} | ||
ok, err = Equal(m.expected.ExpectedMachines).Match(actualStatus.ExpectedMachines) | ||
if !ok { | ||
return ok, err | ||
} | ||
ok, err = ConsistOf(m.expected.Targets).Match(actualStatus.Targets) | ||
return ok, err | ||
} | ||
|
||
func (m machineHealthCheckStatusMatcher) FailureMessage(actual interface{}) (message string) { | ||
return fmt.Sprintf("expected\n\t%#v\nto match\n\t%#v\n", actual, m.expected) | ||
} | ||
|
||
func (m machineHealthCheckStatusMatcher) NegatedFailureMessage(actual interface{}) (message string) { | ||
return fmt.Sprintf("expected\n\t%#v\nto not match\n\t%#v\n", actual, m.expected) | ||
} |