-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtest_utils.go
78 lines (71 loc) · 1.72 KB
/
test_utils.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package main
import (
"context"
"database/sql"
"os"
"path/filepath"
"time"
"github.com/docker/go-connections/nat"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/wait"
)
func getTestDb() (testcontainers.Container, *sql.DB, error) {
bootStrapSqlDir, err := os.Stat("mysql-init")
if err != nil {
return nil, nil, err
}
cwd, err := os.Getwd()
if err != nil {
if err != nil {
return nil, nil, err
}
}
bindMountPath := filepath.Join(cwd, bootStrapSqlDir.Name())
waitForSql := wait.ForSQL("3306/tcp", "mysql",
func(p nat.Port) string {
return "root:rootpw@tcp(" +
"127.0.0.1:" + p.Port() +
")/package_server"
})
waitForSql.WithPollInterval(5 * time.Second)
req := testcontainers.ContainerRequest{
Image: "mysql:8.0.26",
ExposedPorts: []string{"3306/tcp"},
Env: map[string]string{
"MYSQL_DATABASE": "package_server",
"MYSQL_USER": "packages_rw",
"MYSQL_PASSWORD": "password",
"MYSQL_ROOT_PASSWORD": "rootpw",
},
ImagePlatform: "linux/x86_64",
BindMounts: map[string]string{
bindMountPath: "/docker-entrypoint-initdb.d",
},
Cmd: []string{
"--default-authentication-plugin=mysql_native_password",
},
WaitingFor: waitForSql,
}
ctx := context.Background()
mysqlC, err := testcontainers.GenericContainer(
ctx,
testcontainers.GenericContainerRequest{
ContainerRequest: req,
Started: true,
})
if err != nil {
return mysqlC, nil, err
}
addr, err := mysqlC.PortEndpoint(ctx, "3306", "")
if err != nil {
return mysqlC, nil, err
}
db, err := getDatabaseConn(
addr, "package_server",
"packages_rw", "password",
)
if err != nil {
return mysqlC, nil, nil
}
return mysqlC, db, nil
}