mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-21 19:50:57 +00:00
[mongo-utils] create new home for batchedUpdate helper GitOrigin-RevId: 9f61c5e367a9f4cef63b5cc4c0bbbd3ef57c8ca8
108 lines
4 KiB
JavaScript
108 lines
4 KiB
JavaScript
import { spawnSync } from 'child_process'
|
|
import { expect } from 'chai'
|
|
import { db, ObjectId } from '../../../app/src/infrastructure/mongodb.js'
|
|
|
|
describe('BatchedUpdateTests', function () {
|
|
it('can handle non linear insert order', async function () {
|
|
await db.systemmessages.insertOne({
|
|
content: '1',
|
|
_id: new ObjectId('500000000000000000000000'),
|
|
})
|
|
await db.systemmessages.insertOne({
|
|
content: '2',
|
|
_id: new ObjectId('400000000000000000000000'),
|
|
})
|
|
await db.systemmessages.insertOne({
|
|
content: '3',
|
|
_id: new ObjectId('600000000000000000000000'),
|
|
})
|
|
await db.systemmessages.insertOne({
|
|
content: '4',
|
|
_id: new ObjectId('300000000000000000000000'),
|
|
})
|
|
|
|
spawnSync(process.argv0, [
|
|
'--input-type=module',
|
|
'-e',
|
|
'import { batchedUpdateWithResultHandling } from "@overleaf/mongo-utils/batchedUpdate.js"; import { db } from "./app/src/infrastructure/mongodb.js"; batchedUpdateWithResultHandling(db.systemmessages, { content: { $ne: "42" }}, { $set: { content: "42" } })',
|
|
])
|
|
|
|
await expect(
|
|
db.systemmessages.find({}).project({ content: 1, _id: 0 }).toArray()
|
|
).to.eventually.deep.equal([
|
|
{ content: '42' },
|
|
{ content: '42' },
|
|
{ content: '42' },
|
|
{ content: '42' },
|
|
])
|
|
})
|
|
|
|
it('can handle ids sitting on the edge', async function () {
|
|
const edge = '3028de800000000000000000'
|
|
await db.systemmessages.insertOne({
|
|
content: '1',
|
|
_id: new ObjectId('300000000000000000000000'),
|
|
})
|
|
await db.systemmessages.insertOne({
|
|
content: '2',
|
|
_id: new ObjectId(),
|
|
})
|
|
await db.systemmessages.insertOne({
|
|
content: '3',
|
|
_id: new ObjectId('400000000000000000000000'),
|
|
})
|
|
const { stderr } = spawnSync(
|
|
process.argv0,
|
|
[
|
|
'--input-type=module',
|
|
'-e',
|
|
'import { batchedUpdateWithResultHandling } from "@overleaf/mongo-utils/batchedUpdate.js"; import { db } from "./app/src/infrastructure/mongodb.js"; batchedUpdateWithResultHandling(db.systemmessages, { content: { $ne: "42" }}, { $set: { content: "42" } })',
|
|
],
|
|
{ encoding: 'utf-8' }
|
|
)
|
|
expect(
|
|
await db.systemmessages.find({}).project({ content: 1, _id: 0 }).toArray()
|
|
).to.deep.equal([{ content: '42' }, { content: '42' }, { content: '42' }])
|
|
expect(stderr).to.include('Completed batch ending 300000000000000000000000')
|
|
expect(stderr).to.include(`Completed batch ending ${edge}`) // hit the edge
|
|
expect(stderr).to.include('Completed batch ending 400000000000000000000000')
|
|
})
|
|
|
|
it('can handle ids sitting on the edge descending', async function () {
|
|
const edge = '3fd721800000000000000000'
|
|
await db.systemmessages.insertOne({
|
|
content: '1',
|
|
_id: new ObjectId('300000000000000000000000'),
|
|
})
|
|
await db.systemmessages.insertOne({
|
|
content: '2',
|
|
_id: new ObjectId(edge),
|
|
})
|
|
await db.systemmessages.insertOne({
|
|
content: '3',
|
|
_id: new ObjectId('400000000000000000000000'),
|
|
})
|
|
const { stderr } = spawnSync(
|
|
process.argv0,
|
|
[
|
|
'--input-type=module',
|
|
'-e',
|
|
'import { batchedUpdateWithResultHandling } from "@overleaf/mongo-utils/batchedUpdate.js"; import { db } from "./app/src/infrastructure/mongodb.js"; batchedUpdateWithResultHandling(db.systemmessages, { content: { $ne: "42" }}, { $set: { content: "42" } })',
|
|
],
|
|
{
|
|
encoding: 'utf-8',
|
|
env: {
|
|
...process.env,
|
|
BATCH_DESCENDING: 'true',
|
|
BATCH_RANGE_START: '400000000000000000000001',
|
|
},
|
|
}
|
|
)
|
|
expect(
|
|
await db.systemmessages.find({}).project({ content: 1, _id: 0 }).toArray()
|
|
).to.deep.equal([{ content: '42' }, { content: '42' }, { content: '42' }])
|
|
expect(stderr).to.include('Completed batch ending 400000000000000000000000')
|
|
expect(stderr).to.include(`Completed batch ending ${edge}`) // hit the edge
|
|
expect(stderr).to.include('Completed batch ending 300000000000000000000000')
|
|
})
|
|
})
|