1
1
package builds
2
2
3
3
import (
4
- "fmt"
5
-
6
4
g "github.com/onsi/ginkgo"
7
5
o "github.com/onsi/gomega"
8
6
@@ -14,12 +12,11 @@ var _ = g.Describe("[builds][Slow] build can have Dockerfile input", func() {
14
12
var (
15
13
oc = exutil .NewCLI ("build-dockerfile-env" , exutil .KubeConfigPath ())
16
14
testDockerfile = `
17
- FROM openshift/jenkins-1-centos7
15
+ FROM library/busybox
18
16
USER 1001
19
17
`
20
18
testDockerfile2 = `
21
19
FROM centos:7
22
- RUN yum install -y httpd
23
20
USER 1001
24
21
`
25
22
)
@@ -33,34 +30,34 @@ USER 1001
33
30
34
31
g .Describe ("being created from new-build" , func () {
35
32
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 ()
38
35
o .Expect (err ).NotTo (o .HaveOccurred ())
39
36
40
37
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 " )
42
39
o .Expect (err ).NotTo (o .HaveOccurred ())
43
40
o .Expect (bc .Spec .Source .Git ).To (o .BeNil ())
44
41
o .Expect (bc .Spec .Source .Dockerfile ).NotTo (o .BeNil ())
45
42
o .Expect (* bc .Spec .Source .Dockerfile ).To (o .Equal (testDockerfile ))
46
43
47
- buildName := "jenkins -1"
44
+ buildName := "busybox -1"
48
45
g .By ("expecting the Dockerfile build is in Complete phase" )
49
46
err = exutil .WaitForABuild (oc .Client ().Builds (oc .Namespace ()), buildName , nil , nil , nil )
50
- //debug for failures on jenkins
47
+ //debug for failures
51
48
if err != nil {
52
- exutil .DumpBuildLogs ("jenkins " , oc )
49
+ exutil .DumpBuildLogs ("busybox " , oc )
53
50
}
54
51
o .Expect (err ).NotTo (o .HaveOccurred ())
55
52
56
53
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" )
58
55
o .Expect (err ).NotTo (o .HaveOccurred ())
59
56
o .Expect (image .Image .DockerImageMetadata .Config .User ).To (o .Equal ("1001" ))
60
57
})
61
58
62
59
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" )
64
61
err := oc .Run ("new-build" ).Args ("-D" , "-" ).InputString (testDockerfile2 ).Execute ()
65
62
o .Expect (err ).NotTo (o .HaveOccurred ())
66
63
@@ -76,7 +73,7 @@ USER 1001
76
73
buildName := "centos-1"
77
74
g .By ("expecting the Dockerfile build is in Complete phase" )
78
75
err = exutil .WaitForABuild (oc .Client ().Builds (oc .Namespace ()), buildName , nil , nil , nil )
79
- //debug for failures on jenkins
76
+ //debug for failures
80
77
if err != nil {
81
78
exutil .DumpBuildLogs ("centos" , oc )
82
79
}
0 commit comments