counterfeiter
A tool for generating self-contained, type-safe test doubles in go (by maxbrunsfeld)
gock
HTTP traffic mocking and testing made easy in Go ༼ʘ̚ل͜ʘ̚༽ (by h2non)
counterfeiter | gock | |
---|---|---|
12 | 10 | |
942 | 2,079 | |
- | - | |
7.3 | 2.9 | |
7 days ago | about 2 months ago | |
Go | 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.
counterfeiter
Posts with mentions or reviews of counterfeiter.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-02-07.
-
Mocking database calls without a library?
then just replace whole function, don't generate manually the mock '__') or it would get out of hand fast, you can just use codegen that static typed like https://github.com/maxbrunsfeld/counterfeiter
-
Is this a good way to make sure that a mocked function is called inside the Unit Test?
Yes, that's a good way to do that; there are a lot of packages that allow you to mock and spy the calls if you're looking for one that generates the code for you I can recommend counterfeiter, I also have a short blog that covers it.
-
Libraries you use most of your projects?
I prefer https://github.com/maxbrunsfeld/counterfeiter
-
How do you write/generate mocks for testing?
counterfeiter is another tool, it creates mocks, stubs and spies; here is a short blog I wrote covering it.
- Mocking Interfaces in Go with GoMock
- What's the best approach for mocking a function /method?
-
Best/Easiest Rest Framework
for dependency injection I suggest you use https://github.com/maxbrunsfeld/counterfeiter, but if you using really fast database (that can spawn fast using docker and has fast trx/sec) you can use it directly without dependency injection with https://github.com/ory/dockertest
-
Migrating from NodeJS/Typescript into Golang. Any advise for big web application?
Agree with u/mmknightx there is a tool that assist in creating fake or mock classes for your interfaces https://github.com/maxbrunsfeld/counterfeiter
-
How do you control behaviour in mocked interface ?
Another alternative to use would be counterfeiter, it generates a type from your interface that could be used as a mock, stub or spy. I wrote a short post covering that tool if you're interested.
- Slack notification Github action
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 2022-12-09.
-
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
- How to mock `jwk.Fetch` in my unit tests?
- Has anyone here compiled DroneCI from scratch?
What are some alternatives?
When comparing counterfeiter and gock you can also consider the following projects:
gomock - GoMock is a mocking framework for the Go programming language.
httpmock - HTTP mocking for Golang
mockery - A mock code autogenerator for Go
Mmock - Mmock is an HTTP mocking application for testing and fast prototyping
go-sqlmock - Sql mock driver for golang to test database interactions
prettybenchcmp - cmd tool for automatic storage and comparison of benchmarks results
govcr - HTTP mock for Golang: record and replay HTTP/HTTPS interactions for offline testing
mockhttp - Mock object for Go http.ResponseWriter
httpexpect - End-to-end HTTP and REST API testing for Go.
go-localstack - Go Wrapper for using localstack
go-txdb - Immutable transaction isolated sql driver for golang