-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase-mongodb.spec.ts
414 lines (316 loc) · 13.7 KB
/
database-mongodb.spec.ts
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
/**
* @secjs/database
*
* (c) João Lenon <lenon@secjs.com.br>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import '@secjs/env/src/utils/global'
import { Schema } from 'mongoose'
import { Database } from '../src/Database'
import { MongoMemoryReplSet } from 'mongodb-memory-server'
import { DatabaseContract } from '../src/Contracts/DatabaseContract'
describe('\n Database Mongo Class', () => {
let replset: MongoMemoryReplSet
let database: DatabaseContract = null
beforeAll(async () => {
replset = await MongoMemoryReplSet.create({
instanceOpts: [
{
port: 27017,
},
{
port: 27018,
},
{
port: 27019,
},
],
replSet: { name: 'rs', count: 3 },
})
process.env.DB_HOST = 'localhost:27017,localhost:27018,localhost:27019'
process.env.DB_DATABASE = 'secjs-database-testing'
process.env.DB_USERNAME = ''
process.env.DB_PASSWORD = ''
process.env.DB_FILENAME = ':memory:'
database = await new Database().connection('mongo').connect()
database.buildTable('products')
})
beforeEach(async () => {
database = await new Database().connection('mongo').connect()
database.buildTable('products')
})
it('should insert new products to the database', async () => {
const idOfProducts = await database.insert([{ name: 'iPhone 10' }, { name: 'iPhone 11' }, { name: 'iPhone 12' }])
expect(idOfProducts.length).toBe(3)
})
it('should get the product from database', async () => {
const [idIphone] = await database.insert({ name: 'iPhone 10' })
const iphone = await database.buildWhere('_id', idIphone).find()
expect(iphone.name).toBe('iPhone 10')
})
it('should get all the products from database', async () => {
await database.insert([{ name: 'iPhone 10' }, { name: 'iPhone 11' }, { name: 'iPhone 12' }])
const iphones = await database.findMany()
expect(iphones.length).toBe(3)
})
it('should get all the products from database paginated', async () => {
await database.insert([{ name: 'iPhone 10' }, { name: 'iPhone 11' }, { name: 'iPhone 12' }])
const paginatedResponse = await database.paginate(0, 2, '/products')
expect(paginatedResponse.data.length).toBe(2)
expect(paginatedResponse.meta.itemCount).toBe(2)
expect(paginatedResponse.meta.totalItems).toBe(3)
expect(paginatedResponse.meta.totalPages).toBe(2)
expect(paginatedResponse.meta.currentPage).toBe(0)
expect(paginatedResponse.meta.itemsPerPage).toBe(2)
expect(paginatedResponse.links.first).toBe('/products?limit=2')
expect(paginatedResponse.links.previous).toBe('/products?page=0&limit=2')
expect(paginatedResponse.links.next).toBe('/products?page=1&limit=2')
expect(paginatedResponse.links.last).toBe('/products?page=2&limit=2')
})
it('should get all the products paginated but without paginated response', async () => {
await database.insert([{ name: 'iPhone 10' }, { name: 'iPhone 11' }, { name: 'iPhone 12' }])
const data = await database.forPage(0, 2)
expect(data.length).toBe(2)
})
it('should update the product in database', async () => {
const [iphone] = await database.insertAndGet({ name: 'iPhone 10' })
const [iphoneUpdated] = await database.buildWhere('_id', iphone._id).updateAndGet('name', 'iPhone 11')
expect(iphoneUpdated.name).toBe('iPhone 11')
})
it('should delete the product in database', async () => {
const [iphone] = await database.insertAndGet({ name: 'iPhone 10' })
await database.buildWhere('_id', iphone._id).delete()
const deletedIphone = await database.buildWhere({ _id: iphone._id }).find()
expect(deletedIphone).toBeFalsy()
})
it('should be able to create and drop databases from different instances', async () => {
await database.createDatabase('new-database')
const newDb = await new Database().connection('mongo', { database: 'new-database' }).connect(true, false)
const [product] = await newDb.buildTable('products').insertAndGet({ name: 'Product' })
expect(product.name).toBe('Product')
await newDb.close()
await database.dropDatabase('new-database')
}, 10000)
it('should be able to join on other related tables', async () => {
const iphones = await database.insertAndGet([{ name: 'iPhone 10' }, { name: 'iPhone 11' }, { name: 'iPhone 12' }])
await Promise.all(
iphones.map(iphone =>
database.buildTable('product_details').insert({ detail: '64 GB', product: iphone, productId: iphone._id }),
),
)
await Promise.all(
iphones.map(iphone =>
database
.buildTable('product_details')
.insert({ detail: 'CPU ARM Arch', product: iphone, productId: iphone._id }),
),
)
const iphonesWithDetails = await database
.buildTable('products')
.buildJoin('product_details', 'products._id', 'product_details.productId')
.findMany()
expect(iphonesWithDetails.length).toBe(3)
expect(iphonesWithDetails[0].product_details[0].detail).toBe('64 GB')
})
it('should be able to change the database connection in runtime', async () => {
await database.connection('sqlite').connect()
await database.createTable('products', tableBuilder => {
tableBuilder.increments('id').primary()
tableBuilder.string('name').notNullable()
})
const macbooks = await database
.buildTable('products')
.insertAndGet([{ name: 'Macbook 2019' }, { name: 'Macbook 2020' }, { name: 'Macbook 2021' }])
expect(macbooks.length).toBe(3)
expect(macbooks[0].id).toBe(1)
expect(macbooks[0].name).toBe('Macbook 2019')
})
it('should be able to clone the database with the exactly query chain', async () => {
database.buildTable('products')
const clonedDatabase = await database.clone()
// This should insert in products table because of database.buildTable
const arrayOfIds = await clonedDatabase.insert({ name: 'AirPods 2' })
expect(arrayOfIds.length).toBe(1)
})
it('should be able to create database transactions and commit then', async () => {
const trx = await database.beginTransaction()
trx.buildTable('products')
const products = await trx.insertAndGet({ name: 'AirPods 3' })
expect(products.length).toBe(1)
await trx.commit()
const product = await database.buildWhere('id', products[0].id).find()
expect(product.id).toBe(products[0].id)
})
it('should be able to create database transactions and rollback then', async () => {
const trx = await database.beginTransaction()
const products = await trx.buildTable('products').insertAndGet({ name: 'AirPods 3' })
expect(products.length).toBe(1)
await trx.rollback()
const product = await database.buildTable('products').buildWhere('_id', products[0]._id).find()
expect(product).toBeFalsy()
// db.adminCommand( { setParameter: 1, maxTransactionLockRequestTimeoutMillis: 5000 })
// db.createUser({ user: 'root', pwd: 'root', roles: [{ role: 'userAdminAnyDatabase', db: 'admin' }] })
})
it('should be able to use pluck method, that returns the values of specific table column', async () => {
await database.buildTable('products').insert([{ name: 'Apple Watch Series 2' }, { name: 'Apple Watch Series 3' }])
const productsName = await database.pluck('name')
expect(productsName.length).toBe(2)
expect(productsName[0]).toBe('Apple Watch Series 2')
expect(productsName[1]).toBe('Apple Watch Series 3')
})
it('should be able to use raw method to make raw queries to database', async () => {
await database.buildTable('products').insert([{ name: 'Apple Watch Series 2' }, { name: 'Apple Watch Series 3' }])
const products = await database.raw('db.collection(??).find().toArray()', ['products'])
// Only for Mongoose
expect(products.command).toBe('find()')
expect(products.rowCount).toBe(2)
expect(products.rows.length).toBe(2)
expect(products.rows[0].name).toBe('Apple Watch Series 2')
})
it('should be able to count and count distinct the database data', async () => {
await database
.buildTable('products')
.insert([
{ name: null },
{ name: 'Apple Watch Series 2' },
{ name: 'Apple Watch Series 2' },
{ name: 'Apple Watch Series 3' },
])
const countAll = await database.count('*')
const countName = await database.count('name')
const countDistinct = await database.countDistinct('name')
expect(countAll).toBe(4)
expect(countName).toBe(3)
expect(countDistinct).toBe(2)
})
it('should be able to get the min and max values from some column', async () => {
await database.buildTable('products').insert([
{ name: 'iPhone 1', quantity: -40 },
{ name: 'iPhone 2', quantity: 10 },
{ name: 'iPhone 3', quantity: 20 },
{ name: 'iPhone 4', quantity: 30 },
{ name: 'iPhone 5', quantity: 40 },
])
const max = await database.max('quantity')
const min = await database.min('quantity')
expect(max).toBe(40)
expect(min).toBe(-40)
})
it('should be able to sum and sum distinct the database data', async () => {
await database.buildTable('products').insert([
{ name: 'iPhone 1', quantity: -40 },
{ name: 'iPhone 2', quantity: 10 },
{ name: 'iPhone 3', quantity: 20 },
{ name: 'iPhone 4', quantity: 30 },
{ name: 'iPhone 5', quantity: 40 },
{ name: 'iPhone 6', quantity: 40 },
])
const qtyTotal = await database.sum('quantity')
const qtyTotalDistinct = await database.sumDistinct('quantity')
expect(qtyTotal).toBe(100)
expect(qtyTotalDistinct).toBe(60)
})
it('should be able to get the avg and avg distinct from the database data', async () => {
await database.buildTable('products').insert([
{ name: 'iPhone 1', quantity: -40 },
{ name: 'iPhone 2', quantity: 10 },
{ name: 'iPhone 3', quantity: 20 },
{ name: 'iPhone 4', quantity: 30 },
{ name: 'iPhone 5', quantity: 40 },
{ name: 'iPhone 6', quantity: 40 },
])
const qtyAvg = await database.avg('quantity')
const qtyAvgDistinct = await database.avgDistinct('quantity')
expect(qtyAvg).toBe(16.666666666666668)
expect(qtyAvgDistinct).toBe(12)
})
it('should be able to increment and decrement values from database', async () => {
const ids = await database.buildTable('products').insert([
{ name: 'iPhone 1', quantity: -40 },
{ name: 'iPhone 2', quantity: 10 },
{ name: 'iPhone 3', quantity: 20 },
{ name: 'iPhone 4', quantity: 30 },
{ name: 'iPhone 5', quantity: 40 },
{ name: 'iPhone 6', quantity: 40 },
])
await database.buildWhere('_id', ids[1]).increment('quantity', 20)
await database.buildWhere('_id', ids[2]).decrement('quantity', 20)
const increment = await database.buildWhere('_id', ids[1]).find()
const decrement = await database.buildWhere('_id', ids[2]).find()
expect(increment.quantity).toBe(30)
expect(decrement.quantity).toBe(0)
})
it('should be able to get infos from some database column', async () => {
// WARN
// Mongo columnInfo just return default value for all columns because mongo collection is just a document
const columnInfo = await database.buildTable('products').columnInfo('name')
expect(columnInfo.defaultValue).toBe('null')
expect(columnInfo.type).toBe('any')
expect(columnInfo.maxLength).toBe('255')
expect(columnInfo.nullable).toBe(true)
})
it('should be able to get data ordered, grouped, with only specific fields selected and using having method', async () => {
await database.buildTable('products').insert([
{ name: 'iPhone 1', quantity: -40 },
{ name: 'iPhone 2', quantity: -30 },
{ name: 'iPhone 3', quantity: 10 },
{ name: 'iPhone 4', quantity: 20 },
{ name: 'iPhone 5', quantity: 30 },
{ name: 'iPhone 6', quantity: 40 },
{ name: 'iPhone 6', quantity: 40 },
{ name: 'iPhone 7', quantity: 50 },
{ name: 'iPhone 8', quantity: 60 },
])
const iphones = await database
.buildTable('products')
.buildSelect('name', 'quantity')
.buildGroupBy('name', 'quantity')
.buildOrderBy('quantity', 'desc')
.buildHaving('quantity', '<=', 40)
.findMany()
expect(iphones.length).toBe(6)
expect(iphones[0].name).toBe('iPhone 6')
expect(iphones[0].quantity).toBe(40)
expect(iphones[5].name).toBe('iPhone 1')
expect(iphones[5].quantity).toBe(-40)
})
it('should be able to set an schema in buildTable for MongoDriver', async () => {
const schema = new Schema({
name: String,
quantity: Number,
})
await database.buildTable({ name: 'Product', collection: 'products', schema }).insert([
{ name: 'iPhone 1', quantity: -40 },
{ name: 'iPhone 2', quantity: -30 },
{ name: 'iPhone 3', quantity: 10 },
{ name: 'iPhone 4', quantity: 20 },
{ name: 'iPhone 5', quantity: 30 },
{ name: 'iPhone 6', quantity: 40 },
{ name: 'iPhone 6', quantity: 40 },
{ name: 'iPhone 7', quantity: 50 },
{ name: 'iPhone 8', quantity: 60 },
])
const iphones = await database
.buildTable({ name: 'Product', schema })
.buildSelect('name', 'quantity')
.buildGroupBy('name', 'quantity')
.buildOrderBy('quantity', 'desc')
.buildHaving('quantity', '<=', 40)
.findMany()
expect(iphones.length).toBe(6)
expect(iphones[0].name).toBe('iPhone 6')
expect(iphones[0].quantity).toBe(40)
expect(iphones[5].name).toBe('iPhone 1')
expect(iphones[5].quantity).toBe(-40)
})
afterEach(async () => {
await database.dropTable('product_details')
await database.dropTable('products')
})
afterAll(async () => {
await Database.closeConnections('sqlite', 'mongo')
await replset.stop()
})
})