mirror of
https://github.com/openfaas/faas.git
synced 2025-06-20 21:36:33 +00:00
Cleanup logging, give not allowed to GET on gateway functions
This commit is contained in:
@ -44,19 +44,19 @@ func fireRequestWithHeaders(url string, method string, reqBody string, headers m
|
||||
return string(body), res.StatusCode, readErr
|
||||
}
|
||||
|
||||
// TODO: Review this - should give StatusMethodNotAllowed, gives 200 OK
|
||||
func TestGet_Rejected(t *testing.T) {
|
||||
// var reqBody string
|
||||
// _, code, err := fireRequest("http://localhost:8080/function/func_echoit", http.MethodGet, reqBody)
|
||||
var reqBody string
|
||||
_, code, err := fireRequest("http://localhost:8080/function/func_echoit", http.MethodGet, reqBody)
|
||||
want := http.StatusMethodNotAllowed
|
||||
if code != want {
|
||||
t.Logf("Failed got: %d, wanted: %d", code, want)
|
||||
t.Fail()
|
||||
}
|
||||
|
||||
// if code != http.StatusMethodNotAllowed {
|
||||
// t.Logf("Failed got: %d", code)
|
||||
// }
|
||||
|
||||
// if err != nil {
|
||||
// t.Log(err)
|
||||
// t.Fail()
|
||||
// }
|
||||
if err != nil {
|
||||
t.Log(err)
|
||||
t.Fail()
|
||||
}
|
||||
}
|
||||
|
||||
func TestEchoIt_Post_Route_Handler_ForwardsClientHeaders(t *testing.T) {
|
||||
|
Reference in New Issue
Block a user