-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcollection_test.go
445 lines (388 loc) · 12.9 KB
/
collection_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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
// Copyright 2015 Alex Browne. All rights reserved.
// Use of this source code is governed by the MIT
// license, which can be found in the LICENSE file.
// File model_type_test.go contains unit tests for the
// code in model_type.go
package zoom
import (
"reflect"
"testing"
)
// collectionTestModel is a model type that is only used for testing
// the NewCollection and NewCollectionWithOptions functions
type collectionTestModel struct {
Int int
Bool bool
String string
RandomID
}
func TestNewCollection(t *testing.T) {
testingSetUp()
defer testingTearDown()
col, err := testPool.NewCollection(&collectionTestModel{})
if err != nil {
t.Fatalf("Unexpected error in NewCollection: %s", err.Error())
}
expectedName := "collectionTestModel"
expectedType := reflect.TypeOf(&collectionTestModel{})
testRegisteredCollectionType(t, col, expectedName, expectedType)
// Effectively unregister the type by removing it from the map
delete(testPool.modelNameToSpec, col.Name())
delete(testPool.modelTypeToSpec, col.spec.typ)
}
func TestNewCollectionWithName(t *testing.T) {
testingSetUp()
defer testingTearDown()
expectedName := "customName"
options := DefaultCollectionOptions.WithName(expectedName)
col, err := testPool.NewCollectionWithOptions(&collectionTestModel{}, options)
if err != nil {
t.Fatalf("Unexpected error in NewCollectionWithOptions: %s", err.Error())
}
expectedType := reflect.TypeOf(&collectionTestModel{})
testRegisteredCollectionType(t, col, expectedName, expectedType)
// Effectively unregister the type by removing it from the map
delete(testPool.modelNameToSpec, col.Name())
delete(testPool.modelTypeToSpec, col.spec.typ)
}
func testRegisteredCollectionType(t *testing.T, collection *Collection, expectedName string, expectedType reflect.Type) {
// Check that the name and type are correct
if collection.Name() != expectedName {
t.Errorf("Registered name was incorrect. Expected %s but got %s", expectedName, collection.Name())
}
if collection.spec.typ == nil {
t.Fatalf("Registered model spec had nil type")
}
if collection.spec.typ != expectedType {
t.Errorf("Registered type was incorrect. Expected %s but got %s", expectedType.String(), collection.spec.typ.String())
}
// Check that the model type was added to the appropriate maps
if !testPool.nameIsRegistered(expectedName) {
t.Error("Registered spec was not added to the modelNameToSpec map")
}
if !testPool.typeIsRegistered(expectedType) {
t.Error("Registered spec was not added to the modelTypeToSpec map")
}
// Check the underlying spec
spec := collection.spec
if len(spec.fields) != 3 {
t.Errorf("Expected spec to have 3 fields but got %d", len(spec.fields))
}
expectedFields := map[string]*fieldSpec{
"Int": &fieldSpec{
kind: primativeField,
name: "Int",
redisName: "Int",
typ: reflect.TypeOf(1),
indexKind: noIndex,
},
"Bool": &fieldSpec{
kind: primativeField,
name: "Bool",
redisName: "Bool",
typ: reflect.TypeOf(true),
indexKind: noIndex,
},
"String": &fieldSpec{
kind: primativeField,
name: "String",
redisName: "String",
typ: reflect.TypeOf(""),
indexKind: noIndex,
},
}
for _, expectedField := range expectedFields {
gotField, found := spec.fieldsByName[expectedField.name]
if !found {
t.Errorf("Expected field with name %s but it was not in spec", expectedField.name)
}
if !reflect.DeepEqual(expectedField, gotField) {
t.Errorf("Field with name %s was incorrect. Expected %+v but got %+v", expectedField.name, expectedField, gotField)
}
}
}
func TestSave(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Create and save a test model
model := createTestModels(1)[0]
if err := testModels.Save(model); err != nil {
t.Errorf("Unexpected error in testModels.Save: %s", err.Error())
}
// Make sure the model was saved correctly
expectModelExists(t, testModels, model)
key := testModels.ModelKey(model.ModelID())
mu := testModels.spec.fallback
expectFieldEquals(t, key, "Int", mu, model.Int)
expectFieldEquals(t, key, "String", mu, model.String)
expectFieldEquals(t, key, "Bool", mu, model.Bool)
}
func TestSaveFields(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Save the Int and Bool fields, leaving the String field empty.
model := &testModel{
Int: 43,
Bool: true,
}
if err := testModels.SaveFields([]string{"Int", "Bool"}, model); err != nil {
t.Errorf("Unexpected error in testModels.SaveFields: %s", err.Error())
}
// Make sure the model was saved correctly
expectModelExists(t, testModels, model)
key := testModels.ModelKey(model.ModelID())
mu := testModels.spec.fallback
expectFieldEquals(t, key, "Int", mu, model.Int)
expectFieldEquals(t, key, "String", mu, nil)
expectFieldEquals(t, key, "Bool", mu, model.Bool)
// Make sure the model can be found.
gotModel := &testModel{}
if err := testModels.Find(model.ID, gotModel); err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(model, gotModel) {
t.Errorf("Expected: %+v\nBut got: %+v", model, gotModel)
}
}
func TestSaveFieldsOverwrite(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Create and save a test model
model := createTestModels(1)[0]
if err := testModels.Save(model); err != nil {
t.Errorf("Unexpected error in testModels.Save: %s", err.Error())
}
// Update the Int and Bool fields, but keep track of the original String for
// comparison.
model.Int = model.Int + 1
originalString := model.String
model.String = "new" + model.String
model.Bool = !model.Bool
if err := testModels.SaveFields([]string{"Int", "Bool"}, model); err != nil {
t.Errorf("Unexpected error in testModels.SaveFields: %s", err.Error())
}
// Make sure the model was saved correctly
expectModelExists(t, testModels, model)
key := testModels.ModelKey(model.ModelID())
mu := testModels.spec.fallback
expectFieldEquals(t, key, "Int", mu, model.Int)
expectFieldEquals(t, key, "String", mu, originalString)
expectFieldEquals(t, key, "Bool", mu, model.Bool)
}
func TestFind(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Create and save some test models
models, err := createAndSaveTestModels(1)
if err != nil {
t.Errorf("Unexpected error saving test models: %s", err.Error())
}
model := models[0]
// Find the model in the database and store it in modelCopy
modelCopy := &testModel{}
if err := testModels.Find(model.ModelID(), modelCopy); err != nil {
t.Errorf("Unexpected error in testModels.Find: %s", err.Error())
}
if !reflect.DeepEqual(model, modelCopy) {
t.Errorf("Found model was incorrect.\n\tExpected: %+v\n\tBut got: %+v", model, modelCopy)
}
}
func TestFindEmpty(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Create model which is empty (no fields with values)
model := &testModel{}
if err := testModels.Save(model); err != nil {
t.Fatal(err)
}
// Find the model in the database and store it in modelCopy
modelCopy := &testModel{}
if err := testModels.Find(model.ModelID(), modelCopy); err != nil {
t.Errorf("Unexpected error in testModels.Find: %s", err.Error())
}
if !reflect.DeepEqual(model, modelCopy) {
t.Errorf("Found model was incorrect.\n\tExpected: %+v\n\tBut got: %+v", model, modelCopy)
}
}
func TestFindFields(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Create and save some test models
models, err := createAndSaveTestModels(1)
if err != nil {
t.Errorf("Unexpected error saving test models: %s", err.Error())
}
model := models[0]
// Find only certain fields for the model in the database and store it in
// modelCopy
modelCopy := &testModel{}
if err := testModels.FindFields(model.ModelID(), []string{"Int", "Bool"}, modelCopy); err != nil {
t.Errorf("Unexpected error in testModels.FindFields: %s", err.Error())
}
// Since we did not specify the String field in FindFields, we expect it to
// be an empty string.
expectedModel := *model
expectedModel.String = ""
if !reflect.DeepEqual(&expectedModel, modelCopy) {
t.Errorf("Found model was incorrect.\n\tExpected: %+v\n\tBut got: %+v", expectedModel, modelCopy)
}
}
func TestFindModelNotFound(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Try to find a model with an id that doesn't exist and check the error.
if err := testModels.Find("fake-id", &testModel{}); err == nil {
t.Errorf("Expected error in testModels.Find but got none")
} else if _, ok := err.(ModelNotFoundError); !ok {
t.Errorf("Expected error to be a ModelNotFoundError but got: %T: %s", err, err.Error())
}
}
func TestFindAll(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Create and save some test models
models, err := createAndSaveTestModels(5)
if err != nil {
t.Errorf("Unexpected error saving test models: %s", err.Error())
}
// Use MFind to find four of the models in the database and store them in
// modelsCopy
modelsCopy := []*testModel{}
ids := []string{}
for _, model := range models[1:] {
ids = append(ids, model.ModelID())
}
if err := testModels.FindAll(&modelsCopy); err != nil {
t.Errorf("Unexpected error in testModels.FindAll: %s", err.Error())
}
// Check the models in modelsCopy
if len(modelsCopy) != len(models) {
t.Errorf("modelsCopy was the wrong length. Expected %d but got %d", len(models), len(modelsCopy))
}
modelsByID := map[string]*testModel{}
for _, model := range models {
modelsByID[model.ModelID()] = model
}
for i, modelCopy := range modelsCopy {
if modelCopy.ModelID() == "" {
t.Errorf("modelsCopy[%d].ModelID() is empty.", i)
continue
}
model, found := modelsByID[modelCopy.ModelID()]
if !found {
t.Errorf("modelsCopy[%d].ModelID() was invalid. Got %s but expected one of %v", i, modelCopy.ModelID(), ids)
continue
}
if !reflect.DeepEqual(model, modelCopy) {
t.Errorf("Found model was incorrect.\n\tExpected: %+v\n\tBut got: %+v", model, modelCopy)
}
}
}
func TestExists(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Expect exists to be false if we haven't saved any models
exists, err := testModels.Exists("invalidID")
if err != nil {
t.Errorf("Unexpected error in testModels.Exists: %s", err.Error())
}
if exists {
t.Errorf("Expected exists to be false, but got: %v", exists)
}
// Create and save a test model
models, err := createAndSaveTestModels(1)
if err != nil {
t.Errorf("Unexpected error saving test models: %s", err.Error())
}
model := models[0]
// Expect exists to be true
exists, err = testModels.Exists(model.ID)
if err != nil {
t.Errorf("Unexpected error in testModels.Exists: %s", err.Error())
}
if !exists {
t.Errorf("Expected exists to be true, but got: %v", exists)
}
}
func TestCount(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Expect count to be zero if we haven't saved any models
got, err := testModels.Count()
if err != nil {
t.Errorf("Unexpected error in testModels.Count: %s", err.Error())
}
if got != 0 {
t.Errorf("Expected Count to be 0 when no models existed but got %d", got)
}
// Create and save some test models
expected := 5
_, err = createAndSaveTestModels(expected)
if err != nil {
t.Errorf("Unexpected error saving test models: %s", err.Error())
}
// Expect count to be 5
got, err = testModels.Count()
if err != nil {
t.Errorf("Unexpected error in testModels.Count: %s", err.Error())
}
if got != expected {
t.Errorf("Expected Count to be %d but got %d", expected, got)
}
}
func TestDelete(t *testing.T) {
testingSetUp()
defer testingTearDown()
// Create and save a test model
models, err := createAndSaveTestModels(1)
if err != nil {
t.Errorf("Unexpected error saving test models: %s", err.Error())
}
model := models[0]
// Delete the model we just saved
deleted, err := testModels.Delete(model.ModelID())
if err != nil {
t.Errorf("Unexpected error in testModels.Delete: %s", err.Error())
}
if !deleted {
t.Errorf("Expected deleted to be true but got false")
}
// Make sure the model was deleted
expectModelDoesNotExist(t, testModels, model)
// A second call to Delete should return false
deleted, err = testModels.Delete(model.ModelID())
if err != nil {
t.Errorf("Unexpected error in testModels.Delete: %s", err.Error())
}
if deleted {
t.Errorf("Expected deleted to be false but got true")
}
}
func TestDeleteAll(t *testing.T) {
testingSetUp()
defer testingTearDown()
// The first time we call DeleteAll we expect count to be 0 because
// there are no models
count, err := testModels.DeleteAll()
if err != nil {
t.Errorf("Unexpected error in testModels.Delete: %s", err.Error())
}
if count != 0 {
t.Errorf("Expected count to be 0 but got %d", count)
}
// Create and save some test models
models, err := createAndSaveTestModels(5)
if err != nil {
t.Errorf("Unexpected error saving test models: %s", err.Error())
}
// Call DeleteAll again
count, err = testModels.DeleteAll()
if err != nil {
t.Errorf("Unexpected error in testModels.Delete: %s", err.Error())
}
if count != 5 {
t.Errorf("Expected count to be 5 but got %d", count)
}
// Make sure the models were deleted
expectModelsDoNotExist(t, testModels, Models(models))
}