mirror of
https://github.com/restic/rest-server.git
synced 2025-12-07 09:36:13 -08:00
Add support for logging HTTP requests in the combined log format
This commit is contained in:
34
vendor/github.com/gorilla/handlers/handlers_go18_test.go
generated
vendored
Normal file
34
vendor/github.com/gorilla/handlers/handlers_go18_test.go
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// +build go1.8
|
||||
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestLoggingHandlerWithPush(t *testing.T) {
|
||||
handler := http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
|
||||
if _, ok := w.(http.Pusher); !ok {
|
||||
t.Fatalf("%T from LoggingHandler does not satisfy http.Pusher interface when built with Go >=1.8", w)
|
||||
}
|
||||
w.WriteHeader(200)
|
||||
})
|
||||
|
||||
logger := LoggingHandler(ioutil.Discard, handler)
|
||||
logger.ServeHTTP(httptest.NewRecorder(), newRequest("GET", "/"))
|
||||
}
|
||||
|
||||
func TestCombinedLoggingHandlerWithPush(t *testing.T) {
|
||||
handler := http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
|
||||
if _, ok := w.(http.Pusher); !ok {
|
||||
t.Fatalf("%T from CombinedLoggingHandler does not satisfy http.Pusher interface when built with Go >=1.8", w)
|
||||
}
|
||||
w.WriteHeader(200)
|
||||
})
|
||||
|
||||
logger := CombinedLoggingHandler(ioutil.Discard, handler)
|
||||
logger.ServeHTTP(httptest.NewRecorder(), newRequest("GET", "/"))
|
||||
}
|
||||
Reference in New Issue
Block a user