forked from ibrhmkoz/pgtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgtest_test.go
76 lines (66 loc) · 2.01 KB
/
pgtest_test.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
package pgtest
import (
"context"
"github.com/jackc/pgx/v5/pgxpool"
"github.com/stretchr/testify/require"
"testing"
)
const (
dsu DesiredStateURL = "file://schema.sql"
)
func TestPGTest(t *testing.T) {
Run(t,
func(t *testing.T, ctx context.Context, pool *pgxpool.Pool) {
// Given
_, err := pool.Exec(ctx, `INSERT INTO clinics (id, name, email) VALUES ($1, $2, $3)`, "test-clinic-uuid", "Test Clinic", "[email protected]")
require.NoError(t, err)
// When
var name string
var email string
err = pool.QueryRow(ctx, `SELECT name, email FROM clinics`).Scan(&name, &email)
// Then
require.NoError(t, err)
require.Equal(t, "Test Clinic", name)
require.Equal(t, "[email protected]", email)
},
WithDesiredState(dsu),
)
}
func TestWithReferentialIntegrityEnabled(t *testing.T) {
Run(t,
func(t *testing.T, ctx context.Context, pool *pgxpool.Pool) {
_, err := pool.Exec(ctx, `INSERT INTO doctors (id, clinic_id) VALUES ($1, $2)`, "test-doctor-uuid", "non-existent-clinic-uuid")
require.Error(t, err)
},
WithDesiredState(dsu),
)
}
func TestWithReferentialIntegrityDisabled(t *testing.T) {
Run(t,
func(t *testing.T, ctx context.Context, pool *pgxpool.Pool) {
_, err := pool.Exec(ctx, `INSERT INTO doctors (id, clinic_id) VALUES ($1, $2)`, "test-doctor-uuid", "non-existent-clinic-uuid")
require.NoError(t, err)
},
WithReferentialIntegrityDisabled(),
WithDesiredState(dsu),
)
}
func TestWithVersion(t *testing.T) {
Run(t,
func(t *testing.T, ctx context.Context, pool *pgxpool.Pool) {
// Given
_, err := pool.Exec(ctx, `INSERT INTO clinics (id, name, email) VALUES ($1, $2, $3)`, "test-clinic-uuid", "Test Clinic", "[email protected]")
require.NoError(t, err)
// When
var name string
var email string
err = pool.QueryRow(ctx, `SELECT name, email FROM clinics`).Scan(&name, &email)
// Then
require.NoError(t, err)
require.Equal(t, "Test Clinic", name)
require.Equal(t, "[email protected]", email)
},
WithVersion("14"),
WithDesiredState(dsu),
)
}