123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- /*
- Copyright 2014 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 apimachinery
- import (
- "context"
- "strconv"
- "time"
- batchv1 "k8s.io/api/batch/v1"
- batchv1beta1 "k8s.io/api/batch/v1beta1"
- "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/labels"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/util/intstr"
- "k8s.io/apimachinery/pkg/util/uuid"
- "k8s.io/apimachinery/pkg/watch"
- "k8s.io/kubernetes/test/e2e/framework"
- e2eskipper "k8s.io/kubernetes/test/e2e/framework/skipper"
- "github.com/onsi/ginkgo"
- imageutils "k8s.io/kubernetes/test/utils/image"
- )
- func testingPod(name, value string) v1.Pod {
- return v1.Pod{
- ObjectMeta: metav1.ObjectMeta{
- Name: name,
- Labels: map[string]string{
- "name": "foo",
- "time": value,
- },
- },
- Spec: v1.PodSpec{
- Containers: []v1.Container{
- {
- Name: "nginx",
- Image: imageutils.GetE2EImage(imageutils.Nginx),
- Ports: []v1.ContainerPort{{ContainerPort: 80}},
- LivenessProbe: &v1.Probe{
- Handler: v1.Handler{
- HTTPGet: &v1.HTTPGetAction{
- Path: "/index.html",
- Port: intstr.FromInt(8080),
- },
- },
- InitialDelaySeconds: 30,
- },
- },
- },
- },
- }
- }
- func observeCreation(w watch.Interface) {
- select {
- case event := <-w.ResultChan():
- if event.Type != watch.Added {
- framework.Failf("Failed to observe the creation: %v", event)
- }
- case <-time.After(30 * time.Second):
- framework.Failf("Timeout while waiting for observing the creation")
- }
- }
- func observerUpdate(w watch.Interface, expectedUpdate func(runtime.Object) bool) {
- timer := time.After(30 * time.Second)
- updated := false
- timeout := false
- for !updated && !timeout {
- select {
- case event := <-w.ResultChan():
- if event.Type == watch.Modified {
- if expectedUpdate(event.Object) {
- updated = true
- }
- }
- case <-timer:
- timeout = true
- }
- }
- if !updated {
- framework.Failf("Failed to observe pod update")
- }
- }
- var _ = SIGDescribe("Generated clientset", func() {
- f := framework.NewDefaultFramework("clientset")
- ginkgo.It("should create pods, set the deletionTimestamp and deletionGracePeriodSeconds of the pod", func() {
- podClient := f.ClientSet.CoreV1().Pods(f.Namespace.Name)
- ginkgo.By("constructing the pod")
- name := "pod" + string(uuid.NewUUID())
- value := strconv.Itoa(time.Now().Nanosecond())
- podCopy := testingPod(name, value)
- pod := &podCopy
- ginkgo.By("setting up watch")
- selector := labels.SelectorFromSet(labels.Set(map[string]string{"time": value})).String()
- options := metav1.ListOptions{LabelSelector: selector}
- pods, err := podClient.List(context.TODO(), options)
- if err != nil {
- framework.Failf("Failed to query for pods: %v", err)
- }
- framework.ExpectEqual(len(pods.Items), 0)
- options = metav1.ListOptions{
- LabelSelector: selector,
- ResourceVersion: pods.ListMeta.ResourceVersion,
- }
- w, err := podClient.Watch(context.TODO(), options)
- if err != nil {
- framework.Failf("Failed to set up watch: %v", err)
- }
- ginkgo.By("creating the pod")
- pod, err = podClient.Create(context.TODO(), pod, metav1.CreateOptions{})
- if err != nil {
- framework.Failf("Failed to create pod: %v", err)
- }
- ginkgo.By("verifying the pod is in kubernetes")
- options = metav1.ListOptions{
- LabelSelector: selector,
- ResourceVersion: pod.ResourceVersion,
- }
- pods, err = podClient.List(context.TODO(), options)
- if err != nil {
- framework.Failf("Failed to query for pods: %v", err)
- }
- framework.ExpectEqual(len(pods.Items), 1)
- ginkgo.By("verifying pod creation was observed")
- observeCreation(w)
- // We need to wait for the pod to be scheduled, otherwise the deletion
- // will be carried out immediately rather than gracefully.
- framework.ExpectNoError(f.WaitForPodRunning(pod.Name))
- ginkgo.By("deleting the pod gracefully")
- gracePeriod := int64(31)
- if err := podClient.Delete(context.TODO(), pod.Name, metav1.NewDeleteOptions(gracePeriod)); err != nil {
- framework.Failf("Failed to delete pod: %v", err)
- }
- ginkgo.By("verifying the deletionTimestamp and deletionGracePeriodSeconds of the pod is set")
- observerUpdate(w, func(obj runtime.Object) bool {
- pod := obj.(*v1.Pod)
- return pod.ObjectMeta.DeletionTimestamp != nil && *pod.ObjectMeta.DeletionGracePeriodSeconds == gracePeriod
- })
- })
- })
- func newTestingCronJob(name string, value string) *batchv1beta1.CronJob {
- parallelism := int32(1)
- completions := int32(1)
- return &batchv1beta1.CronJob{
- ObjectMeta: metav1.ObjectMeta{
- Name: name,
- Labels: map[string]string{
- "time": value,
- },
- },
- Spec: batchv1beta1.CronJobSpec{
- Schedule: "*/1 * * * ?",
- ConcurrencyPolicy: batchv1beta1.AllowConcurrent,
- JobTemplate: batchv1beta1.JobTemplateSpec{
- Spec: batchv1.JobSpec{
- Parallelism: ¶llelism,
- Completions: &completions,
- Template: v1.PodTemplateSpec{
- Spec: v1.PodSpec{
- RestartPolicy: v1.RestartPolicyOnFailure,
- Volumes: []v1.Volume{
- {
- Name: "data",
- VolumeSource: v1.VolumeSource{
- EmptyDir: &v1.EmptyDirVolumeSource{},
- },
- },
- },
- Containers: []v1.Container{
- {
- Name: "c",
- Image: imageutils.GetE2EImage(imageutils.BusyBox),
- VolumeMounts: []v1.VolumeMount{
- {
- MountPath: "/data",
- Name: "data",
- },
- },
- },
- },
- },
- },
- },
- },
- },
- }
- }
- var _ = SIGDescribe("Generated clientset", func() {
- f := framework.NewDefaultFramework("clientset")
- ginkgo.BeforeEach(func() {
- e2eskipper.SkipIfMissingResource(f.DynamicClient, CronJobGroupVersionResource, f.Namespace.Name)
- })
- ginkgo.It("should create v1beta1 cronJobs, delete cronJobs, watch cronJobs", func() {
- cronJobClient := f.ClientSet.BatchV1beta1().CronJobs(f.Namespace.Name)
- ginkgo.By("constructing the cronJob")
- name := "cronjob" + string(uuid.NewUUID())
- value := strconv.Itoa(time.Now().Nanosecond())
- cronJob := newTestingCronJob(name, value)
- ginkgo.By("setting up watch")
- selector := labels.SelectorFromSet(labels.Set(map[string]string{"time": value})).String()
- options := metav1.ListOptions{LabelSelector: selector}
- cronJobs, err := cronJobClient.List(context.TODO(), options)
- if err != nil {
- framework.Failf("Failed to query for cronJobs: %v", err)
- }
- framework.ExpectEqual(len(cronJobs.Items), 0)
- options = metav1.ListOptions{
- LabelSelector: selector,
- ResourceVersion: cronJobs.ListMeta.ResourceVersion,
- }
- w, err := cronJobClient.Watch(context.TODO(), options)
- if err != nil {
- framework.Failf("Failed to set up watch: %v", err)
- }
- ginkgo.By("creating the cronJob")
- cronJob, err = cronJobClient.Create(context.TODO(), cronJob, metav1.CreateOptions{})
- if err != nil {
- framework.Failf("Failed to create cronJob: %v", err)
- }
- ginkgo.By("verifying the cronJob is in kubernetes")
- options = metav1.ListOptions{
- LabelSelector: selector,
- ResourceVersion: cronJob.ResourceVersion,
- }
- cronJobs, err = cronJobClient.List(context.TODO(), options)
- if err != nil {
- framework.Failf("Failed to query for cronJobs: %v", err)
- }
- framework.ExpectEqual(len(cronJobs.Items), 1)
- ginkgo.By("verifying cronJob creation was observed")
- observeCreation(w)
- ginkgo.By("deleting the cronJob")
- // Use DeletePropagationBackground so the CronJob is really gone when the call returns.
- propagationPolicy := metav1.DeletePropagationBackground
- if err := cronJobClient.Delete(context.TODO(), cronJob.Name, &metav1.DeleteOptions{PropagationPolicy: &propagationPolicy}); err != nil {
- framework.Failf("Failed to delete cronJob: %v", err)
- }
- options = metav1.ListOptions{LabelSelector: selector}
- cronJobs, err = cronJobClient.List(context.TODO(), options)
- if err != nil {
- framework.Failf("Failed to list cronJobs to verify deletion: %v", err)
- }
- framework.ExpectEqual(len(cronJobs.Items), 0)
- })
- })
|