mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-07 08:09:01 +02:00
1b544263fd
Use histograms to track CLSI compile times GitOrigin-RevId: cf25f1e6d2094186f419acc70748f0c71b6c3240
96 lines
2.7 KiB
JavaScript
96 lines
2.7 KiB
JavaScript
const Client = require('./helpers/Client')
|
|
const { fetchNothing } = require('@overleaf/fetch-utils')
|
|
const ClsiApp = require('./helpers/ClsiApp')
|
|
|
|
describe('Simple LaTeX file', function () {
|
|
const content = `\
|
|
\\documentclass{article}
|
|
\\begin{document}
|
|
Hello world
|
|
\\end{document}\
|
|
`
|
|
const scenarios = [
|
|
{
|
|
description: 'simple file',
|
|
request: {
|
|
resources: [{ path: 'main.tex', content }],
|
|
},
|
|
},
|
|
{
|
|
description: 'clsi-perf request',
|
|
request: {
|
|
resources: [{ path: 'main.tex', content }],
|
|
options: {
|
|
metricsPath: 'clsi-perf',
|
|
metricsMethod: 'priority',
|
|
},
|
|
},
|
|
},
|
|
]
|
|
|
|
for (const scenario of scenarios) {
|
|
describe(scenario.description, function () {
|
|
before(async function () {
|
|
this.project_id = Client.randomId()
|
|
this.request = scenario.request
|
|
|
|
await ClsiApp.ensureRunning()
|
|
try {
|
|
this.body = await Client.compile(this.project_id, this.request)
|
|
} catch (error) {
|
|
this.error = error
|
|
}
|
|
})
|
|
|
|
it('should return the PDF', function () {
|
|
const pdf = Client.getOutputFile(this.body, 'pdf')
|
|
pdf.type.should.equal('pdf')
|
|
})
|
|
|
|
it('should return the log', function () {
|
|
const log = Client.getOutputFile(this.body, 'log')
|
|
log.type.should.equal('log')
|
|
})
|
|
|
|
it('should provide the pdf for download', async function () {
|
|
const pdf = Client.getOutputFile(this.body, 'pdf')
|
|
const response = await fetchNothing(pdf.url)
|
|
response.status.should.equal(200)
|
|
})
|
|
|
|
it('should provide the log for download', async function () {
|
|
const log = Client.getOutputFile(this.body, 'pdf')
|
|
const response = await fetchNothing(log.url)
|
|
response.status.should.equal(200)
|
|
})
|
|
|
|
it('should return only the expected keys for stats and timings', function () {
|
|
const { stats, timings } = this.body.compile
|
|
// Note: chai's all.keys assertion rejects extra keys
|
|
stats.should.have.all.keys(
|
|
'isInitialCompile',
|
|
'latexmk-errors',
|
|
'latex-runs',
|
|
'latex-runs-with-errors',
|
|
'latex-runs-2',
|
|
'latex-runs-with-errors-2',
|
|
'pdf-caching-total-ranges-size',
|
|
'pdf-caching-reclaimed-space',
|
|
'pdf-caching-new-ranges-size',
|
|
'pdf-caching-n-ranges',
|
|
'pdf-caching-n-new-ranges',
|
|
'pdf-size'
|
|
)
|
|
timings.should.have.all.keys(
|
|
'sync',
|
|
'compile',
|
|
'output',
|
|
'compileE2E',
|
|
'compute-pdf-caching',
|
|
'pdf-caching-overhead-delete-stale-hashes'
|
|
)
|
|
})
|
|
})
|
|
}
|
|
})
|