go-zero/rest/handler/recoverhandler_test.go

37 lines
842 B
Go
Raw Normal View History

2020-07-29 18:00:04 +08:00
package handler
2020-07-26 17:09:05 +08:00
import (
"io"
2020-07-26 17:09:05 +08:00
"log"
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
)
func init() {
log.SetOutput(io.Discard)
2020-07-26 17:09:05 +08:00
}
func TestWithPanic(t *testing.T) {
handler := RecoverHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
panic("whatever")
}))
2022-10-17 06:30:58 +08:00
req := httptest.NewRequest(http.MethodGet, "http://localhost", http.NoBody)
2020-07-26 17:09:05 +08:00
resp := httptest.NewRecorder()
handler.ServeHTTP(resp, req)
assert.Equal(t, http.StatusInternalServerError, resp.Code)
}
func TestWithoutPanic(t *testing.T) {
handler := RecoverHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
}))
2022-10-17 06:30:58 +08:00
req := httptest.NewRequest(http.MethodGet, "http://localhost", http.NoBody)
2020-07-26 17:09:05 +08:00
resp := httptest.NewRecorder()
handler.ServeHTTP(resp, req)
assert.Equal(t, http.StatusOK, resp.Code)
}