@@ -11,16 +11,18 @@ import (
11
11
g "github.com/onsi/ginkgo"
12
12
o "github.com/onsi/gomega"
13
13
14
+ routeapi "github.com/openshift/origin/pkg/route/apis/route"
14
15
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
15
16
"k8s.io/apimachinery/pkg/util/wait"
17
+ kapi "k8s.io/kubernetes/pkg/apis/core"
16
18
e2e "k8s.io/kubernetes/test/e2e/framework"
17
19
18
20
exutil "github.com/openshift/origin/test/extended/util"
19
21
)
20
22
21
23
const changeTimeoutSeconds = 3 * 60
22
24
23
- var _ = g .Describe ("[Conformance][Area:Networking][Feature:Router] openshift routers " , func () {
25
+ var _ = g .Describe ("[Conformance][Area:Networking][Feature:Router]" , func () {
24
26
defer g .GinkgoRecover ()
25
27
var (
26
28
configPath = exutil .FixturePath ("testdata" , "scoped-router.yaml" )
@@ -32,19 +34,16 @@ var _ = g.Describe("[Conformance][Area:Networking][Feature:Router] openshift rou
32
34
if len (imagePrefix ) == 0 {
33
35
imagePrefix = "openshift/origin"
34
36
}
35
- err := oc .AsAdmin ().Run ("adm" ).Args ("policy" , "add-cluster-role-to-user" , "system:router" , oc .Username ()).Execute ()
36
- o .Expect (err ).NotTo (o .HaveOccurred ())
37
- err = oc .Run ("new-app" ).Args ("-f" , configPath , "-p" , "IMAGE=" + imagePrefix + "-haproxy-router" ).Execute ()
37
+ err := oc .AsAdmin ().Run ("new-app" ).Args ("-f" , configPath , "-p" , "IMAGE=" + imagePrefix + "-haproxy-router" ).Execute ()
38
38
o .Expect (err ).NotTo (o .HaveOccurred ())
39
39
})
40
40
41
41
g .Describe ("The HAProxy router" , func () {
42
42
g .It ("should serve the correct routes when scoped to a single namespace and label set" , func () {
43
43
defer func () {
44
- // This should be done if the test fails but
45
- // for now always dump the logs.
46
- // if g.CurrentGinkgoTestDescription().Failed
47
- dumpScopedRouterLogs (oc , g .CurrentGinkgoTestDescription ().FullTestText )
44
+ if g .CurrentGinkgoTestDescription ().Failed {
45
+ dumpScopedRouterLogs (oc , g .CurrentGinkgoTestDescription ().FullTestText )
46
+ }
48
47
}()
49
48
oc .SetOutputDir (exutil .TestContext .OutputDir )
50
49
ns := oc .KubeFramework ().Namespace .Name
@@ -91,10 +90,9 @@ var _ = g.Describe("[Conformance][Area:Networking][Feature:Router] openshift rou
91
90
92
91
g .It ("should override the route host with a custom value" , func () {
93
92
defer func () {
94
- // This should be done if the test fails but
95
- // for now always dump the logs.
96
- // if g.CurrentGinkgoTestDescription().Failed
97
- dumpScopedRouterLogs (oc , g .CurrentGinkgoTestDescription ().FullTestText )
93
+ if g .CurrentGinkgoTestDescription ().Failed {
94
+ dumpScopedRouterLogs (oc , g .CurrentGinkgoTestDescription ().FullTestText )
95
+ }
98
96
}()
99
97
oc .SetOutputDir (exutil .TestContext .OutputDir )
100
98
ns := oc .KubeFramework ().Namespace .Name
@@ -142,6 +140,16 @@ var _ = g.Describe("[Conformance][Area:Networking][Feature:Router] openshift rou
142
140
err = expectRouteStatusCodeExec (ns , execPodName , routerURL + "/Letter" , host , http .StatusOK )
143
141
o .Expect (err ).NotTo (o .HaveOccurred ())
144
142
}
143
+
144
+ g .By ("checking that the router reported the correct ingress and override" )
145
+ r , err := oc .RouteClient ().Route ().Routes (ns ).Get ("route-1" , metav1.GetOptions {})
146
+ o .Expect (err ).NotTo (o .HaveOccurred ())
147
+ ingress := ingressForName (r , "test-override" )
148
+ o .Expect (ingress ).NotTo (o .BeNil ())
149
+ o .Expect (ingress .Host ).To (o .Equal (fmt .Sprintf (pattern , "route-1" , ns )))
150
+ status , condition := routeapi .IngressConditionStatus (ingress , routeapi .RouteAdmitted )
151
+ o .Expect (status ).To (o .Equal (kapi .ConditionTrue ))
152
+ o .Expect (condition .LastTransitionTime ).NotTo (o .BeNil ())
145
153
})
146
154
})
147
155
})
@@ -223,3 +231,12 @@ func dumpScopedRouterLogs(oc *exutil.CLI, name string) {
223
231
log , _ := e2e .GetPodLogs (oc .AdminKubeClient (), oc .KubeFramework ().Namespace .Name , "scoped-router" , "router" )
224
232
e2e .Logf ("Scoped Router test %s logs:\n %s" , name , log )
225
233
}
234
+
235
+ func ingressForName (r * routeapi.Route , name string ) * routeapi.RouteIngress {
236
+ for i , ingress := range r .Status .Ingress {
237
+ if ingress .RouterName == name {
238
+ return & r .Status .Ingress [i ]
239
+ }
240
+ }
241
+ return nil
242
+ }
0 commit comments