| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572 |
- import { expect } from 'chai'
- import LatexLogParser from '../../../../frontend/js/ide/log-parser/latex-log-parser'
- import BibLogParser from '../../../../frontend/js/ide/log-parser/bib-log-parser'
- const fixturePath = '../../helpers/fixtures/logs/'
- const fs = require('fs')
- const path = require('path')
- describe('logParser', function (done) {
- before(function () {
- this.errorLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'errors.log'),
- {
- encoding: 'utf8',
- flag: 'r',
- }
- )
- this.warningLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'warnings.log'),
- {
- encoding: 'utf8',
- flag: 'r',
- }
- )
- this.badBoxesLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'bad-boxes.log'),
- {
- encoding: 'utf8',
- flag: 'r',
- }
- )
- this.biberWarningsLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'biber-warnings.log'),
- { encoding: 'utf8', flag: 'r' }
- )
- this.natbibWarningsLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'natbib-warnings.log'),
- { encoding: 'utf8', flag: 'r' }
- )
- this.geometryWarningsLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'geometry-warnings.log'),
- { encoding: 'utf8', flag: 'r' }
- )
- this.captionWarningsLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'caption-warnings.log'),
- { encoding: 'utf8', flag: 'r' }
- )
- this.runawayArgumentsLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'runaway-arguments.log'),
- { encoding: 'utf8', flag: 'r' }
- )
- this.biberBlg = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'biber.blg'),
- {
- encoding: 'utf8',
- flag: 'r',
- }
- )
- this.bibtexBlg = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'bibtex.blg'),
- {
- encoding: 'utf8',
- flag: 'r',
- }
- )
- this.fileLineErrorLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'file-line-error.log'),
- {
- encoding: 'utf8',
- flag: 'r',
- }
- )
- this.filenamesLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'filenames.log'),
- {
- encoding: 'utf8',
- flag: 'r',
- }
- )
- this.secondaryFileLineErrorLog = fs.readFileSync(
- path.resolve(__dirname, fixturePath + 'file-line-error-2.log'),
- {
- encoding: 'utf8',
- flag: 'r',
- }
- )
- })
- it('should parse errors', function () {
- const latexParser = new LatexLogParser(this.errorLog, {
- ignoreDuplicates: true,
- })
- const errors = latexParser.parse().errors
- const expectedErrors = [
- [29, 'Undefined control sequence.'] + '',
- [
- 30,
- 'LaTeX Error: \\begin{equation} on input line 28 ended by \\end{equaion}.',
- ] + '',
- [30, 'Missing $ inserted.'] + '',
- [30, 'Display math should end with $$.'] + '',
- [46, 'Extra }, or forgotten \\right.'] + '',
- [46, 'Missing \\right. inserted.'] + '',
- [46, 'Missing } inserted.'] + '',
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(
- expectedErrors.indexOf([errors[i].line, errors[i].message] + '')
- ).to.equal(i)
- }
- })
- it('should parse Badbox errors', function () {
- const latexParser = new LatexLogParser(this.badBoxesLog)
- const errors = latexParser.parse().typesetting
- const expectedErrors = [
- [9, 'Overfull \\hbox (29.11179pt too wide) in paragraph at lines 9--10'] +
- '',
- [11, 'Underfull \\hbox (badness 10000) in paragraph at lines 11--13'] +
- '',
- [27, 'Overfull \\vbox (12.00034pt too high) detected at line 27'] + '',
- [46, 'Underfull \\vbox (badness 10000) detected at line 46'] + '',
- [54, 'Underfull \\hbox (badness 10000) in paragraph at lines 54--55'] +
- '',
- [58, 'Underfull \\hbox (badness 10000) in paragraph at lines 58--60'] +
- '',
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(
- expectedErrors.indexOf([errors[i].line, errors[i].message] + '')
- ).to.equal(i)
- }
- })
- it('should parse Warnings', function () {
- const latexParser = new LatexLogParser(this.warningLog)
- const errors = latexParser.parse().warnings
- const expectedErrors = [
- [
- 7,
- "Citation `Lambert:2010iw' on page 1 undefined on input line 7.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/introduction.tex',
- ] + '',
- [
- 7,
- "Citation `Lambert:2010iw' on page 1 undefined on input line 7.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/introduction.tex',
- ] + '',
- [
- 72,
- "Citation `Manton:2004tk' on page 3 undefined on input line 72.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/instantons.tex',
- ] + '',
- [
- 108,
- "Citation `Atiyah1978' on page 4 undefined on input line 108.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/instantons.tex',
- ] + '',
- [
- 176,
- "Citation `Dorey:1996hu' on page 5 undefined on input line 176.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/instantons.tex',
- ] + '',
- [
- 3,
- "Citation `Manton1982' on page 8 undefined on input line 3.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/moduli_space_approximation.tex',
- ] + '',
- [
- 21,
- "Citation `Weinberg:2006rq' on page 9 undefined on input line 21.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/moduli_space_approximation.tex',
- ] + '',
- [
- 192,
- "Citation `Bak:1999sv' on page 12 undefined on input line 192.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/moduli_space_approximation.tex',
- ] + '',
- [
- 9,
- "Citation `Peeters:2001np' on page 13 undefined on input line 9.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/dynamics_of_single_instanton.tex',
- ] + '',
- [
- 27,
- "Citation `Osborn:1981yf' on page 15 undefined on input line 27.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/dynamics_of_two_instantons.tex',
- ] + '',
- [
- 27,
- "Citation `Peeters:2001np' on page 15 undefined on input line 27.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/dynamics_of_two_instantons.tex',
- ] + '',
- [
- 20,
- "Citation `Osborn:1981yf' on page 22 undefined on input line 20.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/appendices.tex',
- ] + '',
- [
- 103,
- "Citation `Osborn:1981yf' on page 23 undefined on input line 103.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/appendices.tex',
- ] + '',
- [
- 103,
- "Citation `Peeters:2001np' on page 23 undefined on input line 103.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/appendices.tex',
- ] + '',
- [
- 352,
- "Citation `Peeters:2001np' on page 27 undefined on input line 352.",
- 'compiles/d1585ce575dea4cab55f784a22a88652/sections/appendices.tex',
- ] + '',
- ]
- // there logs display an additional summary error for undefined references
- const offsetErrorLen = errors.length - 1
- expect(offsetErrorLen).to.equal(expectedErrors.length)
- for (let i = 0; i < offsetErrorLen; i++) {
- expect(expectedErrors[i]).to.equal(
- [errors[i].line, errors[i].message, errors[i].file] + ''
- )
- }
- })
- it('should parse Biber warnings', function () {
- const latexParser = new LatexLogParser(this.biberWarningsLog)
- const errors = latexParser.parse().warnings
- const expectedErrors = [
- [
- null,
- 'Package biblatex Warning: No "backend" specified, using Biber backend. To use BibTeX, load biblatex with the "backend=bibtex" option.',
- '/usr/local/texlive/2013/texmf-dist/tex/latex/biblatex/biblatex.sty',
- ] + '',
- [
- null,
- 'Package biblatex Warning: The following entry could not be found in the database: Missing3 Please verify the spelling and rerun LaTeX afterwards.',
- '/compile/output.bbl',
- ] + '',
- [
- null,
- 'Package biblatex Warning: The following entry could not be found in the database: Missing2 Please verify the spelling and rerun LaTeX afterwards.',
- '/compile/output.bbl',
- ] + '',
- [
- null,
- 'Package biblatex Warning: The following entry could not be found in the database: Missing1 Please verify the spelling and rerun LaTeX afterwards.',
- '/compile/output.bbl',
- ] + '',
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(expectedErrors[i]).to.equal(
- [errors[i].line, errors[i].message, errors[i].file] + ''
- )
- }
- })
- it('should parse Natbib warnings', function () {
- const latexParser = new LatexLogParser(this.natbibWarningsLog)
- const errors = latexParser.parse().warnings
- const expectedErrors = [
- [
- 6,
- "Package natbib Warning: Citation `blah' on page 1 undefined on input line 6.",
- '/compile/main.tex',
- ] + '',
- [
- null,
- 'Package natbib Warning: There were undefined citations.',
- '/compile/main.tex',
- ] + '',
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(expectedErrors[i]).to.equal(
- [errors[i].line, errors[i].message, errors[i].file] + ''
- )
- }
- })
- it('should parse Geometry warnings', function () {
- const latexParser = new LatexLogParser(this.geometryWarningsLog)
- const errors = latexParser.parse().warnings
- const expectedErrors = [
- [
- null,
- "Package geometry Warning: Over-specification in `h'-direction. `width' (597.50787pt) is ignored.",
- '/compile/main.tex',
- ] + '',
- [
- null,
- "Package geometry Warning: Over-specification in `v'-direction. `height' (845.04684pt) is ignored.",
- '/compile/main.tex',
- ] + '',
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(expectedErrors[i]).to.equal(
- [errors[i].line, errors[i].message, errors[i].file] + ''
- )
- }
- })
- it('should parse Caption warnings', function () {
- const latexParser = new LatexLogParser(this.captionWarningsLog)
- const errors = latexParser.parse().warnings
- const expectedErrors = [
- [
- null,
- 'Package caption Warning: Unsupported document class (or package) detected, usage of the caption package is not recommended. See the caption package documentation for explanation.',
- '/usr/local/texlive/2014/texmf-dist/tex/latex/caption/caption.sty',
- ] + '',
- [
- 46,
- "Package caption Warning: The option `hypcap=true' will be ignored for this particular \\caption on input line 46. See the caption package documentation for explanation.",
- '/compile/main.tex',
- ] + '',
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(expectedErrors[i]).to.equal(
- [errors[i].line, errors[i].message, errors[i].file] + ''
- )
- }
- })
- it('should parse Runaway Arguments', function () {
- const latexParser = new LatexLogParser(this.runawayArgumentsLog)
- const errors = latexParser.parse().errors
- const expectedErrors = [
- [null, 'Runaway argument?', '/compile/runaway_argument.tex'] + '',
- [null, 'Emergency stop.', '/compile/runaway_argument.tex'] + '',
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(expectedErrors[i]).to.equal(
- [errors[i].line, errors[i].message, errors[i].file] + ''
- )
- }
- })
- it('should parse filenames', function () {
- const latexParser = new LatexLogParser(this.filenamesLog)
- const { errors, warnings, typesetting } = latexParser.parse()
- const expectedErrors = [
- [
- 1,
- 'Undefined control sequence.',
- '/compile/a folder with spaces/a subfolder with spaces/a subsubfolder with spaces/another file with spaces.tex',
- ] + '',
- ]
- const expectedWarnings = [
- [
- 9,
- "Citation `Peeters:2001np' on page 13 undefined on input line 9.",
- '/compile/main',
- ] + '',
- ]
- const expectedTypesetting = [
- [
- 123,
- 'Overfull \\hbox (4.56pt too wide) in paragraph at lines 123--456',
- '/compile/otherfile',
- ] + '',
- ]
- expect(expectedErrors.length).to.equal(errors.length)
- expect(warnings.length).to.equal(warnings.length)
- expect(typesetting.length).to.equal(typesetting.length)
- for (let i = 0; i < errors.length; i++) {
- expect(expectedErrors[i]).to.equal(
- [errors[i].line, errors[i].message, errors[i].file] + ''
- )
- }
- for (let j = 0; j < warnings.length; j++) {
- expect(expectedWarnings[j]).to.equal(
- [warnings[j].line, warnings[j].message, warnings[j].file] + ''
- )
- }
- for (let k = 0; k < typesetting.length; k++) {
- expect(expectedTypesetting[k]).to.equal(
- [typesetting[k].line, typesetting[k].message, typesetting[k].file] + ''
- )
- }
- })
- it('should perform file line error parsing', function () {
- let latexParser = new LatexLogParser(this.fileLineErrorLog)
- let errors = latexParser.parse().errors
- let expectedErrors = [
- [
- 1,
- 'Undefined control sequence.',
- '/compile/a folder with spaces/a subfolder with spaces/a subsubfolder with spaces/another file with spaces.tex',
- ] + '',
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(expectedErrors[i]).to.equal(
- [errors[i].line, errors[i].message, errors[i].file] + ''
- )
- }
- // again with a more complex example
- latexParser = new LatexLogParser(this.secondaryFileLineErrorLog)
- errors = latexParser.parse().errors
- expectedErrors = [
- [1, 'Misplaced alignment tab character &.', './acks/name.tex'],
- [14, 'Misplaced alignment tab character &.', './main.tex'],
- ]
- expect(errors.length).to.equal(expectedErrors.length)
- for (let i = 0; i < errors.length; i++) {
- expect(expectedErrors[i]).to.deep.equal([
- errors[i].line,
- errors[i].message,
- errors[i].file,
- ])
- }
- })
- it('should ignore duplicates', function () {
- let latexParser = new LatexLogParser(this.errorLog)
- let errors = latexParser.parse().errors
- // duplicates included
- expect(errors.length).to.equal(10)
- latexParser = new LatexLogParser(this.errorLog, { ignoreDuplicates: true })
- errors = latexParser.parse().errors
- // duplicates excluded
- expect(errors.length).to.equal(7)
- })
- it('should get file paths', function () {
- let latexParser = new LatexLogParser(this.errorLog)
- let errors = latexParser.parse().errors
- for (let i = 0; i < errors.length; i++) {
- expect(errors[i].file).to.equal(
- 'compiles/dff0c37d892f346e58fc14975a16bf69/sections/appendices.tex'
- )
- }
- latexParser = new LatexLogParser(this.badBoxesLog)
- errors = latexParser.parse().all
- for (let j = 0; j < errors.length; j++) {
- expect(errors[j].file).to.equal(
- 'compiles/b6cf470376785e64ad84c57e3296c912/logs/bad-boxes.tex'
- )
- }
- })
- it('should parse a typical biber .blg file', function () {
- const bibParser = new BibLogParser(this.biberBlg, {})
- const result = bibParser.parse()
- expect(typeof result).to.equal('object')
- expect(result.all.length).to.equal(14)
- expect(result.errors.length).to.equal(1)
- expect(result.warnings.length).to.equal(2)
- const error = result.errors[0]
- expect(error.level).to.equal('error')
- expect(error.line).to.equal('8')
- expect(error.file).to.equal('bibliography.bib')
- expect(error.message).to.equal(
- 'syntax error: at end of input, expected end of entry ("}" or ")") (skipping to next "@")'
- )
- })
- it('should throw an error when non-biblog passed to BibLogParser', function (done) {
- const bibParser = new BibLogParser(this.captionWarningsLog, {})
- try {
- bibParser.parse()
- } catch (e) {
- expect(e).to.exist
- done()
- }
- })
- it('should throw an error when empty string passed to BibLogParser', function (done) {
- const bibParser = new BibLogParser('', {})
- try {
- bibParser.parse()
- } catch (e) {
- expect(e).to.exist
- done()
- }
- })
- it('should throw an error when non-string passed to BibLogParser', function (done) {
- try {
- const bibParser = new BibLogParser({ a: 1 }, {})
- bibParser.parse()
- } catch (e) {
- expect(e).to.exist
- done()
- }
- })
- it('should parse a typical bibtex .blg file', function () {
- const bibParser = new BibLogParser(this.bibtexBlg, {})
- const result = bibParser.parse()
- expect(typeof result).to.equal('object')
- expect(result.all.length).to.equal(13)
- expect(result.warnings.length).to.equal(6)
- const firstWarning = result.warnings[0]
- expect(firstWarning.file).to.equal('references.bib')
- expect(firstWarning.line).to.equal('152')
- expect(firstWarning.level).to.equal('warning')
- expect(firstWarning.message).to.equal(
- 'string name "something" is undefined'
- )
- const thirdWarning = result.warnings[2]
- expect(thirdWarning.message).to.equal(
- "can't use both author and editor fields in Binney87"
- )
- expect(result.errors.length).to.equal(7)
- const firstError = result.errors[0]
- expect(firstError.file).to.equal('references.bib')
- expect(firstError.line).to.equal('196')
- expect(firstError.level).to.equal('error')
- expect(
- firstError.message.indexOf("I was expecting a `,' or a `}'")
- ).to.equal(0)
- expect(
- firstError.message.indexOf('(Error may have been on previous line)') > 0
- ).to.equal(true)
- const crossReferenceError = result.errors[5]
- expect(crossReferenceError.level).to.equal('error')
- expect(
- crossReferenceError.message.indexOf('A bad cross reference')
- ).to.equal(0)
- const styleError = result.errors[6]
- expect(styleError.level).to.equal('error')
- expect(
- styleError.message.indexOf("I couldn't open style file aa.bst")
- ).to.equal(0)
- })
- })
|