| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- import { expect } from 'chai'
- import mongodb from 'mongodb-legacy'
- import nock from 'nock'
- import * as ProjectHistoryClient from './helpers/ProjectHistoryClient.js'
- import * as ProjectHistoryApp from './helpers/ProjectHistoryApp.js'
- const { ObjectId } = mongodb
- const MockHistoryStore = () => nock('http://127.0.0.1:3100')
- const MockWeb = () => nock('http://127.0.0.1:3000')
- const fixture = path => new URL(`../fixtures/${path}`, import.meta.url)
- describe('Summarized updates', function () {
- beforeEach(async function () {
- this.projectId = new ObjectId().toString()
- this.historyId = new ObjectId().toString()
- await ProjectHistoryApp.ensureRunning()
- MockHistoryStore().post('/api/projects').reply(200, {
- projectId: this.historyId,
- })
- const olProject = await ProjectHistoryClient.initializeProject(
- this.historyId
- )
- MockWeb()
- .get(`/project/${this.projectId}/details`)
- .reply(200, {
- name: 'Test Project',
- overleaf: { history: { id: olProject.id } },
- })
- MockHistoryStore()
- .get(`/api/projects/${this.historyId}/latest/history`)
- .replyWithFile(200, fixture('chunks/7-8.json'))
- MockHistoryStore()
- .get(`/api/projects/${this.historyId}/versions/6/history`)
- .replyWithFile(200, fixture('chunks/4-6.json'))
- MockHistoryStore()
- .get(`/api/projects/${this.historyId}/versions/3/history`)
- .replyWithFile(200, fixture('chunks/0-3.json'))
- })
- afterEach(function () {
- return nock.cleanAll()
- })
- it('should return the latest summarized updates from a single chunk', async function () {
- const updates = await ProjectHistoryClient.getSummarizedUpdates(
- this.projectId,
- { min_count: 1 }
- )
- expect(updates).to.deep.equal({
- nextBeforeTimestamp: 6,
- updates: [
- {
- fromV: 6,
- toV: 8,
- meta: {
- users: ['5a5637efdac84e81b71014c4', 31],
- start_ts: 1512383567277,
- end_ts: 1512383572877,
- },
- pathnames: ['bar.tex', 'main.tex'],
- project_ops: [],
- labels: [],
- },
- ],
- })
- })
- it('should return the latest summarized updates, with min_count spanning multiple chunks', async function () {
- const updates = await ProjectHistoryClient.getSummarizedUpdates(
- this.projectId,
- { min_count: 5 }
- )
- expect(updates).to.deep.equal({
- updates: [
- {
- fromV: 6,
- toV: 8,
- meta: {
- users: ['5a5637efdac84e81b71014c4', 31],
- start_ts: 1512383567277,
- end_ts: 1512383572877,
- },
- pathnames: ['bar.tex', 'main.tex'],
- project_ops: [],
- labels: [],
- },
- {
- fromV: 5,
- toV: 6,
- meta: {
- users: [31],
- start_ts: 1512383366120,
- end_ts: 1512383366120,
- },
- pathnames: [],
- project_ops: [
- {
- atV: 5,
- rename: {
- pathname: 'foo.tex',
- newPathname: 'bar.tex',
- },
- },
- ],
- labels: [],
- },
- {
- fromV: 2,
- toV: 5,
- meta: {
- users: [31],
- start_ts: 1512383313724,
- end_ts: 1512383362905,
- },
- pathnames: ['foo.tex'],
- project_ops: [],
- labels: [],
- },
- {
- fromV: 1,
- toV: 2,
- meta: {
- users: [31],
- start_ts: 1512383246874,
- end_ts: 1512383246874,
- },
- pathnames: [],
- project_ops: [
- {
- atV: 1,
- rename: {
- pathname: 'bar.tex',
- newPathname: 'foo.tex',
- },
- },
- ],
- labels: [],
- },
- {
- fromV: 0,
- toV: 1,
- meta: {
- users: [31],
- start_ts: 1512383015633,
- end_ts: 1512383015633,
- },
- pathnames: ['main.tex'],
- project_ops: [],
- labels: [],
- },
- ],
- })
- })
- it('should return the summarized updates from a before version at the start of a chunk', async function () {
- MockHistoryStore()
- .get(`/api/projects/${this.historyId}/versions/4/history`)
- .replyWithFile(200, fixture('chunks/4-6.json'))
- const updates = await ProjectHistoryClient.getSummarizedUpdates(
- this.projectId,
- { before: 4 }
- )
- expect(updates.updates[0].toV).to.equal(4)
- })
- it('should return the summarized updates from a before version in the middle of a chunk', async function () {
- MockHistoryStore()
- .get(`/api/projects/${this.historyId}/versions/5/history`)
- .replyWithFile(200, fixture('chunks/4-6.json'))
- const updates = await ProjectHistoryClient.getSummarizedUpdates(
- this.projectId,
- { before: 5 }
- )
- expect(updates.updates[0].toV).to.equal(5)
- })
- it('should return the summarized updates from a before version at the end of a chunk', async function () {
- MockHistoryStore()
- .get(`/api/projects/${this.historyId}/versions/6/history`)
- .replyWithFile(200, fixture('chunks/4-6.json'))
- const updates = await ProjectHistoryClient.getSummarizedUpdates(
- this.projectId,
- { before: 6 }
- )
- expect(updates.updates[0].toV).to.equal(6)
- })
- })
|