Giter Club home page Giter Club logo

pgtest's Introduction

pgtest

pgtest is a Go package that simplifies testing against PostgreSQL databases. It provides a clean and efficient testing environment by running tests in parallel, applying database schema migrations, and offering options to disable referential integrity checks and specify the desired PostgreSQL version. pgtest follows best practices for establishing database connections by leveraging the pgx/pool package, which offers superior performance and features compared to the standard library's database/sql.

Features

  • Run tests in parallel for improved performance
  • Apply database schema migrations using Atlas
  • Disable referential integrity checks for simplified test setup
  • Specify desired PostgreSQL version for testing
  • Utilizes pgx/pool for efficient and feature-rich database connection management

Installation

go get github.com/ibrhmkoz/pgtest

Usage

import "github.com/ibrhmkoz/pgtest"

func TestMyFunction(t *testing.T) {
    pgtest.Run(t,
        "file://path/to/schema.sql",
        func(t *testing.T, ctx context.Context, pool *pgxpool.Pool) {
            // Test code here
            // Use the pool to interact with the database
        },
    )
}

Options

pgtest provides a few options to customize the behavior of the test setup:

  • WithReferentialIntegrityDisabled(): Disables referential integrity checks in the test database, allowing for simplified test setup when dealing with complex referential integrity chains.
  • WithVersion(version string): Specifies the desired PostgreSQL version to use for testing. Defaults to "latest" if not provided.

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any bugs, feature requests, or improvements.

License

pgtest is released under the MIT License.

pgtest's People

Contributors

ibrhmkoz avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.