Skip to content

Commit bd3e362

Browse files
author
OpenShift Bot
authored
Merge pull request #12860 from ramr/testfixes
Merged by openshift-bot
2 parents fbdb78e + d9343df commit bd3e362

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

test/integration/router_test.go

+13-13
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func TestRouter(t *testing.T) {
114114
name: "non-secure",
115115
serviceName: "example",
116116
endpoints: []kapi.EndpointSubset{httpEndpoint},
117-
routeAlias: "www.example-unsecure.com",
117+
routeAlias: "unsecure.example.com",
118118
endpointEventType: watch.Added,
119119
routeEventType: watch.Added,
120120
protocol: "http",
@@ -126,7 +126,7 @@ func TestRouter(t *testing.T) {
126126
name: "non-secure-path",
127127
serviceName: "example-path",
128128
endpoints: []kapi.EndpointSubset{httpEndpoint},
129-
routeAlias: "www.example-unsecure.com",
129+
routeAlias: "unsecure.example.com",
130130
routePath: "/test",
131131
endpointEventType: watch.Added,
132132
routeEventType: watch.Added,
@@ -139,7 +139,7 @@ func TestRouter(t *testing.T) {
139139
name: "preferred-port",
140140
serviceName: "example-preferred-port",
141141
endpoints: []kapi.EndpointSubset{alternateHttpEndpoint, httpEndpoint},
142-
routeAlias: "www.example-unsecure.com",
142+
routeAlias: "pref.port.unsecure.example.com",
143143
endpointEventType: watch.Added,
144144
routeEventType: watch.Added,
145145
protocol: "http",
@@ -152,7 +152,7 @@ func TestRouter(t *testing.T) {
152152
name: "edge termination",
153153
serviceName: "example-edge",
154154
endpoints: []kapi.EndpointSubset{httpEndpoint},
155-
routeAlias: "www.example.com",
155+
routeAlias: "edge.example.com",
156156
endpointEventType: watch.Added,
157157
routeEventType: watch.Added,
158158
protocol: "https",
@@ -169,7 +169,7 @@ func TestRouter(t *testing.T) {
169169
name: "edge termination path",
170170
serviceName: "example-edge-path",
171171
endpoints: []kapi.EndpointSubset{httpEndpoint},
172-
routeAlias: "www.example.com",
172+
routeAlias: "edge.example.com",
173173
routePath: "/test",
174174
endpointEventType: watch.Added,
175175
routeEventType: watch.Added,
@@ -187,7 +187,7 @@ func TestRouter(t *testing.T) {
187187
name: "reencrypt",
188188
serviceName: "example-reencrypt",
189189
endpoints: []kapi.EndpointSubset{httpsEndpoint},
190-
routeAlias: "www.example.com",
190+
routeAlias: "reencrypt.example.com",
191191
endpointEventType: watch.Added,
192192
routeEventType: watch.Added,
193193
protocol: "https",
@@ -205,7 +205,7 @@ func TestRouter(t *testing.T) {
205205
name: "reencrypt-InsecureEdgePolicy",
206206
serviceName: "example-reencrypt",
207207
endpoints: []kapi.EndpointSubset{httpsEndpoint},
208-
routeAlias: "www.example.com",
208+
routeAlias: "allow.reencrypt.example.com",
209209
endpointEventType: watch.Added,
210210
routeEventType: watch.Added,
211211
protocol: "http",
@@ -224,7 +224,7 @@ func TestRouter(t *testing.T) {
224224
name: "reencrypt-destcacert",
225225
serviceName: "example-reencrypt-destcacert",
226226
endpoints: []kapi.EndpointSubset{httpsEndpoint},
227-
routeAlias: "www.example.com",
227+
routeAlias: "destcert.reencrypt.example.com",
228228
endpointEventType: watch.Added,
229229
routeEventType: watch.Added,
230230
protocol: "https",
@@ -239,7 +239,7 @@ func TestRouter(t *testing.T) {
239239
name: "reencrypt path",
240240
serviceName: "example-reencrypt-path",
241241
endpoints: []kapi.EndpointSubset{httpsEndpoint},
242-
routeAlias: "www.example.com",
242+
routeAlias: "reencrypt.example.com",
243243
routePath: "/test",
244244
endpointEventType: watch.Added,
245245
routeEventType: watch.Added,
@@ -258,7 +258,7 @@ func TestRouter(t *testing.T) {
258258
name: "passthrough termination",
259259
serviceName: "example-passthrough",
260260
endpoints: []kapi.EndpointSubset{httpsEndpoint},
261-
routeAlias: "www.example-passthrough.com",
261+
routeAlias: "passthrough.example.com",
262262
endpointEventType: watch.Added,
263263
routeEventType: watch.Added,
264264
protocol: "https",
@@ -272,7 +272,7 @@ func TestRouter(t *testing.T) {
272272
name: "websocket unsecure",
273273
serviceName: "websocket-unsecure",
274274
endpoints: []kapi.EndpointSubset{httpEndpoint},
275-
routeAlias: "www.example.com",
275+
routeAlias: "ws.unsecure.example.com",
276276
endpointEventType: watch.Added,
277277
routeEventType: watch.Added,
278278
protocol: "ws",
@@ -283,7 +283,7 @@ func TestRouter(t *testing.T) {
283283
name: "ws edge termination",
284284
serviceName: "websocket-edge",
285285
endpoints: []kapi.EndpointSubset{httpEndpoint},
286-
routeAlias: "www.example.com",
286+
routeAlias: "ws.edge.example.com",
287287
endpointEventType: watch.Added,
288288
routeEventType: watch.Added,
289289
protocol: "wss",
@@ -300,7 +300,7 @@ func TestRouter(t *testing.T) {
300300
name: "ws passthrough termination",
301301
serviceName: "websocket-passthrough",
302302
endpoints: []kapi.EndpointSubset{httpsEndpoint},
303-
routeAlias: "www.example.com",
303+
routeAlias: "ws.passthrough.example.com",
304304
endpointEventType: watch.Added,
305305
routeEventType: watch.Added,
306306
protocol: "wss",

0 commit comments

Comments
 (0)