-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_test.go
356 lines (298 loc) · 8.02 KB
/
db_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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
//nolint:exhaustruct,gochecknoglobals,errcheck // still immature code, work in progress
package main
import (
"fmt"
"log"
"log/slog"
"math/rand"
"os"
"sort"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
const testDBName = ":memory:"
var s *Storage
func TestMain(m *testing.M) {
err := setup()
if err != nil {
log.Fatal(err)
}
exitVal := m.Run()
os.Exit(exitVal)
}
func setup() error {
var err error
s, err = NewStorage(testDBName, slog.Default())
if err != nil {
return err
}
err = s.Migrate()
if err != nil {
return fmt.Errorf("can't make migrations: %w", err)
}
return nil
}
func TestStorage_CreatePomodoro(t *testing.T) {
pomodoro := &Pomodoro{
ID: 100,
StartAt: time.Now(),
FinishAt: time.Now(),
}
err := s.CreatePomodoro(pomodoro)
require.NoError(t, err)
var pomdoroFromDB Pomodoro
err = s.DB.QueryRow(`SELECT * FROM pomodoros;`).Scan(&pomdoroFromDB.ID, &pomdoroFromDB.StartAt,
&pomdoroFromDB.FinishAt, &pomdoroFromDB.SecondsDuration)
require.NoError(t, err)
require.Equal(t, pomodoro.ID, pomdoroFromDB.ID)
require.WithinDuration(t, pomodoro.StartAt, pomdoroFromDB.StartAt, time.Second)
require.WithinDuration(t, pomodoro.FinishAt, pomdoroFromDB.FinishAt, time.Second)
require.Equal(t, pomodoro.SecondsDuration, pomdoroFromDB.SecondsDuration)
clearTable()
}
func TestStorage_UpdatePomodoro(t *testing.T) {
pomodoro := &Pomodoro{
ID: 100,
StartAt: time.Now(),
FinishAt: time.Now(),
}
err := s.CreatePomodoro(pomodoro)
require.NoError(t, err)
pomodoro.FinishAt = time.Now().Add(60 * time.Second)
pomodoro.SecondsDuration = 60
err = s.UpdatePomodoro(pomodoro)
require.NoError(t, err)
var pomodoroFromDB Pomodoro
err = s.DB.QueryRow(`SELECT * FROM pomodoros;`).Scan(&pomodoroFromDB.ID, &pomodoroFromDB.StartAt,
&pomodoroFromDB.FinishAt, &pomodoroFromDB.SecondsDuration)
require.NoError(t, err)
require.Equal(t, pomodoro.ID, pomodoroFromDB.ID)
require.WithinDuration(t, pomodoro.StartAt, pomodoroFromDB.StartAt, time.Second)
require.WithinDuration(t, pomodoro.FinishAt, pomodoroFromDB.FinishAt, time.Second)
require.Equal(t, pomodoro.SecondsDuration, pomodoroFromDB.SecondsDuration)
clearTable()
}
func TestStorage_FetchPomodoros(t *testing.T) {
const n = 100
for i := range n {
pomodoro := &Pomodoro{
ID: i,
StartAt: time.Now(),
}
err := s.CreatePomodoro(pomodoro)
require.NoError(t, err)
}
pomodoros, err := s.fetchPomodoros(`SELECT * FROM pomodoros;`)
require.NoError(t, err)
require.Len(t, pomodoros, n)
clearTable()
}
func TestStorage_GetPomodoros(t *testing.T) {
const n = 100
for i := range n {
pomodoro := &Pomodoro{
ID: i,
StartAt: time.Now(),
}
err := s.CreatePomodoro(pomodoro)
require.NoError(t, err)
}
const expectedLen = 100
pomodoros, err := s.GetPomodoros()
require.NoError(t, err)
require.Len(t, pomodoros, expectedLen)
clearTable()
}
func TestStorage_GetTodayPomodoros(t *testing.T) {
const n = 100
for i := range n {
pomodoro := &Pomodoro{
ID: i,
StartAt: randomTimestamp(),
}
err := s.CreatePomodoro(pomodoro)
require.NoError(t, err)
}
pomodoros, err := s.GetTodayPomodoros()
require.NoError(t, err)
for _, pomodoro := range pomodoros {
assert.Equal(t, time.Now().Day(), pomodoro.StartAt.Day())
}
clearTable()
}
func TestStorage_CreateTask(t *testing.T) {
expectedTasks := []*Task{
{
ID: 100,
Name: "1",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "2",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "3",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "3",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "4",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "5",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
}
for _, task := range expectedTasks {
err := s.CreateTask(task)
require.NoError(t, err)
require.NotEqualf(t, 100, task.ID, "autoincrement not working")
}
rows, err := s.DB.Query(`SELECT * FROM tasks;`)
require.NoError(t, err)
defer rows.Close()
var taskInDB []*Task
for rows.Next() {
var task Task
err = rows.Scan(&task.ID, &task.Name, &task.PomodorosRequired, &task.PomodorosCompleted,
&task.IsComplete, &task.IsActive, &task.CreateAt)
require.NoError(t, err)
taskInDB = append(taskInDB, &task)
}
require.NoError(t, rows.Err())
sort.Slice(taskInDB, func(i, j int) bool {
return taskInDB[i].Name < taskInDB[j].Name
})
assert.Equal(t, len(expectedTasks), len(taskInDB))
for i := range taskInDB {
assert.Equal(t, expectedTasks[i].ID, taskInDB[i].ID)
assert.Equal(t, expectedTasks[i].Name, taskInDB[i].Name)
assert.Equal(t, expectedTasks[i].PomodorosRequired, taskInDB[i].PomodorosRequired)
assert.Equal(t, expectedTasks[i].PomodorosCompleted, taskInDB[i].PomodorosCompleted)
}
clearTable()
}
func TestStorage_Tasks(t *testing.T) {
expectedTasks := []*Task{
{
ID: 100,
Name: "1",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "2",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "3",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "3",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "4",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
{
ID: 100,
Name: "5",
PomodorosRequired: 5,
PomodorosCompleted: 0,
IsActive: false,
IsComplete: false,
CreateAt: time.Now(),
},
}
for _, task := range expectedTasks {
err := s.CreateTask(task)
require.NoError(t, err)
require.NotEqualf(t, 100, task.ID, "autoincrement not working")
}
taskInDB, err := s.Tasks()
require.NoError(t, err)
sort.Slice(taskInDB, func(i, j int) bool {
return taskInDB[i].Name < taskInDB[j].Name
})
assert.Equal(t, len(expectedTasks), len(taskInDB))
for i := range taskInDB {
assert.Equal(t, expectedTasks[i].ID, taskInDB[i].ID)
assert.Equal(t, expectedTasks[i].Name, taskInDB[i].Name)
assert.Equal(t, expectedTasks[i].PomodorosRequired, taskInDB[i].PomodorosRequired)
assert.Equal(t, expectedTasks[i].PomodorosCompleted, taskInDB[i].PomodorosCompleted)
}
clearTable()
}
func randomTimestamp() time.Time {
now := time.Now()
minSeconds := int64(2 * 24 * 60 * 60) // 2 дня
maxSeconds := int64(3 * 24 * 60 * 60) // 3 дня
randomSeconds := rand.Int63n(maxSeconds-minSeconds) + minSeconds
randomTime := now.Add(time.Duration(randomSeconds) * time.Second)
return randomTime
}
func clearTable() {
s.DB.Exec(`DELETE FROM pomodoros;`)
s.DB.Exec(`DELETE FROM TASKS`)
}