gomock
GoMock is a mocking framework for the Go programming language. (by golang)
counterfeiter
A tool for generating self-contained, type-safe test doubles in go (by maxbrunsfeld)
Our great sponsors
gomock | counterfeiter | |
---|---|---|
34 | 12 | |
8,622 | 790 | |
2.0% | - | |
3.6 | 4.1 | |
26 days ago | 6 days ago | |
Go | Go | |
Apache License 2.0 | 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.
gomock
Posts with mentions or reviews of gomock.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-03-06.
-
Is gomock still maintained and recommended?
Looking at gomock's commit history, it seems like there hasn't been much activity on the project in a couple of years. I'm wondering if this is the case of software being mostly done and just in maintenance mode, or if gomock is falling behind. The reason I fear for the latter is there are still issues being opened up that don't seem to be engaged very much.
-
Want to know if this is a valid approach
Yeah, that would work just fine. Nevertheless, as your business logic gets more complicated, you will want to test more scenarios and mocks will get complicated fast. In these cases tools like gomock really shine and make your life easier. I understand that this is a just-for-fun project, but it's never too early to experiment with a popular solution, especially if you plan on using Go professionally in the future.
-
Go API Project Set-Up
Unit tests are leveraged to test individual units of code. As such it is not recommended for a developer to scaffold entire dependencies for the sake of testing a single object. Due to the way Go's specific implementations work, I've learned over time to declare interfaces for a lot of the structs that I use in Go. Interfaces not only define a contract for which struct-based implementations should adhere, but they also provide a mechanism for which struct methods can be mocked. While I've experimented with the mock package in testify, I've come to prefer the mock functionality which is provided by mockgen.
-
Google's internal Go style guide
Where we do use mocks, we primarily use GoMock.
-
How do you write/generate mocks for testing?
Currently migrating from moq to https://github.com/golang/mock
-
golang unit testing
I use gomock or mockery for mocking the interfaces and testify for evaluating tests
-
How we wrote Tarantool Kubernetes Operator
As every software, the operator needs to be tested. In our case, we use two types of tests: Unit and E2E. For testing, usually mock code generation is used (for example, via golang/mock). We didn't like this option, so we decided to use Testify's mock module that allows to mock required function interfaces using the reflection API—the interfaces used to configure Tarantool.
-
how to mock DBs
In all other layers, my repositories are mocked using https://github.com/golang/mock
-
How do you decide you are gonna use interface?
If you don't know how to mock databases, checkout some tutorials on it, it's a big topic, and I can't give you all the details on it. Checkout these repositories, they are used for mocking in golang https://github.com/golang/mock, https://github.com/stretchr/testify
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
-
Libraries you use most of your projects?
https://github.com/maxbrunsfeld/counterfeiter - generate static typed test double (can be used to mock or stub calls)
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.
- 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.
-
Flexible mocking for testing in Go (without using a framework)
Correct link is https://github.com/maxbrunsfeld/counterfeiter for those interested
What are some alternatives?
When comparing gomock and counterfeiter you can also consider the following projects:
mockery - A mock code autogenerator for Golang
Testify - A toolkit with common assertions and mocks that plays nicely with the standard library
pgx - PostgreSQL driver and toolkit for Go
sqlx - general purpose extensions to golang's database/sql
monkey - Monkey patching in Go
go-sqlmock - Sql mock driver for golang to test database interactions
minimock - Powerful mock generation tool for Go programming language
zerolog - Zero Allocation JSON Logger
gock - HTTP traffic mocking and testing made easy in Go ༼ʘ̚ل͜ʘ̚༽
moq - Interface mocking tool for go generate
realize - Realize is the #1 Golang Task Runner which enhance your workflow by automating the most common tasks and using the best performing Golang live reloading.