forked from kubernetes-sigs/kueue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace webhooks with CEL validation rules for LocalQueue (kubernetes…
…-sigs#1938) * Replace webhooks with CEL for LocalQueue * Rename error matchers file * Add generic error matcher * Rename api error functions * Reimplement existing error matchers with the generic one
- Loading branch information
Showing
13 changed files
with
101 additions
and
282 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
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
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
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,78 @@ | ||
/* | ||
Copyright 2022 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 testing | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/onsi/gomega/format" | ||
"github.com/onsi/gomega/types" | ||
apierrors "k8s.io/apimachinery/pkg/api/errors" | ||
) | ||
|
||
func BeNotFoundError() types.GomegaMatcher { | ||
return BeAPIError(NotFoundError) | ||
} | ||
|
||
func BeForbiddenError() types.GomegaMatcher { | ||
return BeAPIError(ForbiddenError) | ||
} | ||
|
||
type errorMatcher int | ||
|
||
const ( | ||
NotFoundError errorMatcher = iota | ||
ForbiddenError | ||
InvalidError | ||
) | ||
|
||
func (em errorMatcher) String() string { | ||
return []string{"NotFoundError", "ForbiddenError", "InvalidError"}[em] | ||
} | ||
|
||
type apiError func(error) bool | ||
|
||
func (em errorMatcher) isAPIError(err error) bool { | ||
return []apiError{apierrors.IsNotFound, apierrors.IsForbidden, apierrors.IsInvalid}[em](err) | ||
} | ||
|
||
type isErrorMatch struct { | ||
name errorMatcher | ||
} | ||
|
||
func BeAPIError(name errorMatcher) types.GomegaMatcher { | ||
return &isErrorMatch{ | ||
name: name, | ||
} | ||
} | ||
|
||
func (matcher *isErrorMatch) Match(actual interface{}) (success bool, err error) { | ||
err, ok := actual.(error) | ||
if !ok { | ||
return false, fmt.Errorf("%s expects an error", matcher.name.String()) | ||
} | ||
|
||
return err != nil && matcher.name.isAPIError(err), nil | ||
} | ||
|
||
func (matcher *isErrorMatch) FailureMessage(actual interface{}) (message string) { | ||
return format.Message(actual, "to be a %s", matcher.name.String()) | ||
} | ||
|
||
func (matcher *isErrorMatch) NegatedFailureMessage(actual interface{}) (message string) { | ||
return format.Message(actual, "not to be %s", matcher.name.String()) | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.