2020-10-23 14:16:46 +00:00
|
|
|
package eventstore_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/cockroachdb/cockroach-go/v2/testserver"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/logging"
|
2022-03-15 06:19:02 +00:00
|
|
|
|
2022-06-27 10:32:34 +00:00
|
|
|
"github.com/zitadel/zitadel/cmd/initialise"
|
2020-10-23 14:16:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
testCRDBClient *sql.DB
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
ts, err := testserver.NewTestServer()
|
|
|
|
if err != nil {
|
2022-03-15 06:19:02 +00:00
|
|
|
logging.WithFields("error", err).Fatal("unable to start db")
|
2020-10-23 14:16:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testCRDBClient, err = sql.Open("postgres", ts.PGURL().String())
|
|
|
|
if err != nil {
|
2022-03-15 06:19:02 +00:00
|
|
|
logging.WithFields("error", err).Fatal("unable to connect to db")
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
logging.WithFields("error", err).Fatal("unable to connect to db")
|
|
|
|
}
|
|
|
|
if err = testCRDBClient.Ping(); err != nil {
|
|
|
|
logging.WithFields("error", err).Fatal("unable to ping db")
|
2020-10-23 14:16:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
testCRDBClient.Close()
|
|
|
|
ts.Stop()
|
|
|
|
}()
|
|
|
|
|
2022-03-15 06:19:02 +00:00
|
|
|
if err = initDB(testCRDBClient); err != nil {
|
|
|
|
logging.WithFields("error", err).Fatal("migrations failed")
|
2020-10-23 14:16:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
os.Exit(m.Run())
|
|
|
|
}
|
|
|
|
|
2022-03-15 06:19:02 +00:00
|
|
|
func initDB(db *sql.DB) error {
|
|
|
|
username := "zitadel"
|
|
|
|
database := "zitadel"
|
|
|
|
err := initialise.Initialise(db, initialise.VerifyUser(username, ""),
|
|
|
|
initialise.VerifyDatabase(database),
|
|
|
|
initialise.VerifyGrant(database, username))
|
2020-10-23 14:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-03-15 06:19:02 +00:00
|
|
|
return initialise.VerifyZitadel(db)
|
2020-10-23 14:16:46 +00:00
|
|
|
}
|