This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Wesley Su <[email protected]>
- Loading branch information
Showing
5 changed files
with
1,359 additions
and
98 deletions.
There are no files selected for viewing
245 changes: 245 additions & 0 deletions
245
pkg/yurtappmanager/controller/yurtappset/adapter/deployment_adapter_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,245 @@ | ||
/* | ||
Copyright 2022 The OpenYurt 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 adapter | ||
|
||
import ( | ||
"testing" | ||
|
||
appsv1 "k8s.io/api/apps/v1" | ||
corev1 "k8s.io/api/core/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
clientgoscheme "k8s.io/client-go/kubernetes/scheme" | ||
fakeclint "sigs.k8s.io/controller-runtime/pkg/client/fake" | ||
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil" | ||
|
||
appsv1alpha1 "github.com/openyurtio/yurt-app-manager/pkg/yurtappmanager/apis/apps/v1alpha1" | ||
) | ||
|
||
func TestDeploymentAdapter_GetDetails(t *testing.T) { | ||
var one int32 = 1 | ||
|
||
cases := []struct { | ||
name string | ||
yas *appsv1alpha1.YurtAppSet | ||
poolName string | ||
revision string | ||
replicas int32 | ||
obj runtime.Object | ||
wantDeploy *appsv1.Deployment | ||
}{ | ||
{ | ||
name: "apply pool template", | ||
yas: &appsv1alpha1.YurtAppSet{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "foo", | ||
Namespace: "default", | ||
}, | ||
Spec: appsv1alpha1.YurtAppSetSpec{ | ||
Selector: &metav1.LabelSelector{ | ||
MatchLabels: map[string]string{ | ||
"name": "foo", | ||
}, | ||
}, | ||
WorkloadTemplate: appsv1alpha1.WorkloadTemplate{ | ||
DeploymentTemplate: &appsv1alpha1.DeploymentTemplateSpec{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Annotations: map[string]string{ | ||
appsv1alpha1.AnnotationPatchKey: "annotation-v", | ||
}, | ||
Labels: map[string]string{ | ||
"name": "foo", | ||
}, | ||
}, | ||
Spec: appsv1.DeploymentSpec{ | ||
Replicas: &one, | ||
Template: corev1.PodTemplateSpec{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Labels: map[string]string{ | ||
"name": "foo", | ||
}, | ||
}, | ||
Spec: corev1.PodSpec{ | ||
Containers: []corev1.Container{ | ||
{ | ||
Name: "container-a", | ||
Image: "nginx:1.0", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
Topology: appsv1alpha1.Topology{ | ||
Pools: []appsv1alpha1.Pool{ | ||
{ | ||
Name: "hangzhou", | ||
NodeSelectorTerm: corev1.NodeSelectorTerm{ | ||
MatchExpressions: []corev1.NodeSelectorRequirement{ | ||
{ | ||
Key: "node-name", | ||
Operator: corev1.NodeSelectorOpIn, | ||
Values: []string{"nodeA"}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
RevisionHistoryLimit: &one, | ||
}, | ||
}, | ||
poolName: "hangzhou", | ||
revision: "1", | ||
replicas: one, | ||
obj: &appsv1.Deployment{}, | ||
|
||
wantDeploy: &appsv1.Deployment{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Namespace: "default", | ||
Labels: map[string]string{ | ||
"name": "foo", | ||
appsv1alpha1.ControllerRevisionHashLabelKey: "1", | ||
appsv1alpha1.PoolNameLabelKey: "hangzhou", | ||
}, | ||
Annotations: map[string]string{ | ||
appsv1alpha1.AnnotationPatchKey: "", | ||
}, | ||
GenerateName: "foo-hangzhou-", | ||
}, | ||
Spec: appsv1.DeploymentSpec{ | ||
Selector: &metav1.LabelSelector{ | ||
MatchLabels: map[string]string{ | ||
"name": "foo", | ||
appsv1alpha1.PoolNameLabelKey: "hangzhou", | ||
}, | ||
}, | ||
Replicas: &one, | ||
Template: corev1.PodTemplateSpec{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Labels: map[string]string{ | ||
"name": "foo", | ||
appsv1alpha1.ControllerRevisionHashLabelKey: "1", | ||
appsv1alpha1.PoolNameLabelKey: "hangzhou", | ||
}, | ||
}, | ||
Spec: corev1.PodSpec{ | ||
Containers: []corev1.Container{ | ||
{ | ||
Name: "container-a", | ||
Image: "nginx:1.0", | ||
}, | ||
}, | ||
Affinity: &corev1.Affinity{ | ||
NodeAffinity: &corev1.NodeAffinity{ | ||
RequiredDuringSchedulingIgnoredDuringExecution: &corev1.NodeSelector{ | ||
NodeSelectorTerms: []corev1.NodeSelectorTerm{ | ||
{ | ||
MatchExpressions: []corev1.NodeSelectorRequirement{ | ||
{ | ||
Key: "node-name", | ||
Operator: corev1.NodeSelectorOpIn, | ||
Values: []string{"nodeA"}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
RevisionHistoryLimit: &one, | ||
}, | ||
}, | ||
}, | ||
} | ||
scheme := runtime.NewScheme() | ||
if err := appsv1alpha1.AddToScheme(scheme); err != nil { | ||
t.Logf("failed to add yurt custom resource") | ||
return | ||
} | ||
if err := clientgoscheme.AddToScheme(scheme); err != nil { | ||
t.Logf("failed to add kubernetes clint-go custom resource") | ||
return | ||
} | ||
fc := fakeclint.NewClientBuilder().WithScheme(scheme).WithRuntimeObjects().Build() | ||
|
||
da := DeploymentAdapter{Client: fc, Scheme: scheme} | ||
|
||
for _, tt := range cases { | ||
t.Run(tt.name, func(t *testing.T) { | ||
err := da.ApplyPoolTemplate(tt.yas, tt.poolName, tt.revision, tt.replicas, tt.obj) | ||
if err != nil { | ||
t.Logf("failed to appply pool template") | ||
} | ||
|
||
if err = controllerutil.SetControllerReference(tt.yas, tt.wantDeploy, scheme); err != nil { | ||
panic(err) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func TestDeploymentAdapter_ApplyPoolTemplate(t *testing.T) { | ||
var one int32 = 1 | ||
cases := []struct { | ||
name string | ||
obj metav1.Object | ||
wantReplicasInfo ReplicasInfo | ||
}{ | ||
{ | ||
name: "get deploymentAdapter details", | ||
obj: &appsv1.Deployment{ | ||
Spec: appsv1.DeploymentSpec{ | ||
Replicas: &one, | ||
}, | ||
Status: appsv1.DeploymentStatus{ | ||
ReadyReplicas: one, | ||
}, | ||
}, | ||
wantReplicasInfo: ReplicasInfo{ | ||
Replicas: one, | ||
ReadyReplicas: one, | ||
}, | ||
}, | ||
} | ||
|
||
scheme := runtime.NewScheme() | ||
if err := appsv1alpha1.AddToScheme(scheme); err != nil { | ||
t.Logf("failed to add yurt custom resource") | ||
return | ||
} | ||
if err := clientgoscheme.AddToScheme(scheme); err != nil { | ||
t.Logf("failed to add kubernetes clint-go custom resource") | ||
return | ||
} | ||
fc := fakeclint.NewClientBuilder().WithScheme(scheme).WithRuntimeObjects().Build() | ||
|
||
da := DeploymentAdapter{Client: fc, Scheme: scheme} | ||
|
||
for _, tt := range cases { | ||
t.Run(tt.name, func(t *testing.T) { | ||
|
||
got, err := da.GetDetails(tt.obj) | ||
if err != nil || got.Replicas != tt.wantReplicasInfo.Replicas { | ||
t.Logf("failed to get details") | ||
} | ||
}) | ||
} | ||
} |
Oops, something went wrong.