123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- /*
- Copyright 2017 The Kubernetes 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 util
- import (
- "reflect"
- "testing"
- "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/util/diff"
- "k8s.io/kubernetes/pkg/apis/scheduling"
- )
- // TestGetPodPriority tests GetPodPriority function.
- func TestGetPodPriority(t *testing.T) {
- p := int32(20)
- tests := []struct {
- name string
- pod *v1.Pod
- expectedPriority int32
- }{
- {
- name: "no priority pod resolves to static default priority",
- pod: &v1.Pod{
- Spec: v1.PodSpec{Containers: []v1.Container{
- {Name: "container", Image: "image"}},
- },
- },
- expectedPriority: scheduling.DefaultPriorityWhenNoDefaultClassExists,
- },
- {
- name: "pod with priority resolves correctly",
- pod: &v1.Pod{
- Spec: v1.PodSpec{Containers: []v1.Container{
- {Name: "container", Image: "image"}},
- Priority: &p,
- },
- },
- expectedPriority: p,
- },
- }
- for _, test := range tests {
- if GetPodPriority(test.pod) != test.expectedPriority {
- t.Errorf("expected pod priority: %v, got %v", test.expectedPriority, GetPodPriority(test.pod))
- }
- }
- }
- // TestSortableList tests SortableList by storing pods in the list and sorting
- // them by their priority.
- func TestSortableList(t *testing.T) {
- higherPriority := func(pod1, pod2 interface{}) bool {
- return GetPodPriority(pod1.(*v1.Pod)) > GetPodPriority(pod2.(*v1.Pod))
- }
- podList := SortableList{CompFunc: higherPriority}
- // Add a few Pods with different priorities from lowest to highest priority.
- for i := 0; i < 10; i++ {
- var p = int32(i)
- pod := &v1.Pod{
- Spec: v1.PodSpec{
- Containers: []v1.Container{
- {
- Name: "container",
- Image: "image",
- },
- },
- Priority: &p,
- },
- }
- podList.Items = append(podList.Items, pod)
- }
- podList.Sort()
- if len(podList.Items) != 10 {
- t.Errorf("expected length of list was 10, got: %v", len(podList.Items))
- }
- var prevPriority = int32(10)
- for _, p := range podList.Items {
- if *p.(*v1.Pod).Spec.Priority >= prevPriority {
- t.Errorf("Pods are not soreted. Current pod pririty is %v, while previous one was %v.", *p.(*v1.Pod).Spec.Priority, prevPriority)
- }
- }
- }
- func TestGetContainerPorts(t *testing.T) {
- tests := []struct {
- pod1 *v1.Pod
- pod2 *v1.Pod
- expected []*v1.ContainerPort
- }{
- {
- pod1: &v1.Pod{
- Spec: v1.PodSpec{
- Containers: []v1.Container{
- {
- Ports: []v1.ContainerPort{
- {
- ContainerPort: 8001,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8002,
- Protocol: v1.ProtocolTCP,
- },
- },
- },
- {
- Ports: []v1.ContainerPort{
- {
- ContainerPort: 8003,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8004,
- Protocol: v1.ProtocolTCP,
- },
- },
- },
- },
- },
- },
- pod2: &v1.Pod{
- Spec: v1.PodSpec{
- Containers: []v1.Container{
- {
- Ports: []v1.ContainerPort{
- {
- ContainerPort: 8011,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8012,
- Protocol: v1.ProtocolTCP,
- },
- },
- },
- {
- Ports: []v1.ContainerPort{
- {
- ContainerPort: 8013,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8014,
- Protocol: v1.ProtocolTCP,
- },
- },
- },
- },
- },
- },
- expected: []*v1.ContainerPort{
- {
- ContainerPort: 8001,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8002,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8003,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8004,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8011,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8012,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8013,
- Protocol: v1.ProtocolTCP,
- },
- {
- ContainerPort: 8014,
- Protocol: v1.ProtocolTCP,
- },
- },
- },
- }
- for _, test := range tests {
- result := GetContainerPorts(test.pod1, test.pod2)
- if !reflect.DeepEqual(test.expected, result) {
- t.Errorf("Got different result than expected.\nDifference detected on:\n%s", diff.ObjectGoPrintSideBySide(test.expected, result))
- }
- }
- }
|