1 Star 0 Fork 0

kubeship/workflow

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_utils.go 4.18 KB
一键复制 编辑 原始数据 按行查看 历史
raikyou 提交于 2024-07-02 11:18 +08:00 . 11111
/*
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)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/kubeship/workflow.git
git@gitee.com:kubeship/workflow.git
kubeship
workflow
workflow
8789a922b6f1

搜索帮助