-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrud_operations_test.go
233 lines (206 loc) · 6.57 KB
/
crud_operations_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
package mgostore
import (
"os"
"testing"
"gopkg.in/mgo.v2/bson"
"github.com/stretchr/testify/assert"
)
/*
These are functional tests and requite that you have an instance of
mongodb locally with the db test
golang's tests run linearly and since its a compiled language, have longer tests with each testing
more functionalities.
*/
func TestCreate(t *testing.T) {
m := &mockModel{}
t.Log("When no connection can be established")
setTestEnvVars()
os.Setenv("MONGODB_SERVERS", "invalid_server")
err := Create(m)
assert.Equal(t,
"no reachable servers",
err.Error(),
"Expected not reachable servers error")
setTestEnvVars()
t.Log("When connection can be established")
m.EncryptedField1 = "crypto text"
m.PlainTextField = "plain text"
err = Create(m)
t.Log(err)
tc := testMongoCollection()
// Make sure to drop the entire collection after the test is run
defer tc.DropCollection()
assert.Equal(t, nil, err, "Expected no error")
assert.NotEqual(t, nil, m.ID, "Expected object Id to be generated")
assert.Equal(t, "crypto text", m.EncryptedField1, "Expected encrypted field to be plain text")
assert.Equal(t, "plain text", m.PlainTextField, "Expected plain text field")
err = tc.FindId(m.ID).One(m)
assert.Equal(t, nil, err, "Expected record to be saved")
assert.NotEqual(t, "crypto text", m.EncryptedField1, "Expected field to be encrypted in the DB")
}
func TestDelete(t *testing.T) {
id := bson.NewObjectId()
m := &mockModel{ID: id}
t.Log("When no connection can be established")
setTestEnvVars()
os.Setenv("MONGODB_TIMEOUT", "30000")
os.Setenv("MONGODB_SERVERS", "invalid_server")
err := Destroy(m)
assert.Equal(t,
"no reachable servers",
err.Error(),
"Expected not reachable servers error")
setTestEnvVars()
t.Log("When connection can be established")
tc := testMongoCollection()
// Make sure to drop the entire collection after the test is run
defer tc.DropCollection()
t.Log("When record does not exist")
err = Destroy(m)
assert.Equal(t, string("not found"), err.Error(), "Not found error expected")
t.Log("When record exists")
tc.Insert(m)
err = Destroy(m)
assert.Nil(t, err)
err = tc.FindId(id).One(m)
assert.Equal(t, ErrRecordNotFound, err, "Expected not found error")
}
func TestUpdate(t *testing.T) {
id := bson.NewObjectId()
m := &mockModel{ID: id}
t.Log("When no connection can be established")
setTestEnvVars()
os.Setenv("MONGODB_TIMEOUT", "30000")
os.Setenv("MONGODB_SERVERS", "invalid_server")
err := Update(m)
assert.Equal(t,
"no reachable servers",
err.Error(),
"Expected not reachable servers error")
setTestEnvVars()
t.Log("When connection can be established")
tc := testMongoCollection()
// Make sure to drop the entire collection after the test is run
defer tc.DropCollection()
tc.Insert(m)
m.EncryptedField1 = "crypto text"
m.PlainTextField = "plain text"
err = Update(m)
assert.Equal(t, nil, err, "Expected no error")
assert.Equal(t,
"crypto text",
m.EncryptedField1,
"Expected encrypted field to be decrypted")
assert.Equal(t,
"plain text",
m.PlainTextField,
"Expected plain text field to be not encrypted")
tc.FindId(id).One(m)
assert.NotEqual(t,
"crypto text",
m.EncryptedField1,
"Expected encrypted field to be encrypted")
assert.Equal(t,
"plain text",
m.PlainTextField,
"Expected plain text field to be not encrypted")
}
func TestFind(t *testing.T) {
id := bson.NewObjectId()
m := &mockModel{ID: id}
t.Log("When no connection can be established")
setTestEnvVars()
os.Setenv("MONGODB_TIMEOUT", "30000")
os.Setenv("MONGODB_SERVERS", "invalid_server")
err := Find(m)
assert.Equal(t,
"no reachable servers",
err.Error(),
"Expected not reachable servers error")
setTestEnvVars()
t.Log("When connection can be established")
tc := testMongoCollection()
// Make sure to drop the entire collection after the test is run
defer tc.DropCollection()
t.Log("When record does not exist")
err = Find(m)
assert.Equal(t, ErrRecordNotFound, err, "Expected not found error")
t.Log("When record exists")
err = tc.Insert(m)
mNew := &mockModel{ID: id}
err = Find(mNew)
assert.Nil(t, err)
assert.Equal(t, id, mNew.ID, "Invalid record returned")
}
func TestFindBy(t *testing.T) {
m := &mockModel{}
t.Log("When no connection can be established")
setTestEnvVars()
os.Setenv("MONGODB_TIMEOUT", "30000")
os.Setenv("MONGODB_SERVERS", "invalid_server")
err := FindBy(bson.M{"_id": "someid"}, m)
assert.Equal(t,
"no reachable servers",
err.Error(),
"Expected not reachable servers error")
setTestEnvVars()
t.Log("When connection can be established")
tc := testMongoCollection()
// Make sure to drop the entire collection after the test is run
defer tc.DropCollection()
id := bson.NewObjectId()
m.ID = id
m.NumField = 42
t.Log("When record does not exist")
err = FindBy(bson.M{"num_field": 42}, m)
assert.Equal(t, ErrRecordNotFound, err, "Expected not found error")
t.Log("When record exists")
tc.Insert(m)
m = &mockModel{ID: id}
err = FindBy(bson.M{"num_field": 42}, m)
assert.Nil(t, err)
assert.Equal(t, id, m.ID, "Invalid record returned")
}
func TestFindMany(t *testing.T) {
var models mockModels
t.Log("When no connection can be established")
setTestEnvVars()
os.Setenv("MONGODB_TIMEOUT", "30000")
os.Setenv("MONGODB_SERVERS", "invalid_server")
err := FindMany(bson.M{"id": "someid"}, &models)
assert.Equal(t,
"no reachable servers",
err.Error(),
"Expected not reachable servers error")
setTestEnvVars()
t.Log("When connection can be established")
tc := testMongoCollection()
// Make sure to drop the entire collection after the test is run
defer tc.DropCollection()
var mIds []bson.ObjectId
for i := 0; i < 3; i++ {
m := &mockModel{NumField: 42, EncryptedField1: "encrypted text"}
generateModelID(m)
encryptFields(m)
tc.Insert(m)
mIds = append(mIds, m.ID)
}
err = FindMany(bson.M{"num_field": 42}, &models)
assert.Equal(t, nil, err, "No error expected")
for _, m := range models {
assert.Equal(t, 42, m.NumField, "ID field does not match")
assert.NotEqual(t, "encrypted text", m.EncryptedField1, "Field returned is not encrypted")
decryptFields(&m)
assert.Equal(t, "encrypted text", m.EncryptedField1, "Field is encrypted wrongly")
}
t.Log("When limit is passed and skip isnt")
err = FindMany(bson.M{"num_field": 42}, &models, -1, 1)
assert.Nil(t, err)
assert.Equal(t, 1, len(models), "Expected only one match")
assert.Equal(t, mIds[0], models[0].ID)
t.Log("When skip is passed and limit isnt")
err = FindMany(bson.M{"num_field": 42}, &models, 1)
assert.Equal(t, 2, len(models), "Expected only 2 matches")
assert.Equal(t, mIds[1], models[0].ID)
assert.Equal(t, mIds[2], models[1].ID)
}