Files
overleaf-cep/services/web/test/acceptance/src/BackFillUsersAnalyticsId.mjs
Brian Gough 8a8679eb78 Merge pull request #33297 from overleaf/bg-fix-acceptance-tests-in-dev-env
fix: update migration commands to use yarn instead of east
GitOrigin-RevId: 9cfcc393cfc1855e1edba6ba90ebb7b3a76ecb6b
2026-05-01 08:06:01 +00:00

100 lines
2.9 KiB
JavaScript

import { expect } from 'chai'
import { db, ObjectId } from '../../../app/src/infrastructure/mongodb.mjs'
import { exec } from 'node:child_process'
describe('BackFillUsersAnalyticsId', function () {
beforeEach('insert data', async function () {
await db.users.insertMany([
{
_id: new ObjectId('50e434d90000000000000000'),
email: 'foo0@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000001'),
email: 'foo1@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000002'),
analyticsId: '32dc5866-1451-4209-ba9d-23e96caafecd',
email: 'foo2@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000003'),
analyticsId: '32dc5866-1451-4209-ba9d-23e96caafecf',
email: 'foo3@bar.com',
},
])
})
beforeEach('run migration', function (done) {
exec(
'cd ../../tools/migrations && yarn run migrations migrate -t saas --force 20260424120000_back_fill_users_analyticsId',
done
)
})
it('should update the users', async function () {
expect(
await db.users
.find({}, { projection: { _id: 1, email: 1, analyticsId: 1 } })
.toArray()
).to.deep.equal([
{
_id: new ObjectId('50e434d90000000000000000'),
analyticsId: '50e434d90000000000000000',
email: 'foo0@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000001'),
analyticsId: '50e434d90000000000000001',
email: 'foo1@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000002'),
analyticsId: '32dc5866-1451-4209-ba9d-23e96caafecd',
email: 'foo2@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000003'),
analyticsId: '32dc5866-1451-4209-ba9d-23e96caafecf',
email: 'foo3@bar.com',
},
])
})
describe('after rolling back', function () {
beforeEach(function (done) {
exec(
'cd ../../tools/migrations && yarn run migrations rollback -t saas --force 20260424120000_back_fill_users_analyticsId',
done
)
})
it('should update the users and roll back', async function () {
expect(
await db.users
.find({}, { projection: { _id: 1, email: 1, analyticsId: 1 } })
.toArray()
).to.deep.equal([
{
_id: new ObjectId('50e434d90000000000000000'),
email: 'foo0@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000001'),
email: 'foo1@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000002'),
analyticsId: '32dc5866-1451-4209-ba9d-23e96caafecd',
email: 'foo2@bar.com',
},
{
_id: new ObjectId('50e434d90000000000000003'),
analyticsId: '32dc5866-1451-4209-ba9d-23e96caafecf',
email: 'foo3@bar.com',
},
])
})
})
})