Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding e2e test case for multiple events in lifecycle policy #315

Merged
merged 1 commit into from
Jul 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions test/e2e/job_error_handling.go
Original file line number Diff line number Diff line change
Expand Up @@ -507,4 +507,51 @@ var _ = Describe("Job Error Handling", func() {
Expect(err).NotTo(HaveOccurred())
})

It("job level LifecyclePolicy, Event[]: PodEvicted, PodFailed; Action: TerminateJob", func() {
By("init test context")
context := initTestContext()
defer cleanupTestContext(context)

By("create job")
job := createJob(context, &jobSpec{
name: "evicted-terminate-job",
policies: []vkv1.LifecyclePolicy{
{
Action: vkv1.TerminateJobAction,
Events: []vkv1.Event{vkv1.PodEvictedEvent,
vkv1.PodFailedEvent,
vkv1.PodEvictedEvent,
},
},
},
tasks: []taskSpec{
{
name: "success",
img: defaultNginxImage,
min: 2,
rep: 2,
},
{
name: "delete",
img: defaultNginxImage,
min: 2,
rep: 2,
},
},
})

// job phase: pending -> running
err := waitJobPhases(context, job, []vkv1.JobPhase{vkv1.Pending, vkv1.Inqueue, vkv1.Running})
Expect(err).NotTo(HaveOccurred())

By("delete one pod of job")
podName := jobutil.MakePodName(job.Name, "delete", 0)
err = context.kubeclient.CoreV1().Pods(job.Namespace).Delete(podName, &metav1.DeleteOptions{})
Expect(err).NotTo(HaveOccurred())

// job phase: Terminating -> Terminated
err = waitJobPhases(context, job, []vkv1.JobPhase{vkv1.Terminating, vkv1.Terminated})
Expect(err).NotTo(HaveOccurred())
})

})