Skip to content
This repository has been archived by the owner on Oct 8, 2018. It is now read-only.

ory/sqlcon

Repository files navigation

sqlcon

CircleCI

Dockertest

This library also helps with setting up Dockertest for SQL databases:

func TestMain(m *testing.M) {
    // Registers a docker pool and sets up a list of resources.
	runner := dockertest.Register()

    // We must parse the flags in order to check if `testing.Short()` is true.
	flag.Parse()

	// Connects to the databases in parallel.
    dockertest.Parallel([]func(){
        connectToPostgres,
        connectToMySQL,
    })

    // Kills and removes the docker containers.
	runner.Exit(m.Run())
}

func connectToMySQL() {
	db, err := dockertest.ConnectToTestMySQL()
	if err != nil {
		log.Fatalf("Could not connect to database: %v", err)
	}

    // ...
}

func connectToPostgres() {
	db, err := dockertest.ConnectToTestPostgres()
	if err != nil {
		log.Fatalf("Could not connect to database: %v", err)
	}

    // ...
}