2020-10-23 14:16:46 +00:00
|
|
|
package eventstore_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"os"
|
|
|
|
"testing"
|
2023-02-27 21:36:43 +00:00
|
|
|
"time"
|
2020-10-23 14:16:46 +00:00
|
|
|
|
|
|
|
"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"
|
2022-08-31 07:52:43 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
|
|
|
"github.com/zitadel/zitadel/internal/database/cockroach"
|
2020-10-23 14:16:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2023-02-27 21:36:43 +00:00
|
|
|
testCRDBClient *database.DB
|
2020-10-23 14:16:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-02-27 21:36:43 +00:00
|
|
|
testCRDBClient = &database.DB{
|
|
|
|
Database: new(testDB),
|
|
|
|
}
|
|
|
|
|
|
|
|
testCRDBClient.DB, err = sql.Open("postgres", ts.PGURL().String())
|
2020-10-23 14:16:46 +00:00
|
|
|
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()
|
|
|
|
}()
|
|
|
|
|
2023-02-27 21:36:43 +00:00
|
|
|
if err = initDB(testCRDBClient.DB); err != nil {
|
2022-03-15 06:19:02 +00:00
|
|
|
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 {
|
2022-08-31 07:52:43 +00:00
|
|
|
initialise.ReadStmts("cockroach")
|
|
|
|
config := new(database.Config)
|
|
|
|
config.SetConnector(&cockroach.Config{
|
|
|
|
User: cockroach.User{
|
|
|
|
Username: "zitadel",
|
|
|
|
},
|
|
|
|
Database: "zitadel",
|
|
|
|
})
|
|
|
|
err := initialise.Init(db,
|
|
|
|
initialise.VerifyUser(config.Username(), ""),
|
2023-02-27 21:36:43 +00:00
|
|
|
initialise.VerifyDatabase(config.DatabaseName()),
|
|
|
|
initialise.VerifyGrant(config.DatabaseName(), config.Username()))
|
2020-10-23 14:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-08-31 07:52:43 +00:00
|
|
|
return initialise.VerifyZitadel(db, *config)
|
2020-10-23 14:16:46 +00:00
|
|
|
}
|
2023-02-27 21:36:43 +00:00
|
|
|
|
|
|
|
type testDB struct{}
|
|
|
|
|
|
|
|
func (_ *testDB) Timetravel(time.Duration) string { return " AS OF SYSTEM TIME '-1 ms' " }
|
|
|
|
|
|
|
|
func (*testDB) DatabaseName() string { return "db" }
|
|
|
|
|
|
|
|
func (*testDB) Username() string { return "user" }
|
|
|
|
|
|
|
|
func (*testDB) Type() string { return "type" }
|