Skip to content

Commit ab8b232

Browse files
author
OpenShift Bot
authored
Merge pull request #11654 from mfojtik/deployments-follow
Merged by openshift-bot
2 parents fca2ee7 + a8ca5e7 commit ab8b232

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

test/extended/deployments/deployments.go

+16-4
Original file line numberDiff line numberDiff line change
@@ -290,24 +290,31 @@ var _ = g.Describe("deploymentconfigs", func() {
290290

291291
g.Describe("with env in params referencing the configmap [Conformance]", func() {
292292
g.AfterEach(func() {
293-
failureTrap(oc, "example", g.CurrentGinkgoTestDescription().Failed)
293+
failureTrap(oc, "deploymenty-simple", g.CurrentGinkgoTestDescription().Failed)
294294
})
295295
g.It("should expand the config map key to a value", func() {
296296
_, err := oc.Run("create").Args("configmap", "test", "--from-literal=foo=bar").Output()
297297
o.Expect(err).NotTo(o.HaveOccurred())
298298

299299
_, name, err := createFixture(oc, envRefDeploymentFixture)
300300
o.Expect(err).NotTo(o.HaveOccurred())
301+
o.Expect(waitForSyncedConfig(oc, name, deploymentRunTimeout)).NotTo(o.HaveOccurred())
302+
303+
_, err = oc.Run("rollout").Args("latest", "dc/"+name).Output()
304+
o.Expect(err).NotTo(o.HaveOccurred())
305+
306+
out, _ := oc.Run("rollout").Args("status", "dc/"+name).Output()
307+
o.Expect(out).To(o.ContainSubstring("has failed progressing"))
301308

302-
out, err := oc.Run("deploy").Args("dc/"+name, "--latest", "--follow").Output()
309+
out, err = oc.Run("logs").Args("dc/" + name).Output()
303310
o.Expect(err).NotTo(o.HaveOccurred())
304311
o.Expect(out).To(o.ContainSubstring("hello bar"))
305312
})
306313
})
307314

308315
g.Describe("with multiple image change triggers [Conformance]", func() {
309316
g.AfterEach(func() {
310-
failureTrap(oc, "example", g.CurrentGinkgoTestDescription().Failed)
317+
failureTrap(oc, "deployment-simple", g.CurrentGinkgoTestDescription().Failed)
311318
})
312319

313320
g.It("should run a successful deployment with multiple triggers", func() {
@@ -536,11 +543,16 @@ var _ = g.Describe("deploymentconfigs", func() {
536543
o.Expect(fmt.Errorf("expected no deployment, found %#v", rcs[0])).NotTo(o.HaveOccurred())
537544
}
538545

539-
g.By("verifying that we cannot start a new deployment")
546+
g.By("verifying that we cannot start a new deployment via oc deploy")
540547
out, err := oc.Run("deploy").Args(resource, "--latest").Output()
541548
o.Expect(err).To(o.HaveOccurred())
542549
o.Expect(out).To(o.ContainSubstring("cannot deploy a paused deployment config"))
543550

551+
g.By("verifying that we cannot start a new deployment via oc rollout")
552+
out, err = oc.Run("rollout").Args("latest", resource).Output()
553+
o.Expect(err).To(o.HaveOccurred())
554+
o.Expect(out).To(o.ContainSubstring("cannot deploy a paused deployment config"))
555+
544556
g.By("verifying that we cannot cancel a deployment")
545557
out, err = oc.Run("deploy").Args(resource, "--cancel").Output()
546558
o.Expect(err).To(o.HaveOccurred())

test/extended/testdata/deployments/deployment-with-ref-env.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ spec:
2020
configMapKeyRef:
2121
name: test
2222
key: foo
23-
command: ["/bin/bash", "-c", "echo hello ${HELLO}"]
23+
command: ["/bin/bash", "-c", "echo hello ${HELLO} && exit 1"]
2424
template:
2525
metadata:
2626
labels:
2727
name: deployment-simple
2828
spec:
2929
containers:
3030
- image: "openshift/origin-base:latest"
31-
args: [ "sleep 120" ]
31+
command: [ "/bin/bash", "-c", "sleep infinity" ]
3232
imagePullPolicy: IfNotPresent
3333
name: myapp

0 commit comments

Comments
 (0)