forked from go-kivik/kivik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
updates_test.go
218 lines (202 loc) · 4.29 KB
/
updates_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
package kivik
import (
"context"
"errors"
"testing"
"github.com/flimzy/diff"
"github.com/flimzy/testy"
"github.com/go-kivik/kivik/driver"
"github.com/go-kivik/kivik/mock"
)
func TestDBUpdatesNext(t *testing.T) {
tests := []struct {
name string
updates *DBUpdates
expected bool
}{
{
name: "nothing more",
updates: &DBUpdates{
iter: &iter{closed: true},
},
expected: false,
},
{
name: "more",
updates: &DBUpdates{
iter: &iter{
feed: &mockIterator{
NextFunc: func(_ interface{}) error { return nil },
},
},
},
expected: true,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
result := test.updates.Next()
if result != test.expected {
t.Errorf("Unexpected result: %v", result)
}
})
}
}
func TestDBUpdatesClose(t *testing.T) {
expected := "close error"
u := &DBUpdates{
iter: &iter{
feed: &mockIterator{CloseFunc: func() error { return errors.New(expected) }},
},
}
err := u.Close()
testy.Error(t, expected, err)
}
func TestDBUpdatesErr(t *testing.T) {
expected := "foo error"
u := &DBUpdates{
iter: &iter{lasterr: errors.New(expected)},
}
err := u.Err()
testy.Error(t, expected, err)
}
func TestDBUpdatesIteratorNext(t *testing.T) {
expected := "foo error"
u := &updatesIterator{
DBUpdates: &mock.DBUpdates{
NextFunc: func(_ *driver.DBUpdate) error { return errors.New(expected) },
},
}
var i driver.DBUpdate
err := u.Next(&i)
testy.Error(t, expected, err)
}
func TestDBUpdatesIteratorNew(t *testing.T) {
u := newDBUpdates(context.Background(), &mock.DBUpdates{})
expected := &DBUpdates{
iter: &iter{
feed: &updatesIterator{
DBUpdates: &mock.DBUpdates{},
},
curVal: &driver.DBUpdate{},
},
updatesi: &mock.DBUpdates{},
}
u.cancel = nil // determinism
if d := diff.Interface(expected, u); d != nil {
t.Error(d)
}
}
func TestDBUpdateGetters(t *testing.T) {
dbname := "foo"
updateType := "chicken"
seq := "abc123"
u := &DBUpdates{
iter: &iter{
ready: true,
curVal: &driver.DBUpdate{
DBName: dbname,
Type: updateType,
Seq: seq,
},
},
}
t.Run("DBName", func(t *testing.T) {
result := u.DBName()
if result != dbname {
t.Errorf("Unexpected result: %s", result)
}
})
t.Run("Type", func(t *testing.T) {
result := u.Type()
if result != updateType {
t.Errorf("Unexpected result: %s", result)
}
})
t.Run("Seq", func(t *testing.T) {
result := u.Seq()
if result != seq {
t.Errorf("Unexpected result: %s", result)
}
})
t.Run("Not Ready", func(t *testing.T) {
u.ready = false
t.Run("DBName", func(t *testing.T) {
result := u.DBName()
if result != "" {
t.Errorf("Unexpected result: %s", result)
}
})
t.Run("Type", func(t *testing.T) {
result := u.Type()
if result != "" {
t.Errorf("Unexpected result: %s", result)
}
})
t.Run("Seq", func(t *testing.T) {
result := u.Seq()
if result != "" {
t.Errorf("Unexpected result: %s", result)
}
})
})
}
func TestDBUpdates(t *testing.T) {
tests := []struct {
name string
client *Client
expected *DBUpdates
status int
err string
}{
{
name: "non-DBUpdater",
client: &Client{
driverClient: &mock.Client{},
},
status: StatusNotImplemented,
err: "kivik: driver does not implement DBUpdater",
},
{
name: "db error",
client: &Client{
driverClient: &mock.DBUpdater{
DBUpdatesFunc: func(_ context.Context) (driver.DBUpdates, error) {
return nil, errors.New("db error")
},
},
},
status: StatusInternalServerError,
err: "db error",
},
{
name: "success",
client: &Client{
driverClient: &mock.DBUpdater{
DBUpdatesFunc: func(_ context.Context) (driver.DBUpdates, error) {
return &mock.DBUpdates{ID: "a"}, nil
},
},
},
expected: &DBUpdates{
iter: &iter{
feed: &updatesIterator{
DBUpdates: &mock.DBUpdates{ID: "a"},
},
curVal: &driver.DBUpdate{},
},
updatesi: &mock.DBUpdates{ID: "a"},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
result, err := test.client.DBUpdates(context.TODO())
testy.StatusError(t, test.err, test.status, err)
result.cancel = nil // Determinism
if d := diff.Interface(test.expected, result); d != nil {
t.Error(d)
}
})
}
}