forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.go
90 lines (78 loc) · 3.96 KB
/
proxy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package builds
import (
"fmt"
"strings"
g "github.com/onsi/ginkgo"
o "github.com/onsi/gomega"
buildapi "github.com/openshift/origin/pkg/build/apis/build"
exutil "github.com/openshift/origin/test/extended/util"
)
var _ = g.Describe("[Feature:Builds][Slow] the s2i build should support proxies", func() {
defer g.GinkgoRecover()
var (
buildFixture = exutil.FixturePath("testdata", "builds", "test-build-proxy.yaml")
oc = exutil.NewCLI("build-proxy", exutil.KubeConfigPath())
)
g.Context("", func() {
g.JustBeforeEach(func() {
g.By("waiting for builder service account")
err := exutil.WaitForBuilderAccount(oc.KubeClient().Core().ServiceAccounts(oc.Namespace()))
o.Expect(err).NotTo(o.HaveOccurred())
oc.Run("create").Args("-f", buildFixture).Execute()
})
g.AfterEach(func() {
if g.CurrentGinkgoTestDescription().Failed {
exutil.DumpPodStates(oc)
exutil.DumpPodLogsStartingWith("", oc)
}
})
g.Describe("start build with broken proxy", func() {
g.It("should start a build and wait for the build to fail", func() {
g.By("starting the build")
br, _ := exutil.StartBuildAndWait(oc, "sample-build", "--build-loglevel=5")
br.AssertFailure()
g.By("verifying the build sample-build-1 output")
// The git ls-remote check should exit the build when the remote
// repository is not accessible. It should never get to the clone.
buildLog, err := br.Logs()
o.Expect(err).NotTo(o.HaveOccurred())
o.Expect(buildLog).NotTo(o.ContainSubstring("clone"))
if !strings.Contains(buildLog, `unable to access 'https://github.com/openshift/ruby-hello-world.git/': Failed connect to 127.0.0.1:3128`) {
fmt.Fprintf(g.GinkgoWriter, "\nbuild log:\n%s\n", buildLog)
}
o.Expect(buildLog).To(o.ContainSubstring(`unable to access 'https://github.com/openshift/ruby-hello-world.git/': Failed connect to 127.0.0.1:3128`))
g.By("verifying the build sample-build-1 status")
o.Expect(br.Build.Status.Phase).Should(o.BeEquivalentTo(buildapi.BuildPhaseFailed))
})
})
g.Describe("start build with broken proxy and a no_proxy override", func() {
g.It("should start an s2i build and wait for the build to succeed", func() {
g.By("starting the build")
br, _ := exutil.StartBuildAndWait(oc, "sample-s2i-build-noproxy", "--build-loglevel=5")
br.AssertSuccess()
buildLog, err := br.Logs()
o.Expect(err).NotTo(o.HaveOccurred())
o.Expect(buildLog).NotTo(o.ContainSubstring("gituser:password"), "build log should not include proxy credentials")
o.Expect(buildLog).NotTo(o.ContainSubstring("envuser:password"), "build log should not include proxy credentials")
o.Expect(buildLog).To(o.ContainSubstring("proxy1"), "build log should include proxy host")
o.Expect(buildLog).To(o.ContainSubstring("proxy2"), "build log should include proxy host")
o.Expect(buildLog).To(o.ContainSubstring("proxy3"), "build log should include proxy host")
o.Expect(buildLog).To(o.ContainSubstring("proxy4"), "build log should include proxy host")
})
g.It("should start a docker build and wait for the build to succeed", func() {
g.By("starting the build")
br, _ := exutil.StartBuildAndWait(oc, "sample-docker-build-noproxy", "--build-loglevel=5")
br.AssertSuccess()
buildLog, err := br.Logs()
o.Expect(err).NotTo(o.HaveOccurred())
// envuser:password will appear in the log because the full/unstripped env HTTP_PROXY variable is injected
// into the dockerfile and displayed by docker build.
o.Expect(buildLog).NotTo(o.ContainSubstring("gituser:password"), "build log should not include proxy credentials")
o.Expect(buildLog).To(o.ContainSubstring("proxy1"), "build log should include proxy host")
o.Expect(buildLog).To(o.ContainSubstring("proxy2"), "build log should include proxy host")
o.Expect(buildLog).To(o.ContainSubstring("proxy3"), "build log should include proxy host")
o.Expect(buildLog).To(o.ContainSubstring("proxy4"), "build log should include proxy host")
})
})
})
})