Skip to content

Commit

Permalink
pkg/karmadactl: unit test apply command
Browse files Browse the repository at this point in the history
In this commit, we unit test apply command on validation,
and generating propagation objects.

Signed-off-by: Mohamed Awnallah <mohamedmohey2352@gmail.com>
  • Loading branch information
mohamedawnallah committed Nov 4, 2024
1 parent 8c7607e commit 22f8199
Show file tree
Hide file tree
Showing 2 changed files with 231 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkg/karmadactl/apply/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package apply

import (
"context"
"errors"
"fmt"

"github.com/spf13/cobra"
Expand Down Expand Up @@ -141,7 +142,7 @@ func (o *CommandApplyOptions) Complete(f util.Factory, cmd *cobra.Command, paren
// Validate verifies if CommandApplyOptions are valid and without conflicts.
func (o *CommandApplyOptions) Validate() error {
if o.AllClusters && len(o.Clusters) > 0 {
return fmt.Errorf("--all-clusters and --cluster cannot be used together")
return errors.New("--all-clusters and --cluster cannot be used together")
}
if len(o.Clusters) > 0 {
clusters, err := o.karmadaClient.ClusterV1alpha1().Clusters().List(context.TODO(), metav1.ListOptions{})
Expand Down Expand Up @@ -169,16 +170,16 @@ func (o *CommandApplyOptions) Run() error {
return o.kubectlApplyOptions.Run()
}

if err := o.generateAndInjectPolices(); err != nil {
if err := o.generateAndInjectPolicies(); err != nil {
return err
}

return o.kubectlApplyOptions.Run()
}

// generateAndInjectPolices generates and injects policies to the given resources.
// generateAndInjectPolicies generates and injects policies to the given resources.
// It returns an error if any of the policies cannot be generated.
func (o *CommandApplyOptions) generateAndInjectPolices() error {
func (o *CommandApplyOptions) generateAndInjectPolicies() error {
// load the resources
infos, err := o.kubectlApplyOptions.GetObjects()
if err != nil {
Expand Down
226 changes: 226 additions & 0 deletions pkg/karmadactl/apply/apply_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,226 @@
/*
Copyright 2022 The Karmada 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 apply

import (
"context"
"fmt"
"reflect"
"strings"
"testing"

"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/cli-runtime/pkg/resource"

"github.com/karmada-io/karmada/pkg/apis/cluster/v1alpha1"
policyv1alpha1 "github.com/karmada-io/karmada/pkg/apis/policy/v1alpha1"
karmadaclientset "github.com/karmada-io/karmada/pkg/generated/clientset/versioned"
fakekarmadaclient "github.com/karmada-io/karmada/pkg/generated/clientset/versioned/fake"
"github.com/karmada-io/karmada/pkg/util/names"
)

func TestValidateApplyCommand(t *testing.T) {
tests := []struct {
name string
applyOpts *CommandApplyOptions
prep func(karmadaclientset.Interface) error
wantErr bool
errMsg string
}{
{
name: "Validate_WithAllClustersAndClusterArgs_CanNotBeUsedTogether",
applyOpts: &CommandApplyOptions{
AllClusters: true,
Clusters: []string{"member1", "member2"},
},
prep: func(karmadaclientset.Interface) error { return nil },
wantErr: true,
errMsg: "--all-clusters and --cluster cannot be used together",
},
{
name: "Validate_WithNonExistentCluster_ClusterDoesNotExist",
applyOpts: &CommandApplyOptions{
Clusters: []string{"member1"},
karmadaClient: fakekarmadaclient.NewSimpleClientset(),
},
prep: func(karmadaclientset.Interface) error { return nil },
wantErr: true,
errMsg: "cluster member1 does not exist",
},
{
name: "Validate_WithExistentCluster_Validated",
applyOpts: &CommandApplyOptions{
Clusters: []string{"member1"},
karmadaClient: fakekarmadaclient.NewSimpleClientset(),
},
prep: func(client karmadaclientset.Interface) error {
_, err := client.ClusterV1alpha1().Clusters().Create(context.TODO(), &v1alpha1.Cluster{
ObjectMeta: metav1.ObjectMeta{
Name: "member1",
},
}, metav1.CreateOptions{})
if err != nil {
return fmt.Errorf("failed to create cluster %s, got: %v", "member1", err)
}
return nil
},
wantErr: false,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if err := test.prep(test.applyOpts.karmadaClient); err != nil {
t.Fatalf("failed tp prep test environment before validating apply options, got: %v", err)
}
err := test.applyOpts.Validate()
if err == nil && test.wantErr {
t.Fatal("expected an error, but got none")
}
if err != nil && !test.wantErr {
t.Errorf("unexpected error, got: %v", err)
}
if err != nil && test.wantErr && !strings.Contains(err.Error(), test.errMsg) {
t.Errorf("expected error message %s to be in %s", test.errMsg, err.Error())
}
})
}
}

func TestGeneratePropagationObject(t *testing.T) {
tests := []struct {
name string
applyOpts *CommandApplyOptions
info *resource.Info
policy runtime.Object
prep func(runtime.Object, *resource.Info) error
}{
{
name: "GenerationPropagationObject_WithNamespace_PropagationPolicyGenerated",
applyOpts: &CommandApplyOptions{
Clusters: []string{"member1", "member2"},
},
info: &resource.Info{
Name: "example-policy",
Namespace: "test",
Mapping: &meta.RESTMapping{
GroupVersionKind: schema.GroupVersionKind{
Group: "apps",
Version: "v1",
Kind: "deployment",
},
Scope: meta.RESTScopeNamespace,
},
},
policy: &policyv1alpha1.PropagationPolicy{
TypeMeta: metav1.TypeMeta{
APIVersion: "policy.karmada.io/v1alpha1",
Kind: "PropagationPolicy",
},
Spec: policyv1alpha1.PropagationSpec{
Placement: policyv1alpha1.Placement{
ClusterAffinity: &policyv1alpha1.ClusterAffinity{
ClusterNames: []string{"member1", "member2"},
},
},
},
},
prep: func(obj runtime.Object, info *resource.Info) error {
policy := obj.(*policyv1alpha1.PropagationPolicy)
resourceSelectors, metadata, err := initializePropagationPolicy(info)
if err != nil {
return fmt.Errorf("failed to initialize propagation specification, got: %v", err)
}
policy.Spec.ResourceSelectors = resourceSelectors
policy.ObjectMeta = metadata
return nil
},
},
{
name: "GenerationPropagationObject_WithoutNamespace_ClusterPropagationPolicyGenerated",
applyOpts: &CommandApplyOptions{
Clusters: []string{"member1", "member2"},
},
info: &resource.Info{
Name: "example-policy",
Mapping: &meta.RESTMapping{
GroupVersionKind: schema.GroupVersionKind{
Group: "apps",
Version: "v1",
Kind: "deployment",
},
Scope: meta.RESTScopeRoot,
},
},
policy: &policyv1alpha1.ClusterPropagationPolicy{
TypeMeta: metav1.TypeMeta{
APIVersion: "policy.karmada.io/v1alpha1",
Kind: "ClusterPropagationPolicy",
},
Spec: policyv1alpha1.PropagationSpec{
Placement: policyv1alpha1.Placement{
ClusterAffinity: &policyv1alpha1.ClusterAffinity{
ClusterNames: []string{"member1", "member2"},
},
},
},
},
prep: func(obj runtime.Object, info *resource.Info) error {
policy := obj.(*policyv1alpha1.ClusterPropagationPolicy)
resourceSelectors, metadata, err := initializePropagationPolicy(info)
if err != nil {
return fmt.Errorf("failed to initialize propagation specification, got: %v", err)
}
policy.Spec.ResourceSelectors = resourceSelectors
policy.ObjectMeta = metadata
return nil
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if err := test.prep(test.policy, test.info); err != nil {
t.Fatalf("failed to prep for generation propagation object, got: %v", err)
}
obj := test.applyOpts.generatePropagationObject(test.info)
if !reflect.DeepEqual(obj, test.policy) {
t.Errorf("expected policy object %v to be the same as %v", obj, test.policy)
}
})
}
}

// initializePropagationPolicy initializes the propagation policy's resource selectors
// and metadata based on the provided resource information.
func initializePropagationPolicy(info *resource.Info) ([]policyv1alpha1.ResourceSelector, metav1.ObjectMeta, error) {
gvk := info.Mapping.GroupVersionKind
resourceSelectors := []policyv1alpha1.ResourceSelector{
{
APIVersion: gvk.GroupVersion().String(),
Kind: gvk.Kind,
Name: info.Name,
Namespace: info.Namespace,
},
}
metadata := metav1.ObjectMeta{
Name: names.GeneratePolicyName(info.Namespace, info.Name, gvk.String()),
Namespace: info.Namespace,
}
return resourceSelectors, metadata, nil
}

0 comments on commit 22f8199

Please sign in to comment.