2
2
3
3
const getTopRankedWhysForPoint = require ( '../get-top-ranked-whys-for-point' )
4
4
const Points = require ( '../../models/points' )
5
- const Rankings = require ( '../../models/rankings ' )
5
+ const Ranks = require ( '../../models/ranks ' )
6
6
const { Mongo } = require ( '@enciv/mongo-collections' )
7
7
const { MongoMemoryServer } = require ( 'mongodb-memory-server' )
8
8
const { ObjectId } = require ( 'mongodb' )
@@ -25,7 +25,7 @@ afterAll(async () => {
25
25
describe ( 'getTopRankedWhysForPoint' , ( ) => {
26
26
beforeEach ( async ( ) => {
27
27
await Points . deleteMany ( { } )
28
- await Rankings . deleteMany ( { } )
28
+ await Ranks . deleteMany ( { } )
29
29
} )
30
30
31
31
test ( 'user is not logged in' , async ( ) => {
@@ -66,7 +66,7 @@ describe('getTopRankedWhysForPoint', () => {
66
66
expect ( cb . mock . calls [ 0 ] [ 0 ] . length ) . toBe ( 1 )
67
67
} )
68
68
69
- test ( 'five whys for the point, different rankings , pageSize is 5' , async ( ) => {
69
+ test ( 'five whys for the point, different ranks , pageSize is 5' , async ( ) => {
70
70
const user = { id : USER1 }
71
71
const cb = jest . fn ( )
72
72
const whys = Array . from ( { length : 5 } , ( _ , i ) => ( {
@@ -80,23 +80,27 @@ describe('getTopRankedWhysForPoint', () => {
80
80
} ) )
81
81
await Points . insertMany ( whys )
82
82
83
- const rankings = [ ]
83
+ const ranks = [ ]
84
84
whys . forEach ( why => {
85
85
for ( let j = 0 ; j < Math . floor ( Math . random ( ) * 10 ) ; j ++ ) {
86
- rankings . push ( {
86
+ ranks . push ( {
87
87
_id : new ObjectId ( ) ,
88
88
parentId : why . _id . toString ( ) ,
89
89
userId : USER1 ,
90
+ round : why . round ,
91
+ stage : 'pre' ,
92
+ category : why . category ,
93
+ discussionId : 'discussion-1' ,
90
94
} )
91
95
}
92
96
} )
93
- await Rankings . insertMany ( rankings )
97
+ await Ranks . insertMany ( ranks )
94
98
await getTopRankedWhysForPoint . call ( { synuser : user } , POINT1 , 'most' , 0 , 5 , cb )
95
99
expect ( cb ) . toHaveBeenCalledWith ( expect . any ( Array ) )
96
100
expect ( cb . mock . calls [ 0 ] [ 0 ] . length ) . toBe ( 5 )
97
101
} )
98
102
99
- test ( 'eleven whys for the point, different rankings , pageSize is 5' , async ( ) => {
103
+ test ( 'eleven whys for the point, different ranks , pageSize is 5' , async ( ) => {
100
104
const user = { id : USER1 }
101
105
const cb = jest . fn ( )
102
106
const whys = Array . from ( { length : 11 } , ( _ , i ) => ( {
@@ -110,23 +114,27 @@ describe('getTopRankedWhysForPoint', () => {
110
114
} ) )
111
115
await Points . insertMany ( whys )
112
116
113
- const rankings = [ ]
117
+ const ranks = [ ]
114
118
whys . forEach ( why => {
115
119
for ( let j = 0 ; j < Math . floor ( Math . random ( ) * 10 ) ; j ++ ) {
116
- rankings . push ( {
120
+ ranks . push ( {
117
121
_id : new ObjectId ( ) ,
118
122
parentId : why . _id . toString ( ) ,
119
123
userId : USER1 ,
124
+ round : why . round ,
125
+ stage : 'pre' ,
126
+ category : why . category ,
127
+ discussionId : 'discussion-1' ,
120
128
} )
121
129
}
122
130
} )
123
- await Rankings . insertMany ( rankings )
131
+ await Ranks . insertMany ( ranks )
124
132
await getTopRankedWhysForPoint . call ( { synuser : user } , POINT1 , 'most' , 0 , 5 , cb )
125
133
expect ( cb ) . toHaveBeenCalledWith ( expect . any ( Array ) )
126
134
expect ( cb . mock . calls [ 0 ] [ 0 ] . length ) . toBe ( 5 )
127
135
} )
128
136
129
- test ( 'eleven whys for the point, different rankings , start is 5, pageSize is 5' , async ( ) => {
137
+ test ( 'eleven whys for the point, different ranks , start is 5, pageSize is 5' , async ( ) => {
130
138
const user = { id : USER1 }
131
139
const cb = jest . fn ( )
132
140
const whys = Array . from ( { length : 11 } , ( _ , i ) => ( {
@@ -140,23 +148,27 @@ describe('getTopRankedWhysForPoint', () => {
140
148
} ) )
141
149
await Points . insertMany ( whys )
142
150
143
- const rankings = [ ]
151
+ const ranks = [ ]
144
152
whys . forEach ( why => {
145
153
for ( let j = 0 ; j < Math . floor ( Math . random ( ) * 10 ) ; j ++ ) {
146
- rankings . push ( {
154
+ ranks . push ( {
147
155
_id : new ObjectId ( ) ,
148
156
parentId : why . _id . toString ( ) ,
149
157
userId : USER1 ,
158
+ round : why . round ,
159
+ stage : 'pre' ,
160
+ category : why . category ,
161
+ discussionId : 'discussion-1' ,
150
162
} )
151
163
}
152
164
} )
153
- await Rankings . insertMany ( rankings )
165
+ await Ranks . insertMany ( ranks )
154
166
await getTopRankedWhysForPoint . call ( { synuser : user } , POINT1 , 'most' , 5 , 5 , cb )
155
167
expect ( cb ) . toHaveBeenCalledWith ( expect . any ( Array ) )
156
168
expect ( cb . mock . calls [ 0 ] [ 0 ] . length ) . toBe ( 5 )
157
169
} )
158
170
159
- test ( 'eleven whys for the point, different rankings , start is 10, pageSize is 5' , async ( ) => {
171
+ test ( 'eleven whys for the point, different ranks , start is 10, pageSize is 5' , async ( ) => {
160
172
const user = { id : USER1 }
161
173
const cb = jest . fn ( )
162
174
const whys = Array . from ( { length : 11 } , ( _ , i ) => ( {
@@ -170,23 +182,27 @@ describe('getTopRankedWhysForPoint', () => {
170
182
} ) )
171
183
await Points . insertMany ( whys )
172
184
173
- const rankings = [ ]
185
+ const ranks = [ ]
174
186
whys . forEach ( why => {
175
187
for ( let j = 0 ; j < Math . floor ( Math . random ( ) * 10 ) ; j ++ ) {
176
- rankings . push ( {
188
+ ranks . push ( {
177
189
_id : new ObjectId ( ) ,
178
190
parentId : why . _id . toString ( ) ,
179
191
userId : USER1 ,
192
+ round : why . round ,
193
+ stage : 'pre' ,
194
+ category : why . category ,
195
+ discussionId : 'discussion-1' ,
180
196
} )
181
197
}
182
198
} )
183
- await Rankings . insertMany ( rankings )
199
+ await Ranks . insertMany ( ranks )
184
200
await getTopRankedWhysForPoint . call ( { synuser : user } , POINT1 , 'most' , 10 , 5 , cb )
185
201
expect ( cb ) . toHaveBeenCalledWith ( expect . any ( Array ) )
186
202
expect ( cb . mock . calls [ 0 ] [ 0 ] . length ) . toBe ( 1 ) // Only 1 why should be returned
187
203
} )
188
204
189
- test ( 'eleven whys for the point, different rankings , start is 15, pageSize is 5' , async ( ) => {
205
+ test ( 'eleven whys for the point, different ranks , start is 15, pageSize is 5' , async ( ) => {
190
206
const user = { id : USER1 }
191
207
const cb = jest . fn ( )
192
208
const whys = Array . from ( { length : 11 } , ( _ , i ) => ( {
@@ -200,17 +216,21 @@ describe('getTopRankedWhysForPoint', () => {
200
216
} ) )
201
217
await Points . insertMany ( whys )
202
218
203
- const rankings = [ ]
219
+ const ranks = [ ]
204
220
whys . forEach ( why => {
205
221
for ( let j = 0 ; j < Math . floor ( Math . random ( ) * 10 ) ; j ++ ) {
206
- rankings . push ( {
222
+ ranks . push ( {
207
223
_id : new ObjectId ( ) ,
208
224
parentId : why . _id . toString ( ) ,
209
225
userId : USER1 ,
226
+ round : why . round ,
227
+ stage : 'pre' ,
228
+ category : why . category ,
229
+ discussionId : 'discussion-1' ,
210
230
} )
211
231
}
212
232
} )
213
- await Rankings . insertMany ( rankings )
233
+ await Ranks . insertMany ( ranks )
214
234
await getTopRankedWhysForPoint . call ( { synuser : user } , POINT1 , 'most' , 15 , 5 , cb )
215
235
expect ( cb ) . toHaveBeenCalledWith ( [ ] ) // No whys should be returned
216
236
} )
0 commit comments