mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-01 18:13:00 +08:00
Complete test coverage for middleware/recorder.go
This commit is contained in:
parent
53c4797606
commit
4704625e3a
|
@ -3,17 +3,38 @@ package middleware
|
||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"reflect"
|
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestNewResponseRecorder(t *testing.T) {
|
func TestNewResponseRecorder(t *testing.T) {
|
||||||
w := httptest.NewRecorder()
|
w := httptest.NewRecorder()
|
||||||
recordRequest := NewResponseRecorder(w)
|
recordRequest := NewResponseRecorder(w)
|
||||||
if !reflect.DeepEqual(recordRequest.ResponseWriter, w) {
|
if !(recordRequest.ResponseWriter == w) {
|
||||||
t.Fatalf("Expected Response writer in the Recording to be same as the one sent")
|
t.Fatalf("Expected Response writer in the Recording to be same as the one sent\n")
|
||||||
}
|
}
|
||||||
if recordRequest.status != http.StatusOK {
|
if recordRequest.status != http.StatusOK {
|
||||||
t.Fatalf("Expected recorded status to be http.StatusOK")
|
t.Fatalf("Expected recorded status to be http.StatusOK (%d) , but found %d\n ", recordRequest.status)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func TestWriteHeader(t *testing.T) {
|
||||||
|
w := httptest.NewRecorder()
|
||||||
|
recordRequest := NewResponseRecorder(w)
|
||||||
|
recordRequest.WriteHeader(401)
|
||||||
|
if w.Code != 401 || recordRequest.status != 401 {
|
||||||
|
t.Fatalf("Expected Response status to be set to 401, but found %d\n", recordRequest.status)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWrite(t *testing.T) {
|
||||||
|
w := httptest.NewRecorder()
|
||||||
|
responseTestString := "test"
|
||||||
|
recordRequest := NewResponseRecorder(w)
|
||||||
|
buf := []byte(responseTestString)
|
||||||
|
recordRequest.Write(buf)
|
||||||
|
if recordRequest.size != len(buf) {
|
||||||
|
t.Fatalf("Expected the bytes written counter to be %d, but instead found %d\n", len(buf), recordRequest.size)
|
||||||
|
}
|
||||||
|
if w.Body.String() != responseTestString {
|
||||||
|
t.Fatalf("Expected Response Body to be %s , but found %s\n", w.Body.String())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user