volcano/pkg/controllers/podgroup/pg_controller_test.go

174 lines
4.9 KiB
Go

/*
Copyright 2019 The Volcano 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 podgroup
import (
"reflect"
"testing"
"k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/informers"
kubeclient "k8s.io/client-go/kubernetes/fake"
scheduling "volcano.sh/volcano/pkg/apis/scheduling/v1beta1"
vcclient "volcano.sh/volcano/pkg/client/clientset/versioned/fake"
)
func newFakeController() *Controller {
kubeClient := kubeclient.NewSimpleClientset()
vcClient := vcclient.NewSimpleClientset()
sharedInformers := informers.NewSharedInformerFactory(kubeClient, 0)
controller := NewPodgroupController(kubeClient, vcClient, sharedInformers, "volcano")
return controller
}
func TestAddPodGroup(t *testing.T) {
namespace := "test"
isController := true
blockOwnerDeletion := true
testCases := []struct {
name string
pod *v1.Pod
expectedPodGroup *scheduling.PodGroup
}{
{
name: "AddPodGroup: pod has ownerReferences and priorityClassName",
pod: &v1.Pod{
TypeMeta: metav1.TypeMeta{
APIVersion: "v1",
Kind: "Pod",
},
ObjectMeta: metav1.ObjectMeta{
Name: "pod1",
Namespace: namespace,
OwnerReferences: []metav1.OwnerReference{
{
APIVersion: "app/v1",
Kind: "ReplicaSet",
Name: "rs1",
UID: "7a09885b-b753-4924-9fba-77c0836bac20",
Controller: &isController,
},
},
},
Spec: v1.PodSpec{
PriorityClassName: "test-pc",
},
},
expectedPodGroup: &scheduling.PodGroup{
TypeMeta: metav1.TypeMeta{
APIVersion: "scheduling.volcano.sh/v1beta1",
Kind: "PodGroup",
},
ObjectMeta: metav1.ObjectMeta{
Name: "podgroup-7a09885b-b753-4924-9fba-77c0836bac20",
Namespace: namespace,
OwnerReferences: []metav1.OwnerReference{
{
APIVersion: "app/v1",
Kind: "ReplicaSet",
Name: "rs1",
UID: "7a09885b-b753-4924-9fba-77c0836bac20",
Controller: &isController,
},
},
},
Spec: scheduling.PodGroupSpec{
MinMember: 1,
PriorityClassName: "test-pc",
},
},
},
{
name: "AddPodGroup: pod has no ownerReferences or priorityClassName",
pod: &v1.Pod{
TypeMeta: metav1.TypeMeta{
APIVersion: "v1",
Kind: "Pod",
},
ObjectMeta: metav1.ObjectMeta{
Name: "pod1",
Namespace: namespace,
UID: types.UID("7a09885b-b753-4924-9fba-77c0836bac20"),
},
},
expectedPodGroup: &scheduling.PodGroup{
TypeMeta: metav1.TypeMeta{
APIVersion: "scheduling.volcano.sh/v1beta1",
Kind: "PodGroup",
},
ObjectMeta: metav1.ObjectMeta{
Name: "podgroup-7a09885b-b753-4924-9fba-77c0836bac20",
Namespace: namespace,
OwnerReferences: []metav1.OwnerReference{
{
APIVersion: "v1",
Kind: "Pod",
Name: "pod1",
UID: "7a09885b-b753-4924-9fba-77c0836bac20",
Controller: &isController,
BlockOwnerDeletion: &blockOwnerDeletion,
},
},
},
Spec: scheduling.PodGroupSpec{
MinMember: 1,
},
},
},
}
for _, testCase := range testCases {
c := newFakeController()
pod, err := c.kubeClient.CoreV1().Pods(testCase.pod.Namespace).Create(testCase.pod)
if err != nil {
t.Errorf("Case %s failed when creating pod for %v", testCase.name, err)
}
c.addPod(pod)
c.createNormalPodPGIfNotExist(pod)
pg, err := c.vcClient.SchedulingV1beta1().PodGroups(pod.Namespace).Get(
testCase.expectedPodGroup.Name,
metav1.GetOptions{},
)
if err != nil {
t.Errorf("Case %s failed when getting podGroup for %v", testCase.name, err)
}
if false == reflect.DeepEqual(pg.OwnerReferences, testCase.expectedPodGroup.OwnerReferences) {
t.Errorf("Case %s failed, expect %v, got %v", testCase.name, testCase.expectedPodGroup, pg)
}
podAnnotation := pod.Annotations[scheduling.KubeGroupNameAnnotationKey]
if testCase.expectedPodGroup.Name != podAnnotation {
t.Errorf("Case %s failed, expect %v, got %v", testCase.name,
testCase.expectedPodGroup.Name, podAnnotation)
}
if testCase.expectedPodGroup.Spec.PriorityClassName != pod.Spec.PriorityClassName {
t.Errorf("Case %s failed, expect %v, got %v", testCase.name,
testCase.expectedPodGroup.Spec.PriorityClassName, pod.Spec.PriorityClassName)
}
}
}