go-vcr
testfixtures
Our great sponsors
- ONLYOFFICE ONLYOFFICE Docs — document collaboration in your environment
- CodiumAI - TestGPT | Generating meaningful tests for busy devs
- SonarLint - Clean code begins in your IDE with SonarLint
- InfluxDB - Access the most powerful time series database as a service
go-vcr | testfixtures | |
---|---|---|
6 | 4 | |
1,008 | 935 | |
- | 2.0% | |
0.0 | 6.2 | |
3 months ago | 8 days ago | |
Go | Go | |
GNU General Public License v3.0 or later | 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.
go-vcr
-
Testing calls to external APIs
Mocking the http client using recorded responses; for example using dnaeon/go-vcr
-
How I write offline API tests in Go
For example I see go-vcr (note: not mine), but haven't taken time yet to evaluate it.
-
go-vcr v3 has been released
I've finally found some spare time and managed to work on go-vcr, fixed some long standing issues, refactored things here and there and was able to get a new version of the package.
-
What are you using for testing your IAC?
Terraform providers are tested this way (separate cloud account w/ create/destroy) paired with VCR to record and replay the HTTP requests.
-
Go Package for testing HTTP interactions: github.com/dnaeon/go-vcr
Let me introduce to you github.com/dnaeon/go-vcr.
-
best way to mock/unit test http.Client?
dnaeon/go-vcr
testfixtures
-
How to mock database calls
I'm the author of https://github.com/go-testfixtures/testfixtures, a library written to make it easier to write tests with a real database and test data. You might want to use it together with docker-compose, for example.
-
Integration tests with Go and testcontainers
To solve the problem we will use testfixtures. Create a folders fixtures и fixtures/storage and put a file users.yaml inside:
-
Mocking database or use a test database
A lot of good suggestions here, I would also take a look at go-testfixtures which allows you to create some simple yaml-based fixture data to use with unit testing. It's quick and easy, but yes can get unwieldy the more you add.
-
Ask HN: What are some tools / libraries you built yourself?
I built an alternative to Make written in Go that is simpler to use and cross-platform: https://taskfile.dev/
Also, a library to write tests with databases for Go: https://github.com/go-testfixtures/testfixtures
What are some alternatives?
gofight - Testing API Handler written in Golang.
Gauge - Light weight cross-platform test automation
ginkgo - A Modern Testing Framework for Go
Hamcrest - Hamcrest matchers for the Go programming language
gomega - Ginkgo's Preferred Matcher Library
GoAws - AWS (SQS/SNS) Clone for Development testing
httpmock - HTTP mocking for Golang
embedded-postgres - Run a real Postgres database locally on Linux, OSX or Windows as part of another Go application or test
GoSpec - Testing framework for Go. Allows writing self-documenting tests/specifications, and executes them concurrently and safely isolated. [UNMAINTAINED]
assert - :exclamation:Basic Assertion Library used along side native go testing, with building blocks for custom assertions
frisby - API testing framework inspired by frisby-js