2020-02-19 06:16:07 -05:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
handle-callback-err,
|
|
|
|
no-path-concat,
|
|
|
|
no-return-assign,
|
|
|
|
no-unused-vars,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-02-19 06:16:00 -05:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS101: Remove unnecessary use of Array.from
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS103: Rewrite code to no longer use __guard__
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-02-19 06:16:14 -05:00
|
|
|
const Client = require('./helpers/Client')
|
|
|
|
const request = require('request')
|
|
|
|
const fs = require('fs')
|
2020-03-27 06:10:27 -04:00
|
|
|
const fsExtra = require('fs-extra')
|
2020-02-19 06:16:14 -05:00
|
|
|
const ChildProcess = require('child_process')
|
|
|
|
const ClsiApp = require('./helpers/ClsiApp')
|
|
|
|
const logger = require('logger-sharelatex')
|
|
|
|
const Path = require('path')
|
2021-07-13 07:04:48 -04:00
|
|
|
const fixturePath = path => {
|
2020-03-27 06:10:27 -04:00
|
|
|
if (path.slice(0, 3) === 'tmp') {
|
|
|
|
return '/tmp/clsi_acceptance_tests' + path.slice(3)
|
|
|
|
}
|
|
|
|
return Path.normalize(__dirname + '/../fixtures/' + path)
|
|
|
|
}
|
2020-02-19 06:16:14 -05:00
|
|
|
const process = require('process')
|
|
|
|
console.log(
|
|
|
|
process.pid,
|
|
|
|
process.ppid,
|
|
|
|
process.getuid(),
|
|
|
|
process.getgroups(),
|
|
|
|
'PID'
|
|
|
|
)
|
2014-02-12 12:27:43 -05:00
|
|
|
|
2020-02-19 06:16:14 -05:00
|
|
|
const MOCHA_LATEX_TIMEOUT = 60 * 1000
|
2014-02-12 12:27:43 -05:00
|
|
|
|
2020-08-10 12:01:11 -04:00
|
|
|
const convertToPng = function (pdfPath, pngPath, callback) {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (callback == null) {
|
2020-08-10 12:01:11 -04:00
|
|
|
callback = function (error) {}
|
2020-02-19 06:16:14 -05:00
|
|
|
}
|
|
|
|
const command = `convert ${fixturePath(pdfPath)} ${fixturePath(pngPath)}`
|
|
|
|
console.log('COMMAND')
|
|
|
|
console.log(command)
|
|
|
|
const convert = ChildProcess.exec(command)
|
|
|
|
const stdout = ''
|
2021-07-13 07:04:48 -04:00
|
|
|
convert.stdout.on('data', chunk => console.log('STDOUT', chunk.toString()))
|
|
|
|
convert.stderr.on('data', chunk => console.log('STDERR', chunk.toString()))
|
2020-02-19 06:16:14 -05:00
|
|
|
return convert.on('exit', () => callback())
|
|
|
|
}
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2020-08-10 12:01:11 -04:00
|
|
|
const compare = function (originalPath, generatedPath, callback) {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (callback == null) {
|
2020-08-10 12:01:11 -04:00
|
|
|
callback = function (error, same) {}
|
2020-02-19 06:16:14 -05:00
|
|
|
}
|
|
|
|
const diff_file = `${fixturePath(generatedPath)}-diff.png`
|
|
|
|
const proc = ChildProcess.exec(
|
|
|
|
`compare -metric mae ${fixturePath(originalPath)} ${fixturePath(
|
|
|
|
generatedPath
|
|
|
|
)} ${diff_file}`
|
|
|
|
)
|
|
|
|
let stderr = ''
|
2021-07-13 07:04:48 -04:00
|
|
|
proc.stderr.on('data', chunk => (stderr += chunk))
|
2020-02-19 06:16:14 -05:00
|
|
|
return proc.on('exit', () => {
|
|
|
|
if (stderr.trim() === '0 (0)') {
|
|
|
|
// remove output diff if test matches expected image
|
2021-07-13 07:04:48 -04:00
|
|
|
fs.unlink(diff_file, err => {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (err) {
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return callback(null, true)
|
|
|
|
} else {
|
|
|
|
console.log('compare result', stderr)
|
|
|
|
return callback(null, false)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2020-08-10 12:01:11 -04:00
|
|
|
const checkPdfInfo = function (pdfPath, callback) {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (callback == null) {
|
2020-08-10 12:01:11 -04:00
|
|
|
callback = function (error, output) {}
|
2020-02-19 06:16:14 -05:00
|
|
|
}
|
|
|
|
const proc = ChildProcess.exec(`pdfinfo ${fixturePath(pdfPath)}`)
|
|
|
|
let stdout = ''
|
2021-07-13 07:04:48 -04:00
|
|
|
proc.stdout.on('data', chunk => (stdout += chunk))
|
|
|
|
proc.stderr.on('data', chunk => console.log('STDERR', chunk.toString()))
|
2020-02-19 06:16:14 -05:00
|
|
|
return proc.on('exit', () => {
|
|
|
|
if (stdout.match(/Optimized:\s+yes/)) {
|
|
|
|
return callback(null, true)
|
|
|
|
} else {
|
|
|
|
return callback(null, false)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2020-08-10 12:01:11 -04:00
|
|
|
const compareMultiplePages = function (project_id, callback) {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (callback == null) {
|
2020-08-10 12:01:11 -04:00
|
|
|
callback = function (error) {}
|
2020-02-19 06:16:14 -05:00
|
|
|
}
|
2020-08-10 12:01:11 -04:00
|
|
|
var compareNext = function (page_no, callback) {
|
2020-02-19 06:16:14 -05:00
|
|
|
const path = `tmp/${project_id}-source-${page_no}.png`
|
|
|
|
return fs.stat(fixturePath(path), (error, stat) => {
|
|
|
|
if (error != null) {
|
|
|
|
return callback()
|
|
|
|
} else {
|
|
|
|
return compare(
|
|
|
|
`tmp/${project_id}-source-${page_no}.png`,
|
|
|
|
`tmp/${project_id}-generated-${page_no}.png`,
|
|
|
|
(error, same) => {
|
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
same.should.equal(true)
|
|
|
|
return compareNext(page_no + 1, callback)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return compareNext(0, callback)
|
|
|
|
}
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2020-08-10 12:01:11 -04:00
|
|
|
const comparePdf = function (project_id, example_dir, callback) {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (callback == null) {
|
2020-08-10 12:01:11 -04:00
|
|
|
callback = function (error) {}
|
2020-02-19 06:16:14 -05:00
|
|
|
}
|
|
|
|
console.log('CONVERT')
|
|
|
|
console.log(`tmp/${project_id}.pdf`, `tmp/${project_id}-generated.png`)
|
|
|
|
return convertToPng(
|
|
|
|
`tmp/${project_id}.pdf`,
|
|
|
|
`tmp/${project_id}-generated.png`,
|
2021-07-13 07:04:48 -04:00
|
|
|
error => {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
return convertToPng(
|
|
|
|
`examples/${example_dir}/output.pdf`,
|
|
|
|
`tmp/${project_id}-source.png`,
|
2021-07-13 07:04:48 -04:00
|
|
|
error => {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
return fs.stat(
|
|
|
|
fixturePath(`tmp/${project_id}-source-0.png`),
|
|
|
|
(error, stat) => {
|
|
|
|
if (error != null) {
|
|
|
|
return compare(
|
|
|
|
`tmp/${project_id}-source.png`,
|
|
|
|
`tmp/${project_id}-generated.png`,
|
|
|
|
(error, same) => {
|
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
same.should.equal(true)
|
|
|
|
return callback()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
} else {
|
2021-07-13 07:04:48 -04:00
|
|
|
return compareMultiplePages(project_id, error => {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
return callback()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2020-08-10 12:01:11 -04:00
|
|
|
const downloadAndComparePdf = function (
|
|
|
|
project_id,
|
|
|
|
example_dir,
|
|
|
|
url,
|
|
|
|
callback
|
|
|
|
) {
|
2020-02-19 06:16:14 -05:00
|
|
|
if (callback == null) {
|
2020-08-10 12:01:11 -04:00
|
|
|
callback = function (error) {}
|
2020-02-19 06:16:14 -05:00
|
|
|
}
|
|
|
|
const writeStream = fs.createWriteStream(fixturePath(`tmp/${project_id}.pdf`))
|
|
|
|
request.get(url).pipe(writeStream)
|
|
|
|
console.log('writing file out', fixturePath(`tmp/${project_id}.pdf`))
|
|
|
|
return writeStream.on('close', () => {
|
|
|
|
return checkPdfInfo(`tmp/${project_id}.pdf`, (error, optimised) => {
|
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
optimised.should.equal(true)
|
|
|
|
return comparePdf(project_id, example_dir, callback)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2020-02-19 06:16:14 -05:00
|
|
|
Client.runServer(4242, fixturePath('examples'))
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2020-08-10 12:01:11 -04:00
|
|
|
describe('Example Documents', function () {
|
|
|
|
before(function (done) {
|
2020-03-27 06:10:27 -04:00
|
|
|
ClsiApp.ensureRunning(done)
|
|
|
|
})
|
2020-08-10 12:01:11 -04:00
|
|
|
before(function (done) {
|
2020-03-27 06:10:27 -04:00
|
|
|
fsExtra.remove(fixturePath('tmp'), done)
|
|
|
|
})
|
2020-08-10 12:01:11 -04:00
|
|
|
before(function (done) {
|
2020-03-27 06:10:27 -04:00
|
|
|
fs.mkdir(fixturePath('tmp'), done)
|
|
|
|
})
|
2020-08-10 12:01:11 -04:00
|
|
|
after(function (done) {
|
2020-03-27 06:10:27 -04:00
|
|
|
fsExtra.remove(fixturePath('tmp'), done)
|
2020-02-19 06:16:14 -05:00
|
|
|
})
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2021-07-13 07:04:48 -04:00
|
|
|
return Array.from(fs.readdirSync(fixturePath('examples'))).map(example_dir =>
|
|
|
|
(example_dir =>
|
|
|
|
describe(example_dir, function () {
|
|
|
|
before(function () {
|
|
|
|
return (this.project_id = Client.randomId() + '_' + example_dir)
|
|
|
|
})
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2021-07-13 07:04:48 -04:00
|
|
|
it('should generate the correct pdf', function (done) {
|
|
|
|
this.timeout(MOCHA_LATEX_TIMEOUT)
|
|
|
|
return Client.compileDirectory(
|
|
|
|
this.project_id,
|
|
|
|
fixturePath('examples'),
|
|
|
|
example_dir,
|
|
|
|
4242,
|
|
|
|
(error, res, body) => {
|
|
|
|
if (
|
|
|
|
error ||
|
|
|
|
__guard__(
|
|
|
|
body != null ? body.compile : undefined,
|
|
|
|
x => x.status
|
|
|
|
) === 'failure'
|
|
|
|
) {
|
|
|
|
console.log('DEBUG: error', error, 'body', JSON.stringify(body))
|
|
|
|
return done(new Error('Compile failed'))
|
2020-02-19 06:16:14 -05:00
|
|
|
}
|
2021-07-13 07:04:48 -04:00
|
|
|
const pdf = Client.getOutputFile(body, 'pdf')
|
|
|
|
return downloadAndComparePdf(
|
|
|
|
this.project_id,
|
|
|
|
example_dir,
|
|
|
|
pdf.url,
|
|
|
|
done
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2020-02-19 06:16:00 -05:00
|
|
|
|
2021-07-13 07:04:48 -04:00
|
|
|
return it('should generate the correct pdf on the second run as well', function (done) {
|
|
|
|
this.timeout(MOCHA_LATEX_TIMEOUT)
|
|
|
|
return Client.compileDirectory(
|
|
|
|
this.project_id,
|
|
|
|
fixturePath('examples'),
|
|
|
|
example_dir,
|
|
|
|
4242,
|
|
|
|
(error, res, body) => {
|
|
|
|
if (
|
|
|
|
error ||
|
|
|
|
__guard__(
|
|
|
|
body != null ? body.compile : undefined,
|
|
|
|
x => x.status
|
|
|
|
) === 'failure'
|
|
|
|
) {
|
|
|
|
console.log('DEBUG: error', error, 'body', JSON.stringify(body))
|
|
|
|
return done(new Error('Compile failed'))
|
2020-02-19 06:16:14 -05:00
|
|
|
}
|
2021-07-13 07:04:48 -04:00
|
|
|
const pdf = Client.getOutputFile(body, 'pdf')
|
|
|
|
return downloadAndComparePdf(
|
|
|
|
this.project_id,
|
|
|
|
example_dir,
|
|
|
|
pdf.url,
|
|
|
|
done
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}))(example_dir)
|
2020-02-19 06:16:14 -05:00
|
|
|
)
|
|
|
|
})
|
2020-02-19 06:16:00 -05:00
|
|
|
|
|
|
|
function __guard__(value, transform) {
|
2020-02-19 06:16:14 -05:00
|
|
|
return typeof value !== 'undefined' && value !== null
|
|
|
|
? transform(value)
|
|
|
|
: undefined
|
|
|
|
}
|