overleaf-cep/services/history-v1/test/acceptance/js/api/project_flush.test.js
Brian Gough 92731848ac Merge pull request #26352 from overleaf/bg-history-redis-add-flush-endpoint
add flush endpoint to history-v1

GitOrigin-RevId: b2ca60f7d040459f9c542e4e87147b9eecc9f596
2025-06-13 08:06:37 +00:00

66 lines
2.2 KiB
JavaScript

'use strict'
const BPromise = require('bluebird')
const { expect } = require('chai')
const HTTPStatus = require('http-status')
const fetch = require('node-fetch')
const fs = BPromise.promisifyAll(require('node:fs'))
const cleanup = require('../storage/support/cleanup')
const fixtures = require('../storage/support/fixtures')
const testFiles = require('../storage/support/test_files')
const testProjects = require('./support/test_projects')
const testServer = require('./support/test_server')
const { Change, File, Operation } = require('overleaf-editor-core')
const queueChanges = require('../../../../storage/lib/queue_changes')
const { getState } = require('../../../../storage/lib/chunk_store/redis')
describe('project flush', function () {
beforeEach(cleanup.everything)
beforeEach(fixtures.create)
it('persists queued changes to the chunk store', async function () {
const basicAuthClient = testServer.basicAuthClient
const projectId = await testProjects.createEmptyProject()
// upload an empty file
const response = await fetch(
testServer.url(
`/api/projects/${projectId}/blobs/${File.EMPTY_FILE_HASH}`,
{ qs: { pathname: 'main.tex' } }
),
{
method: 'PUT',
body: fs.createReadStream(testFiles.path('empty.tex')),
headers: {
Authorization: testServer.basicAuthHeader,
},
}
)
expect(response.ok).to.be.true
const testFile = File.fromHash(File.EMPTY_FILE_HASH)
const testChange = new Change(
[Operation.addFile('main.tex', testFile)],
new Date()
)
await queueChanges(projectId, [testChange], 0)
// Verify that the changes are queued and not yet persisted
const initialState = await getState(projectId)
expect(initialState.persistedVersion).to.be.null
expect(initialState.changes).to.have.lengthOf(1)
const importResponse =
await basicAuthClient.apis.ProjectImport.flushChanges({
project_id: projectId,
})
expect(importResponse.status).to.equal(HTTPStatus.OK)
// Verify that the changes were persisted to the chunk store
const finalState = await getState(projectId)
expect(finalState.persistedVersion).to.equal(1)
})
})