代码拉取完成,页面将自动刷新
/*
Copyright 2022 The KubeVela 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 utils
import (
"encoding/json"
"github.com/onsi/gomega/format"
"github.com/onsi/gomega/types"
apierrors "k8s.io/apimachinery/pkg/api/errors"
)
// JSONMarshal returns the JSON encoding
func JSONMarshal(o interface{}) []byte {
j, _ := json.Marshal(o)
return j
}
var _ types.GomegaMatcher = AlreadyExistMatcher{}
// AlreadyExistMatcher matches the error to be already exist
type AlreadyExistMatcher struct {
}
// Match matches error.
func (matcher AlreadyExistMatcher) Match(actual interface{}) (success bool, err error) {
if actual == nil {
return false, nil
}
actualError := actual.(error)
return apierrors.IsAlreadyExists(actualError), nil
}
// FailureMessage builds an error message.
func (matcher AlreadyExistMatcher) FailureMessage(actual interface{}) (message string) {
return format.Message(actual, "to be already exist")
}
// NegatedFailureMessage builds an error message.
func (matcher AlreadyExistMatcher) NegatedFailureMessage(actual interface{}) (message string) {
return format.Message(actual, "not to be already exist")
}
var _ types.GomegaMatcher = NotFoundMatcher{}
// NotFoundMatcher matches the error to be not found.
type NotFoundMatcher struct {
}
// Match matches the api error.
func (matcher NotFoundMatcher) Match(actual interface{}) (success bool, err error) {
if actual == nil {
return false, nil
}
actualError := actual.(error)
return apierrors.IsNotFound(actualError), nil
}
// FailureMessage builds an error message.
func (matcher NotFoundMatcher) FailureMessage(actual interface{}) (message string) {
return format.Message(actual, "to be not found")
}
// NegatedFailureMessage builds an error message.
func (matcher NotFoundMatcher) NegatedFailureMessage(actual interface{}) (message string) {
return format.Message(actual, "not to be not found")
}
// BeEquivalentToError matches the error to take care of nil.
func BeEquivalentToError(expected error) types.GomegaMatcher {
return &ErrorMatcher{
ExpectedError: expected,
}
}
var _ types.GomegaMatcher = ErrorMatcher{}
// ErrorMatcher matches errors.
type ErrorMatcher struct {
ExpectedError error
}
// Match matches an error.
func (matcher ErrorMatcher) Match(actual interface{}) (success bool, err error) {
if actual == nil {
return matcher.ExpectedError == nil, nil
}
actualError := actual.(error)
return actualError.Error() == matcher.ExpectedError.Error(), nil
}
// FailureMessage builds an error message.
func (matcher ErrorMatcher) FailureMessage(actual interface{}) (message string) {
actualError, actualOK := actual.(error)
expectedError := matcher.ExpectedError
expectedOK := expectedError != nil
if actualOK && expectedOK {
return format.MessageWithDiff(actualError.Error(), "to equal", expectedError.Error())
}
if actualOK && !expectedOK {
return format.Message(actualError.Error(), "to equal", expectedError.Error())
}
if !actualOK && expectedOK {
return format.Message(actual, "to equal", expectedError.Error())
}
return format.Message(actual, "to equal", expectedError)
}
// NegatedFailureMessage builds an error message.
func (matcher ErrorMatcher) NegatedFailureMessage(actual interface{}) (message string) {
actualError, actualOK := actual.(error)
expectedError := matcher.ExpectedError
expectedOK := expectedError != nil
if actualOK && expectedOK {
return format.MessageWithDiff(actualError.Error(), "not to equal", expectedError.Error())
}
if actualOK && !expectedOK {
return format.Message(actualError.Error(), "not to equal", expectedError.Error())
}
if !actualOK && expectedOK {
return format.Message(actual, "not to equal", expectedError.Error())
}
return format.Message(actual, "not to equal", expectedError)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。