mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
1a02b70a1c
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
package conditions
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/go-logr/logr"
|
|
"github.com/kyverno/kyverno/api/kyverno"
|
|
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"
|
|
)
|
|
|
|
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: &kyverno.Any{
|
|
Value: "{{ request.object.name }}",
|
|
},
|
|
Operator: kyvernov2.ConditionOperators["Equals"],
|
|
RawValue: &kyverno.Any{
|
|
Value: "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)
|
|
}
|
|
})
|
|
}
|
|
}
|