Squirrel VS dockertest

Compare Squirrel vs dockertest and see what are their differences.

Squirrel

Fluent SQL generation for golang (by Masterminds)

dockertest

Write better integration tests! Dockertest helps you boot up ephermal docker images for your Go tests with minimal work. (by ory)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Squirrel dockertest
52 48
6,505 3,960
1.7% 1.8%
2.8 4.5
about 2 months ago 21 days ago
Go Go
GNU General Public License v3.0 or later Apache License 2.0
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.

Squirrel

Posts with mentions or reviews of Squirrel. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-27.
  • Building RESTful API with Hexagonal Architecture in Go
    21 projects | dev.to | 27 Sep 2023
    It uses Gin as the HTTP framework and PostgreSQL as the database with pgx as the driver and Squirrel as the query builder. It also utilizes Redis as the caching layer with go-redis as the client.
  • Working with postgres in GO.
    2 projects | /r/golang | 3 Jul 2023
    I would add Squirrel to PGX https://github.com/Masterminds/squirrel
  • how to avoid writing dreadful SQL statements
    4 projects | /r/golang | 23 May 2023
    I have written about this before, and my thoughts always settle on using a query builder. I've built a simple one, which works for what I need, but there are more feature complete ones out there such as squirrel. I've also written about how you can implement a simple CRUD library for database interactions using generics and query building to have that nice middle-ground between an ORM and query building.
  • How do I enable filters for the user without writing redundant SQL?
    1 project | /r/golang | 15 May 2023
    Now for the dynamic queries you have to be really careful to prevent SQL injections, there are bunch of different ways to do it but I typically recommend using a package such as squirrel that lets you do this easily, you use it to generate the plain SQL you need (and then use sqlx, database/sql, pgx or whatever you prefer) or use it directly querying the database directly.
  • Best sqlc alternative for dynamic queries?
    8 projects | /r/golang | 15 May 2023
    Here are 2 options for you * https://github.com/huandu/go-sqlbuilder * https://github.com/Masterminds/squirrel
  • Golang RESTAPI boilerplate repository
    7 projects | /r/golang | 2 May 2023
    https://www.reddit.com/r/golang/comments/vq98ud/what_sql_library_are_you_using/ Jet havn't used but is one that looks promising! Otherwise I'm one of the purests, db/sql and https://github.com/Masterminds/squirrel
  • Why is Raw SQL preferred over ORM in go?
    7 projects | /r/golang | 15 Apr 2023
    I think he means an sql builder like squirrel. This allows dynamic queries, but more important you can reuse function that build a where clause so you can get a count and query with that.
  • Does Go, has something similar to Laravel eloquent (ORM) ?
    7 projects | /r/golang | 11 Apr 2023
    I'd rather suggest the use of tools more aligned with the core concepts of the language such as sqlx, which is an extension of the database/sql standard library. It allows you to use models/structs to map your tables but you have more control over the SQL statements you use to perform queries and the like. You can combine sqlx with Squirrel to build queries from composable parts.
  • Are there any decent ORMs in Golang?
    7 projects | /r/golang | 11 Mar 2023
    But using a query builder, something like squirrel or (plug) bqb, allows you to actually write SQL (or something close to it) when you need it but also handles the nasty string building bits. Though I agree that ORMs are not always bad, especially for small projects with well-defined scope.
  • GORM
    16 projects | /r/golang | 16 Feb 2023
    Plug for bqb as a query builder, but there's also squirrel which works pretty well too.

dockertest

Posts with mentions or reviews of dockertest. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-27.
  • Testcontainers
    16 projects | news.ycombinator.com | 27 Feb 2024
    I am using https://github.com/ory/dockertest for tests, specifically for databases. Is there any advantage to use Testcontainers?
  • Level UP your RDBMS Productivity in GO
    5 projects | dev.to | 5 Dec 2023
    Now, let's run the tests. For this purpose, we are going to use dockertest, but test containers is also a good solution.
  • Golang testing using docker services via dockertest
    3 projects | dev.to | 3 Sep 2023
    During my path learning go so far I have come across some amazing libraries and utilites, one of my favourite for integration testing is dockertest.
  • How to start a Go project in 2023
    21 projects | news.ycombinator.com | 23 May 2023
    Things I can't live without in a new Go project in no particular order:

    - https://github.com/golangci/golangci-lint - meta-linter

    - https://goreleaser.com - automate release workflows

    - https://magefile.org - build tool that can version your tools

    - https://github.com/ory/dockertest/v3 - run containers for e2e testing

    - https://github.com/ecordell/optgen - generate functional options

    - https://golang.org/x/tools/cmd/stringer - generate String()

    - https://mvdan.cc/gofumpt - stricter gofmt

    - https://github.com/stretchr/testify - test assertion library

    - https://github.com/rs/zerolog - logging

    - https://github.com/spf13/cobra - CLI framework

    FWIW, I just lifted all the tools we use for https://github.com/authzed/spicedb

    We've also written some custom linters that might be useful for other folks: https://github.com/authzed/spicedb/tree/main/tools/analyzers

  • Beginner-friendly API made with Go following hexagonal architecture.
    5 projects | /r/golang | 21 May 2023
    I've used dockertest a bunch and it is really amazing.
  • How to unit test your database interactions with Docker
    4 projects | /r/golang | 24 Mar 2023
    Reminds me of https://github.com/ory/dockertest
  • When to mock and what to mock in a Web API?
    3 projects | /r/golang | 23 Mar 2023
    If your project is relatively simple and you can get away with recreating your scenarios against a real mock database and run other related services locally. It would be good to setup docker containers for your test scripts and write e2e tests. I believe e2e tests are harder but more useful in understanding/reasoning how users are impacted.
  • Don't Mock the Database
    3 projects | /r/golang | 9 Mar 2023
    Just a heads up, the repository in your comment is invalid, the correct link is https://github.com/ory/dockertest
  • Mocking database calls without a library?
    3 projects | /r/golang | 7 Feb 2023
    Don't mock. Use https://github.com/ory/dockertest to actually run tests against a dockerized DB.
  • Different SQL drivers for test and production
    2 projects | /r/golang | 16 Jan 2023
    Use a library like ory/dockertest to spin up a test database for integration tests. It's easy to use, and tests are still fast. It'll take a minute to download the mysql docker image the first time. But, once it's been downloaded, starting the db, running migrations, and running the tests is still pretty quick.

What are some alternatives?

When comparing Squirrel and dockertest you can also consider the following projects:

goqu - SQL builder and query library for golang

testcontainers-go - Testcontainers for Go is a Go package that makes it simple to create and clean up container-based dependencies for automated integration/smoke tests. The clean, easy-to-use API enables developers to programmatically define containers that should be run as part of a test and clean up those resources when the test is done.

sqlx - general purpose extensions to golang's database/sql

fake-gcs-server - Google Cloud Storage emulator & testing library.

GORM - The fantastic ORM library for Golang, aims to be developer friendly

mockaroo - Mock-A-🦘 (mock-aa-roo) a comprehensive HTTP/HTTPS interface mocking tool for all your development and testing needs!

InfluxDB - Scalable datastore for metrics, events, and real-time analytics

venom - 🐍 Manage and run your integration tests with efficiency - Venom run executors (script, HTTP Request, web, imap, etc... ) and assertions

sqlc - Generate type-safe code from SQL

steampipe - Zero-ETL, infinite possibilities. Live query APIs, code & more with SQL. No DB required.

sqlx - 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.

go-sqlmock - Sql mock driver for golang to test database interactions