Skip to content

Commit c07de24

Browse files
author
OpenShift Bot
authored
Merge pull request #12537 from jim-minter/jenkinstestfix
Merged by openshift-bot
2 parents bc3a0cc + d994092 commit c07de24

File tree

3 files changed

+19
-24
lines changed

3 files changed

+19
-24
lines changed

test/extended/builds/dockerfile.go

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package builds
22

33
import (
4-
"fmt"
5-
64
g "github.com/onsi/ginkgo"
75
o "github.com/onsi/gomega"
86

@@ -14,12 +12,11 @@ var _ = g.Describe("[builds][Slow] build can have Dockerfile input", func() {
1412
var (
1513
oc = exutil.NewCLI("build-dockerfile-env", exutil.KubeConfigPath())
1614
testDockerfile = `
17-
FROM openshift/jenkins-1-centos7
15+
FROM library/busybox
1816
USER 1001
1917
`
2018
testDockerfile2 = `
2119
FROM centos:7
22-
RUN yum install -y httpd
2320
USER 1001
2421
`
2522
)
@@ -33,34 +30,34 @@ USER 1001
3330

3431
g.Describe("being created from new-build", func() {
3532
g.It("should create a image via new-build", func() {
36-
g.By(fmt.Sprintf("calling oc new-build with Dockerfile"))
37-
err := oc.Run("new-build").Args("-D", "-", "--to", "jenkins:custom").InputString(testDockerfile).Execute()
33+
g.By("calling oc new-build with Dockerfile")
34+
err := oc.Run("new-build").Args("-D", "-", "--to", "busybox:custom").InputString(testDockerfile).Execute()
3835
o.Expect(err).NotTo(o.HaveOccurred())
3936

4037
g.By("starting a test build")
41-
bc, err := oc.Client().BuildConfigs(oc.Namespace()).Get("jenkins")
38+
bc, err := oc.Client().BuildConfigs(oc.Namespace()).Get("busybox")
4239
o.Expect(err).NotTo(o.HaveOccurred())
4340
o.Expect(bc.Spec.Source.Git).To(o.BeNil())
4441
o.Expect(bc.Spec.Source.Dockerfile).NotTo(o.BeNil())
4542
o.Expect(*bc.Spec.Source.Dockerfile).To(o.Equal(testDockerfile))
4643

47-
buildName := "jenkins-1"
44+
buildName := "busybox-1"
4845
g.By("expecting the Dockerfile build is in Complete phase")
4946
err = exutil.WaitForABuild(oc.Client().Builds(oc.Namespace()), buildName, nil, nil, nil)
50-
//debug for failures on jenkins
47+
//debug for failures
5148
if err != nil {
52-
exutil.DumpBuildLogs("jenkins", oc)
49+
exutil.DumpBuildLogs("busybox", oc)
5350
}
5451
o.Expect(err).NotTo(o.HaveOccurred())
5552

5653
g.By("getting the build Docker image reference from ImageStream")
57-
image, err := oc.Client().ImageStreamTags(oc.Namespace()).Get("jenkins", "custom")
54+
image, err := oc.Client().ImageStreamTags(oc.Namespace()).Get("busybox", "custom")
5855
o.Expect(err).NotTo(o.HaveOccurred())
5956
o.Expect(image.Image.DockerImageMetadata.Config.User).To(o.Equal("1001"))
6057
})
6158

6259
g.It("should create a image via new-build and infer the origin tag", func() {
63-
g.By(fmt.Sprintf("calling oc new-build with Dockerfile that uses the same tag as the output"))
60+
g.By("calling oc new-build with Dockerfile that uses the same tag as the output")
6461
err := oc.Run("new-build").Args("-D", "-").InputString(testDockerfile2).Execute()
6562
o.Expect(err).NotTo(o.HaveOccurred())
6663

@@ -76,7 +73,7 @@ USER 1001
7673
buildName := "centos-1"
7774
g.By("expecting the Dockerfile build is in Complete phase")
7875
err = exutil.WaitForABuild(oc.Client().Builds(oc.Namespace()), buildName, nil, nil, nil)
79-
//debug for failures on jenkins
76+
//debug for failures
8077
if err != nil {
8178
exutil.DumpBuildLogs("centos", oc)
8279
}

test/extended/builds/image_source.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var _ = g.Describe("[builds][Slow] build can have Docker image source", func() {
2424
o.Expect(err).NotTo(o.HaveOccurred())
2525

2626
g.By("waiting for imagestreams to be imported")
27-
err = exutil.WaitForAnImageStream(oc.AdminClient().ImageStreams("openshift"), "jenkins", exutil.CheckImageStreamLatestTagPopulatedFn, exutil.CheckImageStreamTagNotFoundFn)
27+
err = exutil.WaitForAnImageStream(oc.AdminClient().ImageStreams("openshift"), "ruby", exutil.CheckImageStreamLatestTagPopulatedFn, exutil.CheckImageStreamTagNotFoundFn)
2828
o.Expect(err).NotTo(o.HaveOccurred())
2929
})
3030

@@ -48,7 +48,7 @@ var _ = g.Describe("[builds][Slow] build can have Docker image source", func() {
4848
g.By("expecting the pod to contain the file from the input image")
4949
out, err := oc.Run("exec").Args(pod.Name, "-c", pod.Spec.Containers[0].Name, "--", "ls", "injected/dir").Output()
5050
o.Expect(err).NotTo(o.HaveOccurred())
51-
o.Expect(out).To(o.ContainSubstring("jenkins.war"))
51+
o.Expect(out).To(o.ContainSubstring("ruby"))
5252
})
5353
})
5454
g.Describe("build with image docker", func() {
@@ -71,7 +71,7 @@ var _ = g.Describe("[builds][Slow] build can have Docker image source", func() {
7171
g.By("expecting the pod to contain the file from the input image")
7272
out, err := oc.Run("exec").Args(pod.Name, "-c", pod.Spec.Containers[0].Name, "--", "ls", "injected/dir").Output()
7373
o.Expect(err).NotTo(o.HaveOccurred())
74-
o.Expect(out).To(o.ContainSubstring("jenkins.war"))
74+
o.Expect(out).To(o.ContainSubstring("ruby"))
7575
})
7676

7777
})

test/extended/testdata/test-imagesource-build.yaml

+6-8
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ items:
1919
images:
2020
- from:
2121
kind: ImageStreamTag
22-
name: jenkins:latest
22+
name: ruby:2.3
2323
namespace: openshift
2424
paths:
2525
- destinationDir: injected/dir
26-
sourcePath: /usr/lib/jenkins/jenkins.war
26+
sourcePath: /opt/rh/rh-ruby23/root/usr/bin/ruby
2727
strategy:
28-
sourceStrategy:
28+
sourceStrategy:
2929
forcePull: true
30-
from:
30+
from:
3131
kind: ImageStreamTag
3232
name: ruby:latest
3333
namespace: openshift
@@ -48,11 +48,11 @@ items:
4848
images:
4949
- from:
5050
kind: ImageStreamTag
51-
name: jenkins:latest
51+
name: ruby:2.3
5252
namespace: openshift
5353
paths:
5454
- destinationDir: injected/dir
55-
sourcePath: /usr/lib/jenkins/jenkins.war
55+
sourcePath: /opt/rh/rh-ruby23/root/usr/bin/ruby
5656
strategy:
5757
dockerStrategy: {}
5858
- apiVersion: v1
@@ -99,7 +99,6 @@ items:
9999
dnsPolicy: ClusterFirst
100100
restartPolicy: Always
101101
securityContext: {}
102-
terminationGracePeriodSeconds: 30
103102
triggers:
104103
- imageChangeParams:
105104
automatic: true
@@ -144,7 +143,6 @@ items:
144143
dnsPolicy: ClusterFirst
145144
restartPolicy: Always
146145
securityContext: {}
147-
terminationGracePeriodSeconds: 30
148146
triggers:
149147
- imageChangeParams:
150148
automatic: true

0 commit comments

Comments
 (0)