counterfeiter
A tool for generating self-contained, type-safe test doubles in go (by maxbrunsfeld)
go-sqlmock
Sql mock driver for golang to test database interactions (by DATA-DOG)
Our great sponsors
counterfeiter | go-sqlmock | |
---|---|---|
5 | 10 | |
660 | 4,369 | |
- | 2.6% | |
5.5 | 1.8 | |
about 2 months ago | 26 days ago | |
Go | Go | |
MIT License | GNU General Public License v3.0 or later |
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 2022-03-18.
-
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
-
Flexible mocking for testing in Go (without using a framework)
Correct link is https://github.com/maxbrunsfeld/counterfeiter for those interested
go-sqlmock
Posts with mentions or reviews of go-sqlmock.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-12-20.
- SQL mock driver for Golang to test database interactions
- Can't get a specifc SQL query with pgx to work
-
[HELP] how to test this piece of code?
There is a good lib for db tests https://github.com/DATA-DOG/go-sqlmock
-
I share my authentication server.
Continuous Integration - Testify, sqlmock, Mockery, Github Actions
-
[HELP] Testing SQL queries and functions that use SQL queries in Golang.
For testing DB queries I use https://github.com/DATA-DOG/go-sqlmock for unit tests. I then have a separate integration test suite that runs against all our services using Docker.
-
What are the REST API reference projects that can be used as a guide in 2021?
However your point is valid. Check matryer/is for unit test writing. DATA-DOG/go-sqlmock to test database interactions.
-
Go Package for better integration tests: github.com/ory/dockertest
We have different ways to write our tests depending on what datastore we are using, for example if we are testing database calls that happen to be using database/sql then importing a package like github.com/DATA-DOG/go-sqlmock could work.
-
tidb-lite: used for unit testing of Golang database-related code
Another common method is to mock SQL services in the test. At present, the more popular solution is to use go-sqlmock.
-
How to mock DB for unit tests?
I've been using https://github.com/DATA-DOG/go-sqlmock. It's pretty well documented, should be enough to get going.
I've never bothered with any ORM, but for mocking the underlying sql.DB I've been using https://github.com/DATA-DOG/go-sqlmock which is very simple and straightforward to use.
What are some alternatives?
When comparing counterfeiter and go-sqlmock you can also consider the following projects:
gomock - GoMock is a mocking framework for the Go programming language.
go-txdb - Immutable transaction isolated sql driver for golang
gock - HTTP traffic mocking and testing made easy in Go ༼ʘ̚ل͜ʘ̚༽
gotests - Automatically generate Go test boilerplate from your source code.
mockery - A mock code autogenerator for Golang
tidb-lite - Using tidb-lite to create a TiDB server with mocktikv mode in your application or unit test.
Mmock - Mmock is an HTTP mocking application for testing and fast prototyping
prettybenchcmp - cmd tool for automatic storage and comparison of benchmarks results
minimock - Powerful mock generation tool for Go programming language