1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 17:37:12 +00:00
kyverno/pkg/utils/conditions/condition_test.go
Charles-Edouard Brétéché e900abf3a0
feat: remove kyverno client v2beta1 (#10543)
* feat: remove kyverno client v2beta1

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* codegen

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* fix tests

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

---------

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2024-06-26 08:48:32 +00:00

61 lines
1.5 KiB
Go

package conditions
import (
"testing"
"github.com/go-logr/logr"
kyvernov2 "github.com/kyverno/kyverno/api/kyverno/v2"
"github.com/kyverno/kyverno/pkg/config"
enginecontext "github.com/kyverno/kyverno/pkg/engine/context"
"github.com/kyverno/kyverno/pkg/engine/jmespath"
"github.com/kyverno/kyverno/pkg/logging"
v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
)
var jp = jmespath.New(config.NewDefaultConfiguration(false))
func Test_checkCondition(t *testing.T) {
ctx := enginecontext.NewContext(jp)
ctx.AddResource(map[string]interface{}{
"name": "dummy",
})
type args struct {
logger logr.Logger
ctx enginecontext.Interface
condition kyvernov2.Condition
}
tests := []struct {
name string
args args
want bool
wantErr bool
}{{
name: "basic",
args: args{
logger: logging.GlobalLogger(),
ctx: ctx,
condition: kyvernov2.Condition{
RawKey: &v1.JSON{
Raw: []byte(`"{{ request.object.name }}"`),
},
Operator: kyvernov2.ConditionOperators["Equals"],
RawValue: &v1.JSON{
Raw: []byte(`"dummy"`),
},
},
},
want: true,
}}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := checkCondition(tt.args.logger, tt.args.ctx, tt.args.condition)
if (err != nil) != tt.wantErr {
t.Errorf("checkCondition() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("checkCondition() = %v, want %v", got, tt.want)
}
})
}
}