-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction_test.go
200 lines (188 loc) · 3.56 KB
/
transaction_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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// Copyright (c) 2020, Mohlmann Solutions SRL. All rights reserved.
// Use of this source code is governed by a License that can be found in the LICENSE file.
// SPDX-License-Identifier: BSD-3-Clause
package transaction
import (
"context"
"os"
"testing"
"time"
"github.com/moapis/multidb"
"github.com/moapis/multidb/drivers/postgresql"
"github.com/sirupsen/logrus"
)
var (
log = logrus.New()
mdb *multidb.MultiDB
)
func TestMain(m *testing.M) {
mc := multidb.Config{
DBConf: postgresql.Config{
Nodes: []postgresql.Node{{
Host: "localhost",
Port: 5432,
}},
Params: postgresql.Params{
DBname: "postgres",
User: "postgres",
SSLmode: "disable",
Connect_timeout: 5,
},
},
}
var err error
mdb, err = mc.Open()
if err != nil {
log.WithError(err).Fatal("mdb Open")
}
code := m.Run()
if err = mdb.Close(); err != nil {
log.WithError(err).Fatal("mdb close")
}
os.Exit(code)
}
func TestNew(t *testing.T) {
ectx, cancel := context.WithCancel(context.Background())
cancel()
type args struct {
ctx context.Context
mdb *multidb.MultiDB
routines []int
log *logrus.Entry
readOnly bool
}
tests := []struct {
name string
args args
wantErr bool
}{
{
"Readonly; nil routines",
args{
context.Background(),
mdb,
nil,
logrus.NewEntry(log),
true,
},
false,
},
{
"Readonly",
args{
context.Background(),
mdb,
[]int{2},
logrus.NewEntry(log),
true,
},
false,
},
{
"Not Readonly",
args{
context.Background(),
mdb,
nil,
logrus.NewEntry(log),
false,
},
false,
},
{
"Context error",
args{
ectx,
mdb,
nil,
logrus.NewEntry(log),
true,
},
true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := New(tt.args.ctx, tt.args.log, tt.args.mdb, tt.args.readOnly, tt.args.routines...)
if (err != nil) != tt.wantErr {
t.Errorf("New() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !tt.wantErr && got == nil {
t.Errorf("New() = %v, want %v", got, "something")
}
})
}
}
func Test_requestTx_EnoughTime(t *testing.T) {
ex, cancel := context.WithTimeout(context.Background(), -1)
defer cancel()
short, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
tests := []struct {
name string
ctx context.Context
need time.Duration
wantErr bool
}{
{
"Expired context",
ex,
0,
true,
},
{
"Enough time",
short,
time.Millisecond,
false,
},
{
"Skip check",
short,
time.Millisecond,
false,
},
{
"Not enough time",
short,
2 * time.Second,
true,
},
{
"No deadline",
context.Background(),
time.Millisecond,
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
rt := &Request{
Ctx: tt.ctx,
Log: logrus.NewEntry(log),
}
if err := rt.EnoughTime(tt.need); (err != nil) != tt.wantErr {
t.Errorf("requestTx.enoughTime() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func Test_requestTx_Done_Commit(t *testing.T) {
tx, err := New(context.Background(), logrus.NewEntry(log), mdb, false)
if err != nil {
t.Fatal(err)
}
if err = tx.Commit(); err != nil {
t.Errorf("requestTx.commit() error = %v, wantErr %v", err, false)
}
if err = tx.Commit(); err == nil {
t.Errorf("requestTx.commit() error = %v, wantErr %v", err, true)
}
tx.Done()
tx, err = New(context.Background(), logrus.NewEntry(log), mdb, false)
if err != nil {
t.Fatal(err)
}
tx.Done()
}