Skip to content

Commit 5a04ef7

Browse files
Merge pull request #20957 from openshift-cherrypick-robot/cherry-pick-20944-to-release-3.11
[release-3.11] Add more logging to deployment tests and waiting for tests to set up
2 parents f54abfd + 5e81eb5 commit 5a04ef7

File tree

5 files changed

+43
-16
lines changed

5 files changed

+43
-16
lines changed

test/extended/deployments/deployments.go

+28-12
Original file line numberDiff line numberDiff line change
@@ -318,28 +318,36 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
318318
})
319319

320320
g.It("should run a deployment to completion and then scale to zero", func() {
321-
dc, err := createDeploymentConfig(oc, deploymentFixture)
321+
namespace := oc.Namespace()
322+
323+
dc, err := readDCFixture(deploymentFixture)
324+
o.Expect(err).NotTo(o.HaveOccurred())
325+
o.Expect(dc.Name).To(o.Equal(dcName))
326+
327+
dc, err = oc.AppsClient().AppsV1().DeploymentConfigs(namespace).Create(dc)
322328
o.Expect(err).NotTo(o.HaveOccurred())
323329
o.Expect(dc.Name).To(o.Equal(dcName))
330+
e2e.Logf("created DC, creationTimestamp: %v", dc.CreationTimestamp)
324331

325332
o.Expect(waitForLatestCondition(oc, "deployment-test", deploymentRunTimeout, deploymentRunning)).NotTo(o.HaveOccurred())
326333

327334
out, err := oc.Run("logs").Args("-f", "dc/deployment-test").Output()
328335
o.Expect(err).NotTo(o.HaveOccurred())
336+
e2e.Logf("oc logs finished")
329337

330-
g.By("verifying the deployment is marked complete and scaled to zero")
338+
e2e.Logf("verifying the deployment is marked complete and scaled to zero")
331339
o.Expect(waitForLatestCondition(oc, "deployment-test", deploymentRunTimeout, deploymentReachedCompletion)).NotTo(o.HaveOccurred())
332340

333-
g.By(fmt.Sprintf("checking the logs for substrings\n%s", out))
341+
e2e.Logf("checking the logs for substrings\n%s", out)
334342
o.Expect(out).To(o.ContainSubstring("deployment-test-1 to 2"))
335343
o.Expect(out).To(o.ContainSubstring("--> pre: Success"))
336344
o.Expect(out).To(o.ContainSubstring("--> Success"))
337345

338-
g.By("verifying that scaling does not result in new pods")
346+
e2e.Logf("verifying that scaling does not result in new pods")
339347
out, err = oc.Run("scale").Args("dc/deployment-test", "--replicas=1").Output()
340348
o.Expect(err).NotTo(o.HaveOccurred())
341349

342-
g.By("ensuring no scale up of the deployment happens")
350+
e2e.Logf("ensuring no scale up of the deployment happens")
343351
wait.PollImmediate(100*time.Millisecond, 10*time.Second, func() (bool, error) {
344352
rc, err := oc.KubeClient().CoreV1().ReplicationControllers(oc.Namespace()).Get("deployment-test-1", metav1.GetOptions{})
345353
o.Expect(err).NotTo(o.HaveOccurred())
@@ -348,13 +356,13 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
348356
return false, nil
349357
})
350358

351-
g.By("verifying the scale is updated on the deployment config")
359+
e2e.Logf("verifying the scale is updated on the deployment config")
352360
config, err := oc.AppsClient().AppsV1().DeploymentConfigs(oc.Namespace()).Get("deployment-test", metav1.GetOptions{})
353361
o.Expect(err).NotTo(o.HaveOccurred())
354362
o.Expect(config.Spec.Replicas).Should(o.BeEquivalentTo(1))
355363
o.Expect(config.Spec.Test).Should(o.BeTrue())
356364

357-
g.By("deploying a few more times")
365+
e2e.Logf("deploying a few more times")
358366
for i := 0; i < 3; i++ {
359367
rolloutCompleteWithLogs := make(chan struct{})
360368
out := ""
@@ -371,12 +379,12 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
371379
// deployer container runs.
372380
_, err := oc.Run("rollout").Args("latest", "deployment-test").Output()
373381
o.Expect(err).NotTo(o.HaveOccurred())
374-
g.By(fmt.Sprintf("waiting for the rollout #%d to finish", i+2))
382+
e2e.Logf("waiting for the rollout #%d to finish", i+2)
375383
<-rolloutCompleteWithLogs
376384
o.Expect(out).NotTo(o.BeEmpty())
377385
o.Expect(waitForLatestCondition(oc, "deployment-test", deploymentRunTimeout, deploymentReachedCompletion)).NotTo(o.HaveOccurred())
378386

379-
g.By(fmt.Sprintf("checking the logs for substrings\n%s", out))
387+
e2e.Logf("checking the logs for substrings\n%s", out)
380388
o.Expect(out).To(o.ContainSubstring(fmt.Sprintf("deployment-test-%d up to 1", i+2)))
381389
o.Expect(out).To(o.ContainSubstring("--> pre: Success"))
382390
o.Expect(out).To(o.ContainSubstring("test pre hook executed"))
@@ -575,19 +583,27 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
575583
})
576584

577585
g.It("should run the custom deployment steps", func() {
578-
dc, err := createDeploymentConfig(oc, customDeploymentFixture)
586+
namespace := oc.Namespace()
587+
588+
dc, err := readDCFixture(customDeploymentFixture)
579589
o.Expect(err).NotTo(o.HaveOccurred())
580590
o.Expect(dc.Name).To(o.Equal(dcName))
581591

592+
dc, err = oc.AppsClient().AppsV1().DeploymentConfigs(namespace).Create(dc)
593+
o.Expect(err).NotTo(o.HaveOccurred())
594+
o.Expect(dc.Name).To(o.Equal(dcName))
595+
e2e.Logf("created DC, creationTimestamp: %v", dc.CreationTimestamp)
596+
582597
o.Expect(waitForLatestCondition(oc, dcName, deploymentRunTimeout, deploymentRunning)).NotTo(o.HaveOccurred())
583598

584599
out, err := oc.Run("logs").Args("--follow", "dc/custom-deployment").Output()
585600
o.Expect(err).NotTo(o.HaveOccurred())
601+
e2e.Logf("oc logs finished")
586602

587-
g.By("verifying the deployment is marked complete")
603+
e2e.Logf("verifying the deployment is marked complete")
588604
o.Expect(waitForLatestCondition(oc, "custom-deployment", deploymentRunTimeout, deploymentReachedCompletion)).NotTo(o.HaveOccurred())
589605

590-
g.By(fmt.Sprintf("checking the logs for substrings\n%s", out))
606+
e2e.Logf("checking the logs for substrings\n%s", out)
591607
o.Expect(out).To(o.ContainSubstring("--> pre: Running hook pod ..."))
592608
o.Expect(out).To(o.ContainSubstring("test pre hook executed"))
593609
o.Expect(out).To(o.ContainSubstring("--> Scaling custom-deployment-1 to 2"))

test/extended/deployments/util.go

+7
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,10 @@ func deploymentReachedCompletion(dc *appsv1.DeploymentConfig, rcs []*corev1.Repl
214214
return false, nil
215215
}
216216

217+
if appsutil.IsFailedDeployment(rc) {
218+
return true, fmt.Errorf("deployment %s/%s failed", rc.Namespace, rc.Name)
219+
}
220+
217221
if !appsutil.IsCompleteDeployment(rc) {
218222
return false, nil
219223
}
@@ -278,8 +282,11 @@ func deploymentRunning(dc *appsv1.DeploymentConfig, rcs []*corev1.ReplicationCon
278282
return true, nil
279283
}
280284
return false, fmt.Errorf("deployment failed: %v", appsutil.DeploymentStatusReasonFor(rc))
285+
281286
case appsv1.DeploymentStatusRunning, appsv1.DeploymentStatusComplete:
287+
e2e.Logf("deployment %s/%s reached state %q", rc.Namespace, rc.Name, status)
282288
return true, nil
289+
283290
default:
284291
return false, nil
285292
}

test/extended/testdata/bindata.go

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/extended/testdata/deployments/custom-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ spec:
2222
- -c
2323
- |
2424
set -e
25+
sleep 15 # give tests time to set up
2526
openshift-deploy --until=50%
2627
echo Halfway
2728
openshift-deploy
2829
echo Finished
29-
sleep 1
3030
template:
3131
metadata:
3232
labels:

test/extended/testdata/deployments/test-deployment-test.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ spec:
1616
command:
1717
- /bin/bash
1818
- -c
19-
- "echo 'test pre hook executed' && sleep 15"
19+
- |
20+
sleep 15 # give tests time to setup
21+
echo 'test pre hook executed'
2022
template:
2123
metadata:
2224
labels:

0 commit comments

Comments
 (0)