mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
* feat: remove the creation of cronjobs in cleanup controller Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * fix: use lastExecutionTime instead of nextExecutionTime Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> --------- Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com>
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
package cleanup
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/go-logr/logr"
|
|
kyvernov2beta1 "github.com/kyverno/kyverno/api/kyverno/v2beta1"
|
|
"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 kyvernov2beta1.Condition
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want bool
|
|
wantErr bool
|
|
}{{
|
|
name: "basic",
|
|
args: args{
|
|
logger: logging.GlobalLogger(),
|
|
ctx: ctx,
|
|
condition: kyvernov2beta1.Condition{
|
|
RawKey: &v1.JSON{
|
|
Raw: []byte(`"{{ request.object.name }}"`),
|
|
},
|
|
Operator: kyvernov2beta1.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)
|
|
}
|
|
})
|
|
}
|
|
}
|