|
|
|
|
@ -166,40 +166,3 @@ func TestGrpcGatewayRouting_CustomActions(t *testing.T) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestHandleGrpcGateway(t *testing.T) {
|
|
|
|
|
c := NewTestController(t, &TestControllerOpts{
|
|
|
|
|
DisableAuthorizationFailures: true,
|
|
|
|
|
})
|
|
|
|
|
defer c.Shutdown()
|
|
|
|
|
|
|
|
|
|
cases := []struct {
|
|
|
|
|
name string
|
|
|
|
|
path string
|
|
|
|
|
code int
|
|
|
|
|
}{
|
|
|
|
|
{
|
|
|
|
|
"Non existent path",
|
|
|
|
|
"v1/this-is-made-ups",
|
|
|
|
|
http.StatusNotFound,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"Unimplemented path",
|
|
|
|
|
"v1/scopes/1/host-catalogs/3/host-sets/hs_4",
|
|
|
|
|
http.StatusMethodNotAllowed,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
|
url := fmt.Sprintf("%s/%s", c.ApiAddrs()[0], tc.path)
|
|
|
|
|
resp, err := http.Get(url)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Errorf("Got error: %v when non was expected.", err)
|
|
|
|
|
}
|
|
|
|
|
if got, want := resp.StatusCode, tc.code; got != want {
|
|
|
|
|
t.Errorf("GET on %q got code %d, wanted %d", tc.path, got, want)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|