Httpexpect
End-to-end HTTP and REST API testing for Go.
Install / Use
/learn @gavv/HttpexpectREADME

httpexpect

Concise, declarative, and easy to use end-to-end HTTP and REST API testing for Go (golang).
Basically, httpexpect is a set of chainable builders for HTTP requests and assertions for HTTP responses and payload, on top of net/http and several utility packages.
Workflow:
- Incrementally build HTTP requests.
- Inspect HTTP responses.
- Inspect response payload recursively.
Features
Request builder
- URL path construction, with simple string interpolation provided by
go-interpolpackage. - URL query parameters (encoding using
go-querystringpackage). - Headers, cookies, payload: JSON, urlencoded or multipart forms (encoding using
formpackage), plain text. - Custom reusable request builders and request transformers.
Response assertions
- Response status, predefined status ranges.
- Headers, cookies, payload: JSON, JSONP, forms, text.
- Round-trip time.
- Custom reusable response matchers.
Payload assertions
- Type-specific assertions, supported types: object, array, string, number, boolean, null, datetime, duration, cookie.
- Regular expressions.
- Simple JSON queries (using subset of JSONPath), provided by
jsonpathpackage. - JSON Schema validation, provided by
gojsonschemapackage.
WebSocket support (thanks to @tyranron)
- Upgrade an HTTP connection to a WebSocket connection (we use
gorilla/websocketinternally). - Interact with the WebSocket server.
- Inspect WebSocket connection parameters and WebSocket messages.
Pretty printing
- Verbose error messages.
- JSON diff is produced on failure using
gojsondiffpackage. - Failures are reported using
testify(assertorrequirepackage) or standardtestingpackage. - JSON values are pretty-printed using
encoding/json, Go values are pretty-printed usinglitter. - Dumping requests and responses in various formats, using
httputil,http2curl, or simple compact logger. - Printing stacktrace on failure in verbose or compact format.
- Color support using
fatih/color.
Tuning
- Tests can communicate with server via real HTTP client or invoke
net/httporfasthttphandler directly. - User can provide custom HTTP client, WebSocket dialer, HTTP request factory (e.g. from the Google App Engine testing).
- User can configure redirect and retry policies and timeouts.
- User can configure formatting options (what parts to display, how to format numbers, etc.) or provide custom templates based on
text/templateengine. - Custom handlers may be provided for logging, printing requests and responses, handling succeeded and failed assertions.
Versioning
The versions are selected according to the semantic versioning scheme. Every new major version gets its own stable branch with a backwards compatibility promise. Releases are tagged from stable branches.
Changelog file can be found here: changelog.
The current stable branch is v2:
import "github.com/gavv/httpexpect/v2"
Documentation
Documentation is available on pkg.go.dev. It contains an overview and reference.
Community
Community forum and Q&A board is right on GitHub in discussions tab.
For more interactive discussion, you can join discord chat.
Contributing
Feel free to report bugs, suggest improvements, and send pull requests! Please add documentation and tests for new features.
This project highly depends on contributors. Thank you all for your amazing work!
If you would like to submit code, see HACKING.md.
Donating
If you would like to support my open-source work, you can do it here:
Thanks!
Examples
See _examples directory for complete standalone examples.
-
Testing a simple CRUD server made with bare
net/http. -
Testing a server made with
irisframework. Example includes JSON queries and validation, URL and form parameters, basic auth, sessions, and streaming. Tests invoke thehttp.Handlerdirectly. -
Testing a server with JWT authentication made with
echoframework. Tests use either HTTP client or invoke thehttp.Handlerdirectly. -
Testing a server utilizing the
ginweb framework. Tests invoke thehttp.Handlerdirectly. -
Testing a server made with
fasthttppackage. Tests invoke thefasthttp.RequestHandlerdirectly. -
Testing a WebSocket server based on
gorilla/websocket. Tests invoke thehttp.Handlerorfasthttp.RequestHandlerdirectly. -
Testing a TLS server made with
net/httpandcrypto/tls -
Testing a OAuth2 server with
oauth2. -
Testing a server running under the Google App Engine.
-
Testing with custom formatter for assertion messages.
Quick start
Hello, world!
package example
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/gavv/httpexpect/v2"
)
func TestFruits(t *testing.T) {
// create http.Handler
handler := FruitsHandler()
// run server using httptest
server := httptest.NewServer(handler)
defer server.Close()
// create httpexpect instance
e := httpexpect.Default(t, server.URL)
// is it working?
e.GET("/fruits").
Expect().
Status(http.StatusOK).JSON().Array().IsEmpty()
}
JSON
orange := map[string]interface{}{
"weight": 100,
}
e.PUT("/fruits/orange").WithJSON(orange).
Expect().
Status(http.StatusNoContent).NoContent()
e.GET("/fruits/orange").
Expect().
Status(http.StatusOK).
JSON().Object().ContainsKey("weight").HasValue("weight", 100)
apple := map[string]interface{}{
"colors": []interface{}{"green", "red"},
"weight": 200,
}
e.PUT("/fruits/apple").WithJSON(apple).
Expect().
Status(http.StatusNoContent).NoContent()
obj := e.GET("/fruits/apple").
Expect().
Status(http.StatusOK).JSON().Object()
obj.Keys().ContainsOnly("colors", "weight")
obj.Value("colors").Array().ConsistsOf("green", "red")
obj.Value("colors").Array().Value(0).String().IsEqual("green")
obj.Value("colors").Array().Value(1).String().IsEqual("red")
obj.Value("colors").Array().First().String().IsEqual("green")
obj.Value("colors").Array().Last().String().IsEqual("red")
JSON Schema and JSON Path
schema := `{
"type": "array",
"items": {
"type": "object",
"properties": {
...
"private": {
"type": "boolean"
}
}
}
}`
repos := e.GET("/repos/octocat").
Expect().
Status(http.StatusOK).JSON()
// validate JSON schema
repos.Schema(schema)
// run JSONPath query and iterate results
for _, private := range repos.Path("$..private").Array().Iter() {
private.Boolean().IsFalse()
}
JSON decoding
type User struct {
Name string `json:"name"`
Age int `json:"age"`
Gender string `json:"gender"`
}
var user User
e.GET("/user").
Expect().
Status(http.StatusOK).
JSON().
Decode(&user)
if user.Name != "octocat" {
t.Fail()
}
Forms
// post form encoded from struct or map
e.POST("/form").WithForm(structOrMap).
Expect().
Status(http.StatusOK)
// set individual fields
e.POST("/form").WithFormField("foo", "hello").WithFormField("bar", 123).
Expect().
Status(http.StatusOK)
// multipart form
e.POST("/form").WithMultipart().
WithFile("avatar", "./john.png").WithFormField("username", "john").
Expect().
Status(http.StatusOK)
URL construction
// construct path using ordered parameters
e.GET("/repos/{user}/{repo}", "octocat", "hello-world").
Expect().
Status(http.StatusOK)
// construct path using named parameters
e.GET("/repos/{user}/{repo}").
WithPath("user", "octocat").WithPath("repo", "hello-world").
Expect().
Status(http.StatusOK)
// set query parameters
e.GET("
