2015-06-10 20:58:22 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
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 podtask
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
mresource "k8s.io/kubernetes/contrib/mesos/pkg/scheduler/resource"
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"k8s.io/kubernetes/pkg/api/resource"
|
2015-06-10 20:58:22 +00:00
|
|
|
mesos "github.com/mesos/mesos-go/mesosproto"
|
|
|
|
mutil "github.com/mesos/mesos-go/mesosutil"
|
2015-07-14 15:24:42 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2015-06-10 20:58:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
t_min_cpu = 128
|
|
|
|
t_min_mem = 128
|
|
|
|
)
|
|
|
|
|
|
|
|
func fakePodTask(id string) (*T, error) {
|
|
|
|
return New(api.NewDefaultContext(), "", api.Pod{
|
|
|
|
ObjectMeta: api.ObjectMeta{
|
|
|
|
Name: id,
|
|
|
|
Namespace: api.NamespaceDefault,
|
|
|
|
},
|
|
|
|
}, &mesos.ExecutorInfo{})
|
|
|
|
}
|
|
|
|
|
2015-07-14 15:24:42 +00:00
|
|
|
func TestUnlimitedResources(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
task, _ := fakePodTask("unlimited")
|
|
|
|
pod := &task.Pod
|
|
|
|
pod.Spec = api.PodSpec{
|
|
|
|
Containers: []api.Container{{
|
|
|
|
Name: "a",
|
|
|
|
Ports: []api.ContainerPort{{
|
|
|
|
HostPort: 123,
|
|
|
|
}},
|
|
|
|
Resources: api.ResourceRequirements{
|
|
|
|
Limits: api.ResourceList{
|
|
|
|
api.ResourceCPU: *resource.NewQuantity(3, resource.DecimalSI),
|
|
|
|
api.ResourceMemory: *resource.NewQuantity(768*1024*1024, resource.BinarySI),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
Name: "b",
|
|
|
|
}, {
|
|
|
|
Name: "c",
|
|
|
|
}},
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeLimitingCPU := mresource.CPUForPod(pod, mresource.DefaultDefaultContainerCPULimit)
|
|
|
|
beforeLimitingMem := mresource.MemForPod(pod, mresource.DefaultDefaultContainerMemLimit)
|
|
|
|
|
|
|
|
unboundedCPU := mresource.LimitPodCPU(pod, mresource.DefaultDefaultContainerCPULimit)
|
|
|
|
unboundedMem := mresource.LimitPodMem(pod, mresource.DefaultDefaultContainerMemLimit)
|
|
|
|
|
|
|
|
cpu := mresource.PodCPULimit(pod)
|
|
|
|
mem := mresource.PodMemLimit(pod)
|
|
|
|
|
|
|
|
assert.True(unboundedCPU, "CPU resources are defined as unlimited")
|
|
|
|
assert.True(unboundedMem, "mem resources are defined as unlimited")
|
|
|
|
|
|
|
|
assert.Equal(2*float64(mresource.DefaultDefaultContainerCPULimit)+3.0, float64(cpu))
|
|
|
|
assert.Equal(2*float64(mresource.DefaultDefaultContainerMemLimit)+768.0, float64(mem))
|
|
|
|
|
|
|
|
assert.Equal(cpu, beforeLimitingCPU)
|
|
|
|
assert.Equal(mem, beforeLimitingMem)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLimitedResources(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
task, _ := fakePodTask("limited")
|
|
|
|
pod := &task.Pod
|
|
|
|
pod.Spec = api.PodSpec{
|
|
|
|
Containers: []api.Container{{
|
|
|
|
Name: "a",
|
|
|
|
Resources: api.ResourceRequirements{
|
|
|
|
Limits: api.ResourceList{
|
|
|
|
api.ResourceCPU: *resource.NewQuantity(1, resource.DecimalSI),
|
|
|
|
api.ResourceMemory: *resource.NewQuantity(256*1024*1024, resource.BinarySI),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
Name: "b",
|
|
|
|
Resources: api.ResourceRequirements{
|
|
|
|
Limits: api.ResourceList{
|
|
|
|
api.ResourceCPU: *resource.NewQuantity(2, resource.DecimalSI),
|
|
|
|
api.ResourceMemory: *resource.NewQuantity(512*1024*1024, resource.BinarySI),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}},
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeLimitingCPU := mresource.CPUForPod(pod, mresource.DefaultDefaultContainerCPULimit)
|
|
|
|
beforeLimitingMem := mresource.MemForPod(pod, mresource.DefaultDefaultContainerMemLimit)
|
|
|
|
|
|
|
|
unboundedCPU := mresource.LimitPodCPU(pod, mresource.DefaultDefaultContainerCPULimit)
|
|
|
|
unboundedMem := mresource.LimitPodMem(pod, mresource.DefaultDefaultContainerMemLimit)
|
|
|
|
|
|
|
|
cpu := mresource.PodCPULimit(pod)
|
|
|
|
mem := mresource.PodMemLimit(pod)
|
|
|
|
|
|
|
|
assert.False(unboundedCPU, "CPU resources are defined as limited")
|
|
|
|
assert.False(unboundedMem, "mem resources are defined as limited")
|
|
|
|
|
|
|
|
assert.Equal(3.0, float64(cpu))
|
|
|
|
assert.Equal(768.0, float64(mem))
|
|
|
|
|
|
|
|
assert.Equal(cpu, beforeLimitingCPU)
|
|
|
|
assert.Equal(mem, beforeLimitingMem)
|
|
|
|
}
|
|
|
|
|
2015-06-10 20:58:22 +00:00
|
|
|
func TestEmptyOffer(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
task, err := fakePodTask("foo")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2015-07-14 15:24:42 +00:00
|
|
|
|
|
|
|
task.Pod.Spec = api.PodSpec{
|
|
|
|
Containers: []api.Container{{
|
|
|
|
Name: "a",
|
|
|
|
}},
|
|
|
|
}
|
|
|
|
|
|
|
|
mresource.LimitPodCPU(&task.Pod, mresource.DefaultDefaultContainerCPULimit)
|
|
|
|
mresource.LimitPodMem(&task.Pod, mresource.DefaultDefaultContainerMemLimit)
|
|
|
|
|
2015-06-10 20:58:22 +00:00
|
|
|
if ok := task.AcceptOffer(nil); ok {
|
|
|
|
t.Fatalf("accepted nil offer")
|
|
|
|
}
|
|
|
|
if ok := task.AcceptOffer(&mesos.Offer{}); ok {
|
|
|
|
t.Fatalf("accepted empty offer")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNoPortsInPodOrOffer(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
task, err := fakePodTask("foo")
|
|
|
|
if err != nil || task == nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2015-07-14 15:24:42 +00:00
|
|
|
task.Pod.Spec = api.PodSpec{
|
|
|
|
Containers: []api.Container{{
|
|
|
|
Name: "a",
|
|
|
|
}},
|
|
|
|
}
|
|
|
|
|
|
|
|
mresource.LimitPodCPU(&task.Pod, mresource.DefaultDefaultContainerCPULimit)
|
|
|
|
mresource.LimitPodMem(&task.Pod, mresource.DefaultDefaultContainerMemLimit)
|
|
|
|
|
2015-06-10 20:58:22 +00:00
|
|
|
offer := &mesos.Offer{
|
|
|
|
Resources: []*mesos.Resource{
|
|
|
|
mutil.NewScalarResource("cpus", 0.001),
|
|
|
|
mutil.NewScalarResource("mem", 0.001),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if ok := task.AcceptOffer(offer); ok {
|
|
|
|
t.Fatalf("accepted offer %v:", offer)
|
|
|
|
}
|
|
|
|
|
|
|
|
offer = &mesos.Offer{
|
|
|
|
Resources: []*mesos.Resource{
|
|
|
|
mutil.NewScalarResource("cpus", t_min_cpu),
|
|
|
|
mutil.NewScalarResource("mem", t_min_mem),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if ok := task.AcceptOffer(offer); !ok {
|
|
|
|
t.Fatalf("did not accepted offer %v:", offer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAcceptOfferPorts(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
task, _ := fakePodTask("foo")
|
|
|
|
pod := &task.Pod
|
|
|
|
|
|
|
|
offer := &mesos.Offer{
|
|
|
|
Resources: []*mesos.Resource{
|
|
|
|
mutil.NewScalarResource("cpus", t_min_cpu),
|
|
|
|
mutil.NewScalarResource("mem", t_min_mem),
|
|
|
|
rangeResource("ports", []uint64{1, 1}),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if ok := task.AcceptOffer(offer); !ok {
|
|
|
|
t.Fatalf("did not accepted offer %v:", offer)
|
|
|
|
}
|
|
|
|
|
|
|
|
pod.Spec = api.PodSpec{
|
|
|
|
Containers: []api.Container{{
|
|
|
|
Ports: []api.ContainerPort{{
|
|
|
|
HostPort: 123,
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
}
|
2015-07-14 15:24:42 +00:00
|
|
|
|
|
|
|
mresource.LimitPodCPU(&task.Pod, mresource.DefaultDefaultContainerCPULimit)
|
|
|
|
mresource.LimitPodMem(&task.Pod, mresource.DefaultDefaultContainerMemLimit)
|
|
|
|
|
2015-06-10 20:58:22 +00:00
|
|
|
if ok := task.AcceptOffer(offer); ok {
|
|
|
|
t.Fatalf("accepted offer %v:", offer)
|
|
|
|
}
|
|
|
|
|
|
|
|
pod.Spec.Containers[0].Ports[0].HostPort = 1
|
|
|
|
if ok := task.AcceptOffer(offer); !ok {
|
|
|
|
t.Fatalf("did not accepted offer %v:", offer)
|
|
|
|
}
|
|
|
|
|
|
|
|
pod.Spec.Containers[0].Ports[0].HostPort = 0
|
|
|
|
if ok := task.AcceptOffer(offer); !ok {
|
|
|
|
t.Fatalf("did not accepted offer %v:", offer)
|
|
|
|
}
|
|
|
|
|
|
|
|
offer.Resources = []*mesos.Resource{
|
|
|
|
mutil.NewScalarResource("cpus", t_min_cpu),
|
|
|
|
mutil.NewScalarResource("mem", t_min_mem),
|
|
|
|
}
|
|
|
|
if ok := task.AcceptOffer(offer); ok {
|
|
|
|
t.Fatalf("accepted offer %v:", offer)
|
|
|
|
}
|
|
|
|
|
|
|
|
pod.Spec.Containers[0].Ports[0].HostPort = 1
|
|
|
|
if ok := task.AcceptOffer(offer); ok {
|
|
|
|
t.Fatalf("accepted offer %v:", offer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGeneratePodName(t *testing.T) {
|
|
|
|
p := &api.Pod{
|
|
|
|
ObjectMeta: api.ObjectMeta{
|
|
|
|
Name: "foo",
|
|
|
|
Namespace: "bar",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
name := generateTaskName(p)
|
|
|
|
expected := "foo.bar.pods"
|
|
|
|
if name != expected {
|
|
|
|
t.Fatalf("expected %q instead of %q", expected, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
p.Namespace = ""
|
|
|
|
name = generateTaskName(p)
|
|
|
|
expected = "foo.default.pods"
|
|
|
|
if name != expected {
|
|
|
|
t.Fatalf("expected %q instead of %q", expected, name)
|
|
|
|
}
|
|
|
|
}
|