-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
connection_test.go
147 lines (118 loc) · 2.78 KB
/
connection_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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
//go:build sqlite
// +build sqlite
package pop
import (
"context"
"fmt"
"testing"
"github.com/stretchr/testify/require"
)
func Test_Connection_SimpleFlow(t *testing.T) {
r := require.New(t)
cd := &ConnectionDetails{
URL: "sqlite:///foo.db",
}
c, err := NewConnection(cd)
r.NoError(err)
err = c.Open()
r.NoError(err)
err = c.Open() // open again
r.NoError(err)
err = c.Close()
r.NoError(err)
}
func Test_Connection_Open_Close_Reopen(t *testing.T) {
r := require.New(t)
c, err := NewConnection(&ConnectionDetails{
URL: "sqlite://file::memory:?_fk=true",
})
r.NoError(err)
for i := 0; i < 2; i++ {
r.NoError(c.Open())
r.NoError(c.Transaction(func(c *Connection) error { return nil }))
r.NoError(c.Close())
}
}
func Test_Connection_Open_NoDialect(t *testing.T) {
r := require.New(t)
cd := &ConnectionDetails{
URL: "sqlite:///foo.db",
}
c, err := NewConnection(cd)
r.NoError(err)
c.Dialect = nil
err = c.Open()
r.Error(err)
}
func Test_Connection_Open_BadDriver(t *testing.T) {
r := require.New(t)
cd := &ConnectionDetails{
URL: "sqlite:///foo.db",
}
c, err := NewConnection(cd)
r.NoError(err)
cd.Driver = "unknown"
err = c.Open()
r.Error(err)
}
func Test_Connection_NewTransaction(t *testing.T) {
r := require.New(t)
ctx := context.WithValue(context.Background(), "test", "test")
c, err := NewConnection(&ConnectionDetails{
URL: "sqlite://file::memory:?_fk=true",
})
r.NoError(err)
r.NoError(c.Open())
c = c.WithContext(ctx)
t.Run("func=NewTransaction", func(t *testing.T) {
r := require.New(t)
tx, err := c.NewTransaction()
r.NoError(err)
// has transaction and context
r.NotNil(tx.TX)
r.Nil(c.TX)
r.Equal(ctx, tx.Context())
// does not start a new transaction
ntx, err := tx.NewTransaction()
r.Equal(tx, ntx)
r.NoError(tx.TX.Rollback())
})
t.Run("func=NewTransactionContext", func(t *testing.T) {
r := require.New(t)
nctx := context.WithValue(ctx, "nested", "test")
tx, err := c.NewTransactionContext(nctx)
r.NoError(err)
// has transaction and context
r.NotNil(tx.TX)
r.Nil(c.TX)
r.Equal(nctx, tx.Context())
r.NoError(tx.TX.Rollback())
})
}
func Test_Connection_Transaction(t *testing.T) {
r := require.New(t)
c, err := NewConnection(&ConnectionDetails{
URL: "sqlite://file::memory:?_fk=true",
})
r.NoError(err)
r.NoError(c.Open())
t.Run("Success", func(t *testing.T) {
err = c.Transaction(func(c *Connection) error {
return nil
})
r.NoError(err)
})
t.Run("Failed", func(t *testing.T) {
err = c.Transaction(func(c *Connection) error {
return fmt.Errorf("failed")
})
r.ErrorContains(err, "failed")
})
t.Run("Panic", func(t *testing.T) {
r.PanicsWithValue("inner function panic", func() {
c.Transaction(func(c *Connection) error {
panic("inner function panic")
})
})
})
}