-
Notifications
You must be signed in to change notification settings - Fork 60
/
collection_test.go
188 lines (137 loc) · 4.63 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
package mgm_test
import (
"testing"
"github.com/kamva/mgm/v3"
"github.com/kamva/mgm/v3/builder"
"github.com/kamva/mgm/v3/internal/util"
"github.com/kamva/mgm/v3/operator"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
)
func TestFindByIdWithInvalidId(t *testing.T) {
setupDefConnection()
resetCollection()
seed()
require.NotNil(t, mgm.Coll(&Doc{}).FindByID("invalid id", &Doc{}))
}
func TestFindFirst(t *testing.T) {
setupDefConnection()
resetCollection()
seed()
d := &Doc{}
util.AssertErrIsNil(t, mgm.Coll(&Doc{}).First(bson.M{}, d))
require.NotEqual(t, primitive.ObjectID{}, d.ID)
}
func TestCollection_Create(t *testing.T) {
setupDefConnection()
resetCollection()
doc := NewDoc("Ali", 24)
util.AssertErrIsNil(t, mgm.Coll(doc).Create(doc))
// Inserted model's id should not be nil:
require.NotNil(t, doc.ID, "Expected document having id after insertion, got nil")
// We should have one document in database that is equal to this doc:
foundDoc := &Doc{}
util.AssertErrIsNil(t, mgm.Coll(doc).FindByID(doc.ID, foundDoc))
require.Equal(t, doc.Name, foundDoc.Name, "expected inserted and retrieved docs be equal, got %v and %v", doc.Name, foundDoc.Name)
require.Equal(t, doc.Age, foundDoc.Age, "expected inserted and retrieved docs be equal, got %v and %v", doc.Age, foundDoc.Age)
}
func TestCollection_Update(t *testing.T) {
setupDefConnection()
resetCollection()
seed()
found := findDoc(t)
found.Name = found.Name + "_extra_val"
found.Age = found.Age + 4
util.AssertErrIsNil(t, mgm.Coll(found).Update(found))
// Find that doc again:
newFound := findDoc(t)
if found.ID != newFound.ID {
panic("two fond document dont have same id!")
}
require.Equal(t, found.Name, newFound.Name)
require.Equal(t, found.Age, newFound.Age)
}
func TestCollection_Delete(t *testing.T) {
setupDefConnection()
resetCollection()
seed()
found := findDoc(t)
util.AssertErrIsNil(t, mgm.Coll(found).Delete(found))
// Find that doc again:
newFound := findDoc(t)
require.NotEqual(t, found.ID, newFound.ID)
}
func TestCollection_SimpleFind(t *testing.T) {
setupDefConnection()
resetCollection()
seed()
expectedResult := []Doc{}
gotResult := []Doc{}
filter := bson.M{"age": bson.M{operator.Gt: 24}}
err := mgm.Coll(&Doc{}).SimpleFind(&gotResult, filter)
util.AssertErrIsNil(t, err)
// Create same aggregation by raw methods
cur, err := mgm.Coll(&Doc{}).Find(mgm.Ctx(), filter)
util.AssertErrIsNil(t, err)
util.AssertErrIsNil(t, cur.All(mgm.Ctx(), &expectedResult))
require.Equal(t, len(expectedResult), len(gotResult))
// We should have same documents
for i, expectedDoc := range expectedResult {
if expectedDoc != gotResult[i] {
t.Errorf("Expected %v, got %v", expectedDoc, gotResult[i])
}
}
}
func TestCollection_SimpleAggregateFirst(t *testing.T) {
setupDefConnection()
resetCollection()
seed()
expectedResult := []Doc{}
gotResult := Doc{}
// We dont want to change document.
group := builder.Group("$_id", nil)
found, err := mgm.Coll(&Doc{}).SimpleAggregateFirst(&gotResult, []interface{}{group})
assert.True(t, found)
util.AssertErrIsNil(t, err)
// Create same aggregation by raw methods
cur, err := mgm.Coll(&Doc{}).Aggregate(mgm.Ctx(), bson.A{builder.S(group)}, nil)
util.AssertErrIsNil(t, err)
util.AssertErrIsNil(t, cur.All(mgm.Ctx(), &expectedResult))
assert.Equal(t, expectedResult[0], gotResult)
}
func TestCollection_SimpleAggregateFirstFalse(t *testing.T) {
setupDefConnection()
resetCollection()
seed()
var gotResult *Doc
match := bson.M{operator.Match: bson.M{"user_id": "unknown"}}
found, err := mgm.Coll(&Doc{}).SimpleAggregateFirst(gotResult, []interface{}{match})
assert.False(t, found)
util.AssertErrIsNil(t, err)
assert.Nil(t, gotResult)
}
func TestCollection_SimpleAggregate(t *testing.T) {
setupDefConnection()
resetCollection()
seed()
expectedResult := []Doc{}
gotResult := []Doc{}
// We dont want to change document.
group := builder.Group("$_id", nil)
project := bson.M{operator.Project: bson.M{"age": 0}}
err := mgm.Coll(&Doc{}).SimpleAggregate(&gotResult, []interface{}{group, project})
util.AssertErrIsNil(t, err)
// Create same aggregation by raw methods
cur, err := mgm.Coll(&Doc{}).Aggregate(mgm.Ctx(), bson.A{builder.S(group), project}, nil)
util.AssertErrIsNil(t, err)
util.AssertErrIsNil(t, cur.All(mgm.Ctx(), &expectedResult))
require.Equal(t, len(expectedResult), len(gotResult))
// We should have same documents
for i, expectedDoc := range expectedResult {
if expectedDoc != gotResult[i] {
t.Errorf("Expected %v, got %v", expectedDoc, gotResult[i])
}
}
}