overleaf-cep/services/document-updater/test/unit/js/Limits/LimitsTests.js
Jakob Ackermann adf399fb95 [project-history] add support for resync of history-ot ranges (#26475)
* [project-history] add support for resync of history-ot ranges

* [project-history] avoid compressing sharejs and history-ot upgrades

* [document-updater] improve error message of some assertions

... by migrating the assertions like this:
```diff
-stub.calledWith().should.equal(true)
+stub.should.have.been.calledWith()
```
```diff
-stub.called.should.equal(false)
+stub.should.not.have.been.called
```

* [document-updater] move content field in resyncDocContent

* [document-updater] add support for resync of history-ot ranges

GitOrigin-RevId: e6104686a26934a5f25a8f095cbe00c163fbbaa7
2025-06-19 08:05:18 +00:00

168 lines
5.4 KiB
JavaScript

const { expect } = require('chai')
const modulePath = '../../../../app/js/Limits.js'
const SandboxedModule = require('sandboxed-module')
describe('Limits', function () {
beforeEach(function () {
return (this.Limits = SandboxedModule.require(modulePath))
})
describe('getTotalSizeOfLines', function () {
it('should compute the character count for a document with multiple lines', function () {
const count = this.Limits.getTotalSizeOfLines(['123', '4567'])
expect(count).to.equal(9)
})
it('should compute the character count for a document with a single line', function () {
const count = this.Limits.getTotalSizeOfLines(['123'])
expect(count).to.equal(4)
})
it('should compute the character count for an empty document', function () {
const count = this.Limits.getTotalSizeOfLines([])
expect(count).to.equal(0)
})
})
describe('docIsTooLarge', function () {
describe('when the estimated size is below the limit', function () {
it('should return false when the estimated size is below the limit', function () {
const result = this.Limits.docIsTooLarge(128, ['hello', 'world'], 1024)
expect(result).to.be.false
})
})
describe('when the estimated size is at the limit', function () {
it('should return false when the estimated size is at the limit', function () {
const result = this.Limits.docIsTooLarge(1024, ['hello', 'world'], 1024)
expect(result).to.be.false
})
})
describe('when the estimated size is above the limit', function () {
it('should return false when the actual character count is below the limit', function () {
const result = this.Limits.docIsTooLarge(2048, ['hello', 'world'], 1024)
expect(result).to.be.false
})
it('should return false when the actual character count is at the limit', function () {
const result = this.Limits.docIsTooLarge(2048, ['x'.repeat(1023)], 1024)
expect(result).to.be.false
})
it('should return true when the actual character count is above the limit by 1', function () {
const count = this.Limits.docIsTooLarge(2048, ['x'.repeat(1024)], 1024)
expect(count).to.be.true
})
it('should return true when the actual character count is above the limit', function () {
const count = this.Limits.docIsTooLarge(2048, ['x'.repeat(2000)], 1024)
expect(count).to.be.true
})
})
describe('when the document has many lines', function () {
it('should return false when the actual character count is below the limit ', function () {
const count = this.Limits.docIsTooLarge(
2048,
'1234567890'.repeat(100).split('0'),
1024
)
expect(count).to.be.false
})
it('should return true when the actual character count is above the limit', function () {
const count = this.Limits.docIsTooLarge(
2048,
'1234567890'.repeat(2000).split('0'),
1024
)
expect(count).to.be.true
})
})
})
describe('stringFileDataContentIsTooLarge', function () {
it('should handle small docs', function () {
expect(
this.Limits.stringFileDataContentIsTooLarge({ content: '' }, 123)
).to.equal(false)
})
it('should handle docs at the limit', function () {
expect(
this.Limits.stringFileDataContentIsTooLarge(
{ content: 'x'.repeat(123) },
123
)
).to.equal(false)
})
it('should handle docs above the limit', function () {
expect(
this.Limits.stringFileDataContentIsTooLarge(
{ content: 'x'.repeat(123 + 1) },
123
)
).to.equal(true)
})
it('should handle docs above the limit and below with tracked-deletes removed', function () {
expect(
this.Limits.stringFileDataContentIsTooLarge(
{
content: 'x'.repeat(123 + 1),
trackedChanges: [
{
range: { pos: 1, length: 1 },
tracking: {
type: 'delete',
ts: '2025-06-16T14:31:44.910Z',
userId: 'user-id',
},
},
],
},
123
)
).to.equal(false)
})
it('should handle docs above the limit and above with tracked-deletes removed', function () {
expect(
this.Limits.stringFileDataContentIsTooLarge(
{
content: 'x'.repeat(123 + 2),
trackedChanges: [
{
range: { pos: 1, length: 1 },
tracking: {
type: 'delete',
ts: '2025-06-16T14:31:44.910Z',
userId: 'user-id',
},
},
],
},
123
)
).to.equal(true)
})
it('should handle docs above the limit and with tracked-inserts', function () {
expect(
this.Limits.stringFileDataContentIsTooLarge(
{
content: 'x'.repeat(123 + 1),
trackedChanges: [
{
range: { pos: 1, length: 1 },
tracking: {
type: 'insert',
ts: '2025-06-16T14:31:44.910Z',
userId: 'user-id',
},
},
],
},
123
)
).to.equal(true)
})
})
})