Mmock
Mmock is an HTTP mocking application for testing and fast prototyping (by jmartin82)
gock
HTTP traffic mocking and testing made easy in Go ༼ʘ̚ل͜ʘ̚༽ (by h2non)
| Mmock | gock | |
|---|---|---|
| - | 12 | |
| 694 | 2,215 | |
| 0.0% | 0.0% | |
| 6.9 | 3.5 | |
| 2 months ago | over 1 year ago | |
| TypeScript | Go | |
| MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Mmock
Posts with mentions or reviews of Mmock.
We have used some of these posts to build our list of alternatives
and similar projects.
We haven't tracked posts mentioning Mmock yet.
Tracking mentions began in Dec 2020.
gock
Posts with mentions or reviews of gock.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-02-06.
-
The best way for testing outbound API calls
Another great option is gock, a lib that is also inspired by nock, with a simple and easy API. It works by intercepting any HTTP request made by any http.Client and adding it to a list, so it can check if a mock request exists. If not, an error is returned, unless the real networking mode is on. In that case, the request is done normally.
- Testando chamadas para APIs da melhor forma
-
Testing calls to external APIs
Mocking the http client with explicit responses; for example using h2non/gock
- What features would you consider missing/nice to haves for backend web development in Rust?
-
Mock HTTP response
Check out gock.
- API Mock Testing Frameworks
-
Testing methods with HTTP calls?
h2non/gock and
-
Go Package for Mocking HTTP Traffic: github.com/h2non/gock
Last time I covered testing in Go I mentioned a package used for testing equality called github.com/google/go-cmp, this time I will share with you a way to mock HTTP traffic using the package github.com/h2non/gock.
-
HTTP mocking
If you need a good library for mocking http servers https://github.com/h2non/gock does a great job.
-
best way to mock/unit test http.Client?
github.com/h2non/gock
What are some alternatives?
When comparing Mmock and gock you can also consider the following projects:
mockhttp - Mock object for Go http.ResponseWriter
gomock - GoMock is a mocking framework for the Go programming language.
counterfeiter - A tool for generating self-contained, type-safe test doubles in go
httpmock - HTTP mocking for Golang
gotests - Automatically generate Go test boilerplate from your source code.
go-sqlmock - Sql mock driver for golang to test database interactions