mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
Merge pull request #218 from Karthic-Hackintosh/master
Complete test coverage for recorder.go of middleware package
This commit is contained in:
commit
b62d087bb6
1 changed files with 40 additions and 0 deletions
40
middleware/recorder_test.go
Normal file
40
middleware/recorder_test.go
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
package middleware
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestNewResponseRecorder(t *testing.T) {
|
||||||
|
w := httptest.NewRecorder()
|
||||||
|
recordRequest := NewResponseRecorder(w)
|
||||||
|
if !(recordRequest.ResponseWriter == w) {
|
||||||
|
t.Fatalf("Expected Response writer in the Recording to be same as the one sent\n")
|
||||||
|
}
|
||||||
|
if recordRequest.status != 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 a new issue