gomock
zerolog
Our great sponsors
gomock | zerolog | |
---|---|---|
35 | 33 | |
8,653 | 7,851 | |
2.4% | - | |
3.7 | 8.0 | |
about 1 month ago | 3 days ago | |
Go | Go | |
Apache License 2.0 | MIT License |
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
-
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
zerolog
-
What is the common log library which is industry standard that is used in server applications?
I use zerolog myself and have seen it being used in production several times. Also they have a list of who uses zerolog
-
Log: A minimal, colorful Go logging library 🪵
This would be so awesome if it was extending an awesome logger like https://github.com/rs/zerolog. Personally I love zerolog because of how it handles different data types including structs!
-
Best Logging Library for Golang
logrus README recommended using other libraries such as Zerolog, Zap, and Apex.
- If you had to choose a logging framework, which one would you use?
-
Building my first go project, looking for package/resource suggestions
I'd recommend checking out https://github.com/spf13/viper for configurations and https://github.com/rs/zerolog for enhanced logging.
-
Created a small logging library in Go.
zerolog
- What is the coolest Go open source projects you have seen?
-
Have you replaced Sirupsen/logrus, and if so, with what?
Many fantastic alternatives have sprung up. Logrus would look like those, had it been re-designed with what we know about structured logging in Go today. Check out, for example, Zerolog, Zap, and Apex.
My only issue with zerolog is that there has been no new releases in 5 years. Which means there are fairly serious/embarassing issues (e.g. https://github.com/rs/zerolog/issues/319) which have been fixed in master but still affect the "stable" v1.0.0 release... I have no idea why they don't cut a new release.
This may be helpful to you. https://github.com/learning-cloud-native-go/myapp/blob/master/util/logger/logger.go . However it's just a wrapper for https://github.com/rs/zerolog/blob/master/log/log.go .
What are some alternatives?
zap - Blazing fast, structured, leveled logging in Go.
logrus - Structured, pluggable logging for Go.
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
lumberjack - lumberjack is a log rolling package for Go
monkey - Monkey patching in Go
counterfeiter - A tool for generating self-contained, type-safe test doubles in go
go-sqlmock - Sql mock driver for golang to test database interactions
minimock - Powerful mock generation tool for Go programming language
Gin - Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.