Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func LoadBytes ¶
LoadBytes is helper to load file contents relative to current (where test file is) package directory.
func TrimNewlineEnd ¶
TrimNewlineEnd instructs LoadBytes to remove `\n` from the end of loaded file.
Types ¶
type ContextConfig ¶
type ContextConfig struct {
// Request will be used instead of default `httptest.NewRequest(http.MethodGet, "/", nil)`
Request *http.Request
// Response will be used instead of default `httptest.NewRecorder()`
Response *httptest.ResponseRecorder
// QueryValues wil be set as Request.URL.RawQuery value
QueryValues url.Values
// Headers wil be set as Request.Header value
Headers http.Header
// PathValues initializes context.PathValues with given value.
PathValues echo.PathValues
// RouteInfo initializes context.RouteInfo() with given value
RouteInfo *echo.RouteInfo
// FormValues creates form-urlencoded form out of given values. If there is no
// `content-type` header it will be set to `application/x-www-form-urlencoded`
// In case Request was not set the Request.Method is set to `POST`
//
// FormValues, MultipartForm and JSONBody are mutually exclusive.
FormValues url.Values
// MultipartForm creates multipart form out of given value. If there is no
// `content-type` header it will be set to `multipart/form-data`
// In case Request was not set the Request.Method is set to `POST`
//
// FormValues, MultipartForm and JSONBody are mutually exclusive.
MultipartForm *MultipartForm
// JSONBody creates JSON body out of given bytes. If there is no
// `content-type` header it will be set to `application/json`
// In case Request was not set the Request.Method is set to `POST`
//
// FormValues, MultipartForm and JSONBody are mutually exclusive.
JSONBody []byte
}
ContextConfig is configuration for creating echo.Context for testing purposes.
func (ContextConfig) ServeWithHandler ¶
func (conf ContextConfig) ServeWithHandler(t *testing.T, handler echo.HandlerFunc, opts ...any) *httptest.ResponseRecorder
ServeWithHandler serves ContextConfig with given handler and returns httptest.ResponseRecorder for response checking
func (ContextConfig) ToContext ¶
func (conf ContextConfig) ToContext(t *testing.T) *echo.Context
ToContext converts ContextConfig to echo.Context
func (ContextConfig) ToContextRecorder ¶
func (conf ContextConfig) ToContextRecorder(t *testing.T) (*echo.Context, *httptest.ResponseRecorder)
ToContextRecorder converts ContextConfig to echo.Context and httptest.ResponseRecorder
type MultipartForm ¶
type MultipartForm struct {
Fields map[string]string
Files []MultipartFormFile
}
MultipartForm is used to create multipart form out of given value
type MultipartFormFile ¶
MultipartFormFile is used to create file in multipart form out of given value