mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-06 00:49:48 +00:00
33 lines
825 B
Go
33 lines
825 B
Go
package recorder
|
|
|
|
import (
|
|
"bufio"
|
|
"net"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
)
|
|
|
|
type ResponseRecorder struct {
|
|
*httptest.ResponseRecorder
|
|
}
|
|
|
|
func New() *ResponseRecorder {
|
|
return &ResponseRecorder{httptest.NewRecorder()}
|
|
}
|
|
|
|
func (rr *ResponseRecorder) reset() {
|
|
rr.ResponseRecorder = httptest.NewRecorder()
|
|
}
|
|
|
|
func (rr *ResponseRecorder) CloseNotify() <-chan bool {
|
|
return http.ResponseWriter(rr).(http.CloseNotifier).CloseNotify()
|
|
}
|
|
|
|
func (rr *ResponseRecorder) Hijack() (net.Conn, *bufio.ReadWriter, error) {
|
|
return http.ResponseWriter(rr).(http.Hijacker).Hijack()
|
|
}
|
|
|
|
func (rr *ResponseRecorder) Size() int { return rr.Body.Len() }
|
|
func (rr *ResponseRecorder) Status() int { return rr.Code }
|
|
func (rr *ResponseRecorder) WriteHeaderNow() {}
|
|
func (rr *ResponseRecorder) Written() bool { return rr.Code != 0 }
|