2015-03-31 02:56:34 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
2015-03-31 02:56:34 +00:00
|
|
|
|
|
|
|
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 e2e
|
|
|
|
|
|
|
|
import (
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"k8s.io/kubernetes/pkg/client"
|
|
|
|
"k8s.io/kubernetes/pkg/util"
|
2015-03-31 02:56:34 +00:00
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Docker Containers", func() {
|
|
|
|
var c *client.Client
|
2015-04-26 22:54:39 +00:00
|
|
|
var ns string
|
2015-03-31 02:56:34 +00:00
|
|
|
|
|
|
|
BeforeEach(func() {
|
|
|
|
var err error
|
|
|
|
c, err = loadClient()
|
2015-04-27 13:35:28 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-04-26 22:54:39 +00:00
|
|
|
ns_, err := createTestingNS("containers", c)
|
|
|
|
ns = ns_.Name
|
2015-03-31 02:56:34 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
2015-04-26 22:54:39 +00:00
|
|
|
AfterEach(func() {
|
|
|
|
if err := c.Namespaces().Delete(ns); err != nil {
|
|
|
|
Failf("Couldn't delete ns %s", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2015-03-31 02:56:34 +00:00
|
|
|
It("should use the image defaults if command and args are blank", func() {
|
2015-06-23 08:03:31 +00:00
|
|
|
testContainerOutputInNamespace("use defaults", c, entrypointTestPod(), 0, []string{
|
2015-03-31 02:56:34 +00:00
|
|
|
"[/ep default arguments]",
|
2015-04-27 13:35:28 +00:00
|
|
|
}, ns)
|
2015-03-31 02:56:34 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should be able to override the image's default arguments (docker cmd)", func() {
|
|
|
|
pod := entrypointTestPod()
|
|
|
|
pod.Spec.Containers[0].Args = []string{"override", "arguments"}
|
|
|
|
|
2015-06-23 08:03:31 +00:00
|
|
|
testContainerOutputInNamespace("override arguments", c, pod, 0, []string{
|
2015-03-31 02:56:34 +00:00
|
|
|
"[/ep override arguments]",
|
2015-04-27 13:35:28 +00:00
|
|
|
}, ns)
|
2015-03-31 02:56:34 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// Note: when you override the entrypoint, the image's arguments (docker cmd)
|
|
|
|
// are ignored.
|
|
|
|
It("should be able to override the image's default commmand (docker entrypoint)", func() {
|
|
|
|
pod := entrypointTestPod()
|
|
|
|
pod.Spec.Containers[0].Command = []string{"/ep-2"}
|
|
|
|
|
2015-06-23 08:03:31 +00:00
|
|
|
testContainerOutputInNamespace("override command", c, pod, 0, []string{
|
2015-03-31 02:56:34 +00:00
|
|
|
"[/ep-2]",
|
2015-04-27 13:35:28 +00:00
|
|
|
}, ns)
|
2015-03-31 02:56:34 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should be able to override the image's default command and arguments", func() {
|
|
|
|
pod := entrypointTestPod()
|
|
|
|
pod.Spec.Containers[0].Command = []string{"/ep-2"}
|
|
|
|
pod.Spec.Containers[0].Args = []string{"override", "arguments"}
|
|
|
|
|
2015-06-23 08:03:31 +00:00
|
|
|
testContainerOutputInNamespace("override all", c, pod, 0, []string{
|
2015-03-31 02:56:34 +00:00
|
|
|
"[/ep-2 override arguments]",
|
2015-04-27 13:35:28 +00:00
|
|
|
}, ns)
|
2015-03-31 02:56:34 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
const testContainerName = "test-container"
|
|
|
|
|
|
|
|
// Return a prototypical entrypoint test pod
|
|
|
|
func entrypointTestPod() *api.Pod {
|
|
|
|
podName := "client-containers-" + string(util.NewUUID())
|
|
|
|
|
|
|
|
return &api.Pod{
|
|
|
|
ObjectMeta: api.ObjectMeta{
|
|
|
|
Name: podName,
|
|
|
|
},
|
|
|
|
Spec: api.PodSpec{
|
|
|
|
Containers: []api.Container{
|
|
|
|
{
|
|
|
|
Name: testContainerName,
|
2015-03-31 17:25:20 +00:00
|
|
|
Image: "gcr.io/google_containers/eptest:0.1",
|
2015-03-31 02:56:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
RestartPolicy: api.RestartPolicyNever,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|