mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-24 13:48:49 +08:00

* Add JSON Writer tests Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Add Posgres Reader JSON tests Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Add ID comment Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Add MongoDB Reader tests for JSON Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Rename test message Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Add tests for InfluxDB JSON messages Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Use test file for constants block Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Rename MongoDB imports Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Add Cassandra reader JSON tests Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Simplify test payload Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Handle wrong format uniformly across Readers Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>
80 lines
1.7 KiB
Go
80 lines
1.7 KiB
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Package postgres_test contains tests for PostgreSQL repository
|
|
// implementations.
|
|
package postgres_test
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/mainflux/mainflux/logger"
|
|
"github.com/mainflux/mainflux/readers/postgres"
|
|
dockertest "github.com/ory/dockertest/v3"
|
|
)
|
|
|
|
var (
|
|
testLog, _ = logger.New(os.Stdout, logger.Info.String())
|
|
db *sqlx.DB
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
pool, err := dockertest.NewPool("")
|
|
if err != nil {
|
|
log.Fatalf("Could not connect to docker: %s", err)
|
|
}
|
|
|
|
cfg := []string{
|
|
"POSTGRES_USER=test",
|
|
"POSTGRES_PASSWORD=test",
|
|
"POSTGRES_DB=test",
|
|
}
|
|
container, err := pool.Run("postgres", "10.8-alpine", cfg)
|
|
if err != nil {
|
|
log.Fatalf("Could not start container: %s", err)
|
|
}
|
|
|
|
port := container.GetPort("5432/tcp")
|
|
|
|
if err = pool.Retry(func() error {
|
|
url := fmt.Sprintf("host=localhost port=%s user=test dbname=test password=test sslmode=disable", port)
|
|
db, err = sqlx.Open("postgres", url)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return db.Ping()
|
|
}); err != nil {
|
|
log.Fatalf("Could not connect to docker: %s", err)
|
|
}
|
|
|
|
dbConfig := postgres.Config{
|
|
Host: "localhost",
|
|
Port: port,
|
|
User: "test",
|
|
Pass: "test",
|
|
Name: "test",
|
|
SSLMode: "disable",
|
|
SSLCert: "",
|
|
SSLKey: "",
|
|
SSLRootCert: "",
|
|
}
|
|
|
|
if db, err = postgres.Connect(dbConfig); err != nil {
|
|
log.Fatalf("Could not setup test DB connection: %s", err)
|
|
}
|
|
|
|
code := m.Run()
|
|
|
|
// Defers will not be run when using os.Exit
|
|
db.Close()
|
|
if err = pool.Purge(container); err != nil {
|
|
log.Fatalf("Could not purge container: %s", err)
|
|
}
|
|
|
|
os.Exit(code)
|
|
}
|