@@ -80,39 +80,12 @@ func tryAccessURL(t *testing.T, url string, expectedStatus int, expectedRedirect
80
80
return resp
81
81
}
82
82
83
- func TestAccessOriginWebConsole (t * testing.T ) {
84
- masterOptions , err := testserver .DefaultMasterOptions ()
85
- if err != nil {
86
- t .Fatalf ("unexpected error: %v" , err )
87
- }
88
- if _ , err := testserver .StartConfiguredMaster (masterOptions ); err != nil {
89
- t .Fatalf ("unexpected error: %v" , err )
90
- }
91
- defer testserver .CleanupMasterEtcd (t , masterOptions )
92
-
93
- for endpoint , exp := range map [string ]struct {
94
- statusCode int
95
- location string
96
- }{
97
- "" : {http .StatusFound , masterOptions .AssetConfig .PublicURL },
98
- "healthz" : {http .StatusOK , "" },
99
- "login?then=%2F" : {http .StatusOK , "" },
100
- "oauth/token/request" : {http .StatusFound , masterOptions .AssetConfig .MasterPublicURL + "/oauth/authorize" },
101
- "console" : {http .StatusMovedPermanently , "/console/" },
102
- "console/" : {http .StatusOK , "" },
103
- "console/java" : {http .StatusOK , "" },
104
- } {
105
- url := masterOptions .AssetConfig .MasterPublicURL + "/" + endpoint
106
- tryAccessURL (t , url , exp .statusCode , exp .location , nil )
107
- }
108
- }
109
-
110
83
func TestAccessDisabledWebConsole (t * testing.T ) {
111
84
masterOptions , err := testserver .DefaultMasterOptions ()
112
85
if err != nil {
113
86
t .Fatalf ("unexpected error: %v" , err )
114
87
}
115
- masterOptions .DisabledFeatures .Add (configapi .FeatureWebConsole )
88
+ masterOptions .DisabledFeatures .Add (configapi .FeatureWebConsole ) // this isn't controlling anything but the root redirect now
116
89
if _ , err := testserver .StartConfiguredMaster (masterOptions ); err != nil {
117
90
t .Fatalf ("unexpected error: %v" , err )
118
91
}
@@ -136,9 +109,9 @@ func TestAccessDisabledWebConsole(t *testing.T) {
136
109
"healthz" : {http .StatusOK , "" },
137
110
"login?then=%2F" : {http .StatusOK , "" },
138
111
"oauth/token/request" : {http .StatusFound , masterOptions .AssetConfig .MasterPublicURL + "/oauth/authorize" },
139
- "console" : {http .StatusForbidden , "" },
140
- "console/" : {http .StatusForbidden , "" },
141
- "console/java" : {http .StatusForbidden , "" },
112
+ "console" : {http .StatusNotFound , "" }, // without the service, you get a 404
113
+ "console/" : {http .StatusNotFound , "" }, // without the service, you get a 404
114
+ "console/java" : {http .StatusNotFound , "" }, // without the service, you get a 404
142
115
} {
143
116
url := masterOptions .AssetConfig .MasterPublicURL + "/" + endpoint
144
117
tryAccessURL (t , url , exp .statusCode , exp .location , nil )
@@ -237,39 +210,3 @@ func TestAccessOriginWebConsoleMultipleIdentityProviders(t *testing.T) {
237
210
tryAccessURL (t , url , exp .statusCode , exp .location , nil )
238
211
}
239
212
}
240
-
241
- func TestAccessStandaloneOriginWebConsole (t * testing.T ) {
242
- masterOptions , err := testserver .DefaultMasterOptions ()
243
- if err != nil {
244
- t .Fatalf ("unexpected error: %v" , err )
245
- }
246
-
247
- addr , err := testserver .FindAvailableBindAddress (13000 , 13999 )
248
- if err != nil {
249
- t .Fatalf ("unexpected error: %v" , err )
250
- }
251
-
252
- masterOptions .AssetConfig .ServingInfo .BindAddress = addr
253
- assetBaseURL := "https://" + addr
254
- masterOptions .AssetConfig .PublicURL = assetBaseURL + "/console/"
255
- masterOptions .OAuthConfig .AssetPublicURL = assetBaseURL + "/console/"
256
-
257
- if _ , err := testserver .StartConfiguredMaster (masterOptions ); err != nil {
258
- t .Fatalf ("unexpected error: %v" , err )
259
- }
260
- defer testserver .CleanupMasterEtcd (t , masterOptions )
261
-
262
- for endpoint , exp := range map [string ]struct {
263
- statusCode int
264
- location string
265
- }{
266
- "" : {http .StatusFound , "/console/" },
267
- "blarg" : {http .StatusNotFound , "" },
268
- "console" : {http .StatusMovedPermanently , "/console/" },
269
- "console/" : {http .StatusOK , "" },
270
- "console/java" : {http .StatusOK , "" },
271
- } {
272
- url := assetBaseURL + "/" + endpoint
273
- tryAccessURL (t , url , exp .statusCode , exp .location , nil )
274
- }
275
- }
0 commit comments