-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpg.go
48 lines (39 loc) · 1.27 KB
/
pg.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package testhelper
import (
"context"
"fmt"
"os"
"testing"
"github.com/GitDataAI/jiaozifs/config"
"github.com/GitDataAI/jiaozifs/models"
"github.com/GitDataAI/jiaozifs/models/migrations"
embeddedpostgres "github.com/fergusstrange/embedded-postgres"
"github.com/phayes/freeport"
"github.com/stretchr/testify/require"
"github.com/uptrace/bun"
"go.uber.org/fx/fxtest"
)
var TestConnTmpl = "postgres://postgres:postgres@localhost:%d/jiaozifs?sslmode=disable"
type CloseFunc func()
func SetupDatabase(ctx context.Context, t *testing.T) (CloseFunc, string, *bun.DB) {
port, err := freeport.GetFreePort()
require.NoError(t, err)
tmpDir, err := os.MkdirTemp(os.TempDir(), "*")
require.NoError(t, err)
cfg := embeddedpostgres.DefaultConfig().
RuntimePath(tmpDir).
Port(uint32(port)).
Database("jiaozifs")
postgres := embeddedpostgres.NewDatabase(cfg)
err = postgres.Start()
require.NoError(t, err)
connStr := fmt.Sprintf(TestConnTmpl, port)
db, err := models.SetupDatabase(ctx, fxtest.NewLifecycle(t), &config.DatabaseConfig{Debug: true, Connection: connStr})
require.NoError(t, err)
err = migrations.MigrateDatabase(ctx, db)
require.NoError(t, err)
return func() {
require.NoError(t, postgres.Stop())
require.NoError(t, os.RemoveAll(tmpDir))
}, connStr, db
}