2015-03-31 06:06:21 +02:00
|
|
|
package echo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestResponse(t *testing.T) {
|
2015-05-08 20:21:50 +02:00
|
|
|
r := &Response{Writer: httptest.NewRecorder()}
|
2015-03-31 06:06:21 +02:00
|
|
|
|
2015-04-19 01:47:48 +02:00
|
|
|
// Header
|
|
|
|
if r.Header() == nil {
|
|
|
|
t.Error("header should not be nil")
|
|
|
|
}
|
2015-03-31 06:06:21 +02:00
|
|
|
|
2015-04-19 01:47:48 +02:00
|
|
|
// WriteHeader
|
|
|
|
r.WriteHeader(http.StatusOK)
|
|
|
|
if r.status != http.StatusOK {
|
|
|
|
t.Errorf("status should be %d", http.StatusOK)
|
|
|
|
}
|
|
|
|
if r.committed != true {
|
|
|
|
t.Error("response should be true")
|
|
|
|
}
|
|
|
|
// Response already committed
|
|
|
|
r.WriteHeader(http.StatusOK)
|
|
|
|
|
|
|
|
// Status
|
|
|
|
r.status = http.StatusOK
|
|
|
|
if r.Status() != http.StatusOK {
|
|
|
|
t.Errorf("status should be %d", http.StatusOK)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write & Size
|
|
|
|
s := "echo"
|
|
|
|
r.Write([]byte(s))
|
|
|
|
if r.Size() != len(s) {
|
|
|
|
t.Errorf("size should be %d", len(s))
|
|
|
|
}
|
2015-03-31 06:06:21 +02:00
|
|
|
}
|