mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
66 lines
1005 B
Go
66 lines
1005 B
Go
package echo
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestResponse(t *testing.T) {
|
|
w := httptest.NewRecorder()
|
|
r := NewResponse(w)
|
|
|
|
// SetWriter
|
|
r.SetWriter(w)
|
|
|
|
// Writer
|
|
assert.Equal(t, w, r.Writer())
|
|
|
|
// Header
|
|
assert.NotNil(t, r.Header())
|
|
|
|
// WriteHeader
|
|
r.WriteHeader(http.StatusOK)
|
|
assert.Equal(t, http.StatusOK, r.status)
|
|
|
|
// Committed
|
|
assert.True(t, r.committed)
|
|
|
|
// Already committed
|
|
r.WriteHeader(http.StatusTeapot)
|
|
assert.NotEqual(t, http.StatusTeapot, r.Status())
|
|
|
|
// Status
|
|
r.status = http.StatusOK
|
|
assert.Equal(t, http.StatusOK, r.Status())
|
|
|
|
// Write
|
|
s := "echo"
|
|
_, err := r.Write([]byte(s))
|
|
assert.NoError(t, err)
|
|
|
|
// Flush
|
|
r.Flush()
|
|
|
|
// Size
|
|
assert.EqualValues(t, len(s), r.Size())
|
|
|
|
// Committed
|
|
assert.Equal(t, true, r.Committed())
|
|
|
|
// Hijack
|
|
assert.Panics(t, func() {
|
|
r.Hijack()
|
|
})
|
|
|
|
// CloseNotify
|
|
assert.Panics(t, func() {
|
|
r.CloseNotify()
|
|
})
|
|
|
|
// reset
|
|
r.reset(httptest.NewRecorder())
|
|
}
|