Unit Test
A good project can’t be built without unit tests. To help users build good projects, hertz of course provides unit testing tools.
The principle is similar to that of golang httptest, both of them just execute ServeHTTP
without going through the network and return the response after execution.
Create RequestContext
CreateUtRequestContext
Return an app.RequestContext
for testing purposes.
Function Signature:
Example Code:
Send Request
PerformRequest
The PerformRequest
function sends a constructed request to the specified engine without network transmission.
The url can be a standard relative path or an absolute path.
If you want to set a streaming request body, you can set engine.streamRequestBody to true through server.WithStreamBody(true)
or set the len of the body to -1.
This function returns the ResponseRecorder.
Function Signature:
Example Code:
Receive Response
When executing the PerformRequest function, functions such as NewRecorder
, Header
, Write
, WriteHeader
, Flush
have already been called internally. The user only needs to call the Result
function to obtain the returned protocol.Response
object, and then perform unit testing.
ResponseRecorder
Used to record the response information of the handler, as follows:
The method provided by this object is as follows:
Function Signature | Description |
---|---|
func NewRecorder() *ResponseRecorder | Return the initialized ResponseRecorder object |
func (rw *ResponseRecorder) Header() *protocol.ResponseHeader | Return ResponseRecorder.header |
func (rw *ResponseRecorder) Write(buf []byte) (int, error) | Write data of type []byte to ResponseRecorder.Body |
func (rw *ResponseRecorder) WriteString(str string) (int, error) | Write data of type string to ResponseRecorder.Body |
func (rw *ResponseRecorder) WriteHeader(code int) | Set ResponseRecorder.Code and ResponseRecorder.header.SetStatusCode(code) |
func (rw *ResponseRecorder) Flush() | Implemented http.Flusher , set ResponseRecorder.Flushed to true |
func (rw *ResponseRecorder) Result() *protocol.Response | Return the response information generated by the handler, including at least StatusCode, Header, Body, and optional Trailer. In the future, it will support returning more response information |
Work with biz handler
Assume you have a handler go file and a function called Ping()
:
Now you can do some unit test directly to the Ping()
function:
Every time you change the Ping()
behavior, you don’t need to copy it to test file again and again.
For more examples, refer to the unit test file in pkg/common/ut.