323 lines
7.9 KiB
Go
323 lines
7.9 KiB
Go
package overridemanager
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
appsv1 "k8s.io/api/apps/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
|
|
policyv1alpha1 "github.com/karmada-io/karmada/pkg/apis/policy/v1alpha1"
|
|
utilhelper "github.com/karmada-io/karmada/pkg/util/helper"
|
|
"github.com/karmada-io/karmada/test/helper"
|
|
)
|
|
|
|
func Test_applyLabelsOverriders(t *testing.T) {
|
|
type args struct {
|
|
rawObj *unstructured.Unstructured
|
|
commandOverriders []policyv1alpha1.LabelAnnotationOverrider
|
|
}
|
|
deployment := helper.NewDeployment(metav1.NamespaceDefault, "test")
|
|
deployment.Labels = map[string]string{
|
|
"foo": "foo",
|
|
"bar": "bar",
|
|
}
|
|
deployment2 := helper.NewDeployment(metav1.NamespaceDefault, "test")
|
|
deployment2.Labels = nil
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want map[string]string
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "test empty labels",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment2)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpAdd,
|
|
Value: map[string]string{
|
|
"test2": "test2",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"test2": "test2",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test labels replace",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpReplace,
|
|
Value: map[string]string{
|
|
"foo": "exist",
|
|
"non-exist": "non-exist",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"foo": "exist",
|
|
"bar": "bar",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test labels add",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpAdd,
|
|
Value: map[string]string{
|
|
"test": "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"test": "test",
|
|
"foo": "foo",
|
|
"bar": "bar",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test labels remove",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpRemove,
|
|
Value: map[string]string{
|
|
"foo": "foo",
|
|
"non-exist": "non-exist",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"bar": "bar",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if err := applyLabelsOverriders(tt.args.rawObj, tt.args.commandOverriders); (err != nil) != tt.wantErr {
|
|
t.Fatalf("applyLabelsOverriders() error = %v, wantErr %v", err, tt.wantErr)
|
|
}
|
|
newDeployment := &appsv1.Deployment{}
|
|
_ = utilhelper.ConvertToTypedObject(tt.args.rawObj, newDeployment)
|
|
if !reflect.DeepEqual(tt.want, newDeployment.Labels) {
|
|
t.Errorf("expect: %v, but got: %v", tt.want, newDeployment.Labels)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_applyAnnotationsOverriders(t *testing.T) {
|
|
type args struct {
|
|
rawObj *unstructured.Unstructured
|
|
commandOverriders []policyv1alpha1.LabelAnnotationOverrider
|
|
}
|
|
deployment := helper.NewDeployment(metav1.NamespaceDefault, "test")
|
|
deployment.Annotations = map[string]string{
|
|
"foo": "foo",
|
|
"bar": "bar",
|
|
}
|
|
deployment2 := helper.NewDeployment(metav1.NamespaceDefault, "test")
|
|
deployment2.Annotations = nil
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want map[string]string
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "test empty annotations",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment2)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpAdd,
|
|
Value: map[string]string{
|
|
"test2": "test2",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"test2": "test2",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test annotations replace",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpReplace,
|
|
Value: map[string]string{
|
|
"foo": "exist",
|
|
"non-exist": "non-exist",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"foo": "exist",
|
|
"bar": "bar",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test annotations add",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpAdd,
|
|
Value: map[string]string{
|
|
"test": "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"test": "test",
|
|
"foo": "foo",
|
|
"bar": "bar",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test annotations remove",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpRemove,
|
|
Value: map[string]string{
|
|
"foo": "foo",
|
|
"non-exist": "non-exist",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"bar": "bar",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test annotations remain the same",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpRemove,
|
|
Value: map[string]string{},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"bar": "bar",
|
|
"foo": "foo",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test annotations remain the same",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpReplace,
|
|
Value: map[string]string{
|
|
"test": "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"bar": "bar",
|
|
"foo": "foo",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "test annotations remain the same",
|
|
args: args{
|
|
rawObj: func() *unstructured.Unstructured {
|
|
deploymentObj, _ := utilhelper.ToUnstructured(deployment)
|
|
return deploymentObj
|
|
}(),
|
|
commandOverriders: []policyv1alpha1.LabelAnnotationOverrider{
|
|
{
|
|
Operator: policyv1alpha1.OverriderOpRemove,
|
|
Value: map[string]string{
|
|
"test": "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: map[string]string{
|
|
"bar": "bar",
|
|
"foo": "foo",
|
|
},
|
|
wantErr: false,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if err := applyAnnotationsOverriders(tt.args.rawObj, tt.args.commandOverriders); (err != nil) != tt.wantErr {
|
|
t.Fatalf("applyAnnotationsOverriders() error = %v, wantErr %v", err, tt.wantErr)
|
|
}
|
|
newDeployment := &appsv1.Deployment{}
|
|
_ = utilhelper.ConvertToTypedObject(tt.args.rawObj, newDeployment)
|
|
if !reflect.DeepEqual(tt.want, newDeployment.Annotations) {
|
|
t.Errorf("expect: %v, but got: %v", tt.want, newDeployment.Annotations)
|
|
}
|
|
})
|
|
}
|
|
}
|