-
Notifications
You must be signed in to change notification settings - Fork 2
/
storage_test.go
170 lines (151 loc) · 3.78 KB
/
storage_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
/*
Copyright 2021 Adevinta
*/
package stream
import (
"context"
"errors"
"reflect"
"testing"
"time"
log "github.com/sirupsen/logrus"
)
var (
errMockInit = errors.New("errMockInit")
errMockSet = errors.New("errMockSet")
)
type mockRemoteDB struct {
getChecksF func(context.Context) ([]string, error)
setChecksF func(context.Context, []string) error
}
func (m mockRemoteDB) GetChecks(ctx context.Context) ([]string, error) {
return m.getChecksF(ctx)
}
func (m mockRemoteDB) SetChecks(ctx context.Context, checks []string) error {
return m.setChecksF(ctx, checks)
}
func TestGetAbortedChecks(t *testing.T) {
testCases := []struct {
name string
db mockRemoteDB
wantInitErr error
wantChecks []string
wantErr error
}{
{
name: "Happy path",
db: mockRemoteDB{
getChecksF: func(context.Context) ([]string, error) {
return []string{"check1", "check2"}, nil
},
},
wantChecks: []string{"check1", "check2"},
},
{
name: "Init error",
db: mockRemoteDB{
getChecksF: func(context.Context) ([]string, error) {
return []string{}, errMockInit
},
},
wantInitErr: errMockInit,
wantChecks: []string{},
},
}
ctx := context.Background()
log := log.New()
for _, tc := range testCases {
t.Run(tc.name, func(*testing.T) {
storage, err := NewStorage(tc.db, log)
if !errors.Is(err, tc.wantInitErr) {
t.Fatalf("expected init err to be: %v\nbut got: %v", tc.wantInitErr, err)
}
if err != nil {
return
}
checks, err := storage.GetAbortedChecks(ctx)
if !reflect.DeepEqual(checks, tc.wantChecks) {
t.Fatalf("expected checks to be:\n%v\nbut got:\n%v", tc.wantChecks, checks)
}
if !errors.Is(err, tc.wantErr) {
t.Fatalf("expected err to be: %v\nbut got: %v", tc.wantErr, err)
}
})
}
}
func TestAddAbortedChecks(t *testing.T) {
testCases := []struct {
name string
db mockRemoteDB
abortChecks []string
wantCache cache
wantErr error
}{
{
name: "Happy path",
db: mockRemoteDB{
setChecksF: func(ctx context.Context, checks []string) error {
return nil
},
},
abortChecks: []string{"checkID1", "checkID2"},
wantCache: []string{"checkID1", "checkID2"},
},
{
name: "Error on set",
db: mockRemoteDB{
setChecksF: func(ctx context.Context, checks []string) error {
return errMockSet
},
},
abortChecks: []string{"checkID1", "checkID2"},
wantCache: []string{},
wantErr: errMockSet,
},
}
ctx := context.Background()
log := log.New()
for _, tc := range testCases {
t.Run(tc.name, func(*testing.T) {
storage := storage{
db: tc.db,
cache: cache{},
log: log,
}
err := storage.AddAbortedChecks(ctx, tc.abortChecks)
if !errors.Is(err, tc.wantErr) {
t.Fatalf("expected err to be: %v\nbut got: %v", tc.wantErr, err)
}
if !reflect.DeepEqual(tc.wantCache, storage.cache) {
t.Fatalf("expected local cache to be:\n%v\nbut got:\n%v", tc.wantCache, storage.cache)
}
})
}
}
func TestConcurrentRW(t *testing.T) {
ctx := context.Background()
log := log.New()
db := mockRemoteDB{
setChecksF: func(ctx context.Context, checks []string) error {
time.Sleep(1 * time.Second) // mock locking time
return nil
},
}
abortChecks := []string{"checkID3"}
initialCache := []string{"checkID1", "checkID2"}
expectedCache := append(initialCache, abortChecks...)
storage := storage{
db: db,
cache: initialCache,
log: log,
}
go storage.AddAbortedChecks(ctx, abortChecks)
time.Sleep(50 * time.Millisecond) // wait for lock to be acquired
checks, err := storage.GetAbortedChecks(ctx)
if err != nil {
t.Fatalf("expected no error but got: %v", err)
}
if !reflect.DeepEqual(checks, expectedCache) {
t.Fatalf("expected checks to be:\n%v\nbut got:\n%v", expectedCache, checks)
}
}