unit tests pass, acceptence fail

uncomment tests
This commit is contained in:
Henry Oswald
2018-03-01 13:55:55 +00:00
parent b8c22f4d74
commit 70f016af1f
19 changed files with 290 additions and 263 deletions

View File

@@ -1,48 +1,48 @@
# Client = require "./helpers/Client"
# request = require "request"
# require("chai").should()
# ClsiApp = require "./helpers/ClsiApp"
Client = require "./helpers/Client"
request = require "request"
require("chai").should()
ClsiApp = require "./helpers/ClsiApp"
# describe "Broken LaTeX file", ->
# before (done)->
# @broken_request =
# resources: [
# path: "main.tex"
# content: '''
# \\documentclass{articl % :(
# \\begin{documen % :(
# Broken
# \\end{documen % :(
# '''
# ]
# @correct_request =
# resources: [
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\begin{document}
# Hello world
# \\end{document}
# '''
# ]
# ClsiApp.ensureRunning done
describe "Broken LaTeX file", ->
before (done)->
@broken_request =
resources: [
path: "main.tex"
content: '''
\\documentclass{articl % :(
\\begin{documen % :(
Broken
\\end{documen % :(
'''
]
@correct_request =
resources: [
path: "main.tex"
content: '''
\\documentclass{article}
\\begin{document}
Hello world
\\end{document}
'''
]
ClsiApp.ensureRunning done
# describe "on first run", ->
# before (done) ->
# @project_id = Client.randomId()
# Client.compile @project_id, @broken_request, (@error, @res, @body) => done()
describe "on first run", ->
before (done) ->
@project_id = Client.randomId()
Client.compile @project_id, @broken_request, (@error, @res, @body) => done()
# it "should return a failure status", ->
# @body.compile.status.should.equal "failure"
it "should return a failure status", ->
@body.compile.status.should.equal "failure"
# describe "on second run", ->
# before (done) ->
# @project_id = Client.randomId()
# Client.compile @project_id, @correct_request, () =>
# Client.compile @project_id, @broken_request, (@error, @res, @body) =>
# done()
describe "on second run", ->
before (done) ->
@project_id = Client.randomId()
Client.compile @project_id, @correct_request, () =>
Client.compile @project_id, @broken_request, (@error, @res, @body) =>
done()
# it "should return a failure status", ->
# @body.compile.status.should.equal "failure"
it "should return a failure status", ->
@body.compile.status.should.equal "failure"

View File

@@ -1,36 +1,36 @@
# Client = require "./helpers/Client"
# request = require "request"
# require("chai").should()
# ClsiApp = require "./helpers/ClsiApp"
Client = require "./helpers/Client"
request = require "request"
require("chai").should()
ClsiApp = require "./helpers/ClsiApp"
# describe "Deleting Old Files", ->
# before (done)->
# @request =
# resources: [
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\begin{document}
# Hello world
# \\end{document}
# '''
# ]
# ClsiApp.ensureRunning done
describe "Deleting Old Files", ->
before (done)->
@request =
resources: [
path: "main.tex"
content: '''
\\documentclass{article}
\\begin{document}
Hello world
\\end{document}
'''
]
ClsiApp.ensureRunning done
# describe "on first run", ->
# before (done) ->
# @project_id = Client.randomId()
# Client.compile @project_id, @request, (@error, @res, @body) => done()
describe "on first run", ->
before (done) ->
@project_id = Client.randomId()
Client.compile @project_id, @request, (@error, @res, @body) => done()
# it "should return a success status", ->
# @body.compile.status.should.equal "success"
it "should return a success status", ->
@body.compile.status.should.equal "success"
# describe "after file has been deleted", ->
# before (done) ->
# @request.resources = []
# Client.compile @project_id, @request, (@error, @res, @body) =>
# done()
describe "after file has been deleted", ->
before (done) ->
@request.resources = []
Client.compile @project_id, @request, (@error, @res, @body) =>
done()
# it "should return a failure status", ->
# @body.compile.status.should.equal "failure"
it "should return a failure status", ->
@body.compile.status.should.equal "failure"

View File

@@ -1,114 +1,113 @@
# Client = require "./helpers/Client"
# request = require "request"
# require("chai").should()
# fs = require "fs"
# ChildProcess = require "child_process"
# ClsiApp = require "./helpers/ClsiApp"
Client = require "./helpers/Client"
request = require "request"
require("chai").should()
fs = require "fs"
ChildProcess = require "child_process"
ClsiApp = require "./helpers/ClsiApp"
# fixturePath = (path) -> __dirname + "/../fixtures/" + path
fixturePath = (path) -> __dirname + "/../fixtures/" + path
# try
# fs.mkdirSync(fixturePath("tmp"))
# catch e
try
fs.mkdirSync(fixturePath("tmp"))
catch e
# convertToPng = (pdfPath, pngPath, callback = (error) ->) ->
# command = "convert #{fixturePath(pdfPath)} #{fixturePath(pngPath)}"
# convert = ChildProcess.exec command
# stdout = ""
# convert.stdout.on "data", (chunk) -> console.log "STDOUT", chunk.toString()
# convert.stderr.on "data", (chunk) -> console.log "STDERR", chunk.toString()
# convert.on "exit", () ->
# callback()
convertToPng = (pdfPath, pngPath, callback = (error) ->) ->
command = "convert #{fixturePath(pdfPath)} #{fixturePath(pngPath)}"
convert = ChildProcess.exec command
stdout = ""
convert.stdout.on "data", (chunk) -> console.log "STDOUT", chunk.toString()
convert.stderr.on "data", (chunk) -> console.log "STDERR", chunk.toString()
convert.on "exit", () ->
callback()
# compare = (originalPath, generatedPath, callback = (error, same) ->) ->
# diff_file = "#{fixturePath(generatedPath)}-diff.png"
# proc = ChildProcess.exec "compare -metric mae #{fixturePath(originalPath)} #{fixturePath(generatedPath)} #{diff_file}"
# stderr = ""
# proc.stderr.on "data", (chunk) -> stderr += chunk
# proc.on "exit", () ->
# if stderr.trim() == "0 (0)"
# fs.unlink diff_file # remove output diff if test matches expected image
# callback null, true
# else
# console.log "compare result", stderr
# callback null, false
compare = (originalPath, generatedPath, callback = (error, same) ->) ->
diff_file = "#{fixturePath(generatedPath)}-diff.png"
proc = ChildProcess.exec "compare -metric mae #{fixturePath(originalPath)} #{fixturePath(generatedPath)} #{diff_file}"
stderr = ""
proc.stderr.on "data", (chunk) -> stderr += chunk
proc.on "exit", () ->
if stderr.trim() == "0 (0)"
fs.unlink diff_file # remove output diff if test matches expected image
callback null, true
else
console.log "compare result", stderr
callback null, false
# checkPdfInfo = (pdfPath, callback = (error, output) ->) ->
# proc = ChildProcess.exec "pdfinfo #{fixturePath(pdfPath)}"
# stdout = ""
# proc.stdout.on "data", (chunk) -> stdout += chunk
# proc.stderr.on "data", (chunk) -> console.log "STDERR", chunk.toString()
# proc.on "exit", () ->
# if stdout.match(/Optimized:\s+yes/)
# callback null, true
# else
# console.log "pdfinfo result", stdout
# callback null, false
checkPdfInfo = (pdfPath, callback = (error, output) ->) ->
proc = ChildProcess.exec "pdfinfo #{fixturePath(pdfPath)}"
stdout = ""
proc.stdout.on "data", (chunk) -> stdout += chunk
proc.stderr.on "data", (chunk) -> console.log "STDERR", chunk.toString()
proc.on "exit", () ->
if stdout.match(/Optimized:\s+yes/)
callback null, true
else
callback null, false
# compareMultiplePages = (project_id, callback = (error) ->) ->
# compareNext = (page_no, callback) ->
# path = "tmp/#{project_id}-source-#{page_no}.png"
# fs.stat fixturePath(path), (error, stat) ->
# if error?
# callback()
# else
# compare "tmp/#{project_id}-source-#{page_no}.png", "tmp/#{project_id}-generated-#{page_no}.png", (error, same) =>
# throw error if error?
# same.should.equal true
# compareNext page_no + 1, callback
# compareNext 0, callback
compareMultiplePages = (project_id, callback = (error) ->) ->
compareNext = (page_no, callback) ->
path = "tmp/#{project_id}-source-#{page_no}.png"
fs.stat fixturePath(path), (error, stat) ->
if error?
callback()
else
compare "tmp/#{project_id}-source-#{page_no}.png", "tmp/#{project_id}-generated-#{page_no}.png", (error, same) =>
throw error if error?
same.should.equal true
compareNext page_no + 1, callback
compareNext 0, callback
# comparePdf = (project_id, example_dir, callback = (error) ->) ->
# convertToPng "tmp/#{project_id}.pdf", "tmp/#{project_id}-generated.png", (error) =>
# throw error if error?
# convertToPng "examples/#{example_dir}/output.pdf", "tmp/#{project_id}-source.png", (error) =>
# throw error if error?
# fs.stat fixturePath("tmp/#{project_id}-source-0.png"), (error, stat) =>
# if error?
# compare "tmp/#{project_id}-source.png", "tmp/#{project_id}-generated.png", (error, same) =>
# throw error if error?
# same.should.equal true
# callback()
# else
# compareMultiplePages project_id, (error) ->
# throw error if error?
# callback()
comparePdf = (project_id, example_dir, callback = (error) ->) ->
convertToPng "tmp/#{project_id}.pdf", "tmp/#{project_id}-generated.png", (error) =>
throw error if error?
convertToPng "examples/#{example_dir}/output.pdf", "tmp/#{project_id}-source.png", (error) =>
throw error if error?
fs.stat fixturePath("tmp/#{project_id}-source-0.png"), (error, stat) =>
if error?
compare "tmp/#{project_id}-source.png", "tmp/#{project_id}-generated.png", (error, same) =>
throw error if error?
same.should.equal true
callback()
else
compareMultiplePages project_id, (error) ->
throw error if error?
callback()
# downloadAndComparePdf = (project_id, example_dir, url, callback = (error) ->) ->
# writeStream = fs.createWriteStream(fixturePath("tmp/#{project_id}.pdf"))
# request.get(url).pipe(writeStream)
# writeStream.on "close", () =>
# checkPdfInfo "tmp/#{project_id}.pdf", (error, optimised) =>
# throw error if error?
# optimised.should.equal true
# comparePdf project_id, example_dir, callback
downloadAndComparePdf = (project_id, example_dir, url, callback = (error) ->) ->
writeStream = fs.createWriteStream(fixturePath("tmp/#{project_id}.pdf"))
request.get(url).pipe(writeStream)
writeStream.on "close", () =>
checkPdfInfo "tmp/#{project_id}.pdf", (error, optimised) =>
throw error if error?
optimised.should.equal true
comparePdf project_id, example_dir, callback
# Client.runServer(4242, fixturePath("examples"))
Client.runServer(4242, fixturePath("examples"))
# describe "Example Documents", ->
# before (done) ->
# ChildProcess.exec("rm test/acceptance/fixtures/tmp/*").on "exit", () ->
# ClsiApp.ensureRunning done
describe "Example Documents", ->
before (done) ->
ChildProcess.exec("rm test/acceptance/fixtures/tmp/*").on "exit", () ->
ClsiApp.ensureRunning done
# for example_dir in fs.readdirSync fixturePath("examples")
# do (example_dir) ->
# describe example_dir, ->
# before ->
# @project_id = Client.randomId() + "_" + example_dir
for example_dir in fs.readdirSync fixturePath("examples")
do (example_dir) ->
describe example_dir, ->
before ->
@project_id = Client.randomId() + "_" + example_dir
# it "should generate the correct pdf", (done) ->
# Client.compileDirectory @project_id, fixturePath("examples"), example_dir, 4242, (error, res, body) =>
# if error || body?.compile?.status is "failure"
# console.log "DEBUG: error", error, "body", JSON.stringify(body)
# pdf = Client.getOutputFile body, "pdf"
# downloadAndComparePdf(@project_id, example_dir, pdf.url, done)
it "should generate the correct pdf", (done) ->
Client.compileDirectory @project_id, fixturePath("examples"), example_dir, 4242, (error, res, body) =>
if error || body?.compile?.status is "failure"
console.log "DEBUG: error", error, "body", JSON.stringify(body)
pdf = Client.getOutputFile body, "pdf"
downloadAndComparePdf(@project_id, example_dir, pdf.url, done)
# it "should generate the correct pdf on the second run as well", (done) ->
# Client.compileDirectory @project_id, fixturePath("examples"), example_dir, 4242, (error, res, body) =>
# if error || body?.compile?.status is "failure"
# console.log "DEBUG: error", error, "body", JSON.stringify(body)
# pdf = Client.getOutputFile body, "pdf"
# downloadAndComparePdf(@project_id, example_dir, pdf.url, done)
it "should generate the correct pdf on the second run as well", (done) ->
Client.compileDirectory @project_id, fixturePath("examples"), example_dir, 4242, (error, res, body) =>
if error || body?.compile?.status is "failure"
console.log "DEBUG: error", error, "body", JSON.stringify(body)
pdf = Client.getOutputFile body, "pdf"
downloadAndComparePdf(@project_id, example_dir, pdf.url, done)

View File

@@ -1,41 +1,42 @@
# Client = require "./helpers/Client"
# request = require "request"
# require("chai").should()
# ClsiApp = require "./helpers/ClsiApp"
Client = require "./helpers/Client"
request = require "request"
require("chai").should()
ClsiApp = require "./helpers/ClsiApp"
# describe "Simple LaTeX file", ->
# before (done) ->
# @project_id = Client.randomId()
# @request =
# resources: [
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\begin{document}
# Hello world
# \\end{document}
# '''
# ]
# ClsiApp.ensureRunning =>
# Client.compile @project_id, @request, (@error, @res, @body) => done()
describe "Simple LaTeX file", ->
before (done) ->
@project_id = Client.randomId()
@request =
resources: [
path: "main.tex"
content: '''
\\documentclass{article}
\\begin{document}
Hello world
\\end{document}
'''
]
ClsiApp.ensureRunning =>
Client.compile @project_id, @request, (@error, @res, @body) => done()
# it "should return the PDF", ->
# pdf = Client.getOutputFile(@body, "pdf")
# pdf.type.should.equal "pdf"
it "should return the PDF", ->
pdf = Client.getOutputFile(@body, "pdf")
console.log @body
pdf.type.should.equal "pdf"
# it "should return the log", ->
# log = Client.getOutputFile(@body, "log")
# log.type.should.equal "log"
it "should return the log", ->
log = Client.getOutputFile(@body, "log")
log.type.should.equal "log"
# it "should provide the pdf for download", (done) ->
# pdf = Client.getOutputFile(@body, "pdf")
# request.get pdf.url, (error, res, body) ->
# res.statusCode.should.equal 200
# done()
it "should provide the pdf for download", (done) ->
pdf = Client.getOutputFile(@body, "pdf")
request.get pdf.url, (error, res, body) ->
res.statusCode.should.equal 200
done()
# it "should provide the log for download", (done) ->
# log = Client.getOutputFile(@body, "pdf")
# request.get log.url, (error, res, body) ->
# res.statusCode.should.equal 200
# done()
it "should provide the log for download", (done) ->
log = Client.getOutputFile(@body, "pdf")
request.get log.url, (error, res, body) ->
res.statusCode.should.equal 200
done()

View File

@@ -3,35 +3,37 @@ request = require "request"
require("chai").should()
expect = require("chai").expect
ClsiApp = require "./helpers/ClsiApp"
crypto = require("crypto")
describe "Syncing", ->
before (done) ->
@request =
resources: [
path: "main.tex"
content: '''
content = '''
\\documentclass{article}
\\begin{document}
Hello world
\\end{document}
'''
@request =
resources: [
path: "main.tex"
content: content
]
@project_id = Client.randomId()
ClsiApp.ensureRunning =>
Client.compile @project_id, @request, (@error, @res, @body) => done()
# describe "from code to pdf", ->
# it "should return the correct location", (done) ->
# Client.syncFromCode @project_id, "main.tex", 3, 5, (error, pdfPositions) ->
# throw error if error?
# expect(pdfPositions).to.deep.equal(
# pdf: [ { page: 1, h: 133.77, v: 134.76, height: 6.92, width: 343.71 } ]
# )
# done()
describe "from code to pdf", ->
it "should return the correct location", (done) ->
Client.syncFromCode @project_id, "main.tex", 3, 5, (error, pdfPositions) ->
throw error if error?
expect(pdfPositions).to.deep.equal(
pdf: [ { page: 1, h: 133.77, v: 134.76, height: 6.92, width: 343.71 } ]
)
done()
describe "from pdf to code", ->
it "should return the correct location", (done) ->
Client.syncFromPdf @project_id, 1, 100, 200, (error, codePositions) ->
Client.syncFromPdf @project_id, 1, 100, 200, (error, codePositions) =>
throw error if error?
expect(codePositions).to.deep.equal(
code: [ { file: 'main.tex', line: 3, column: -1 } ]

View File

@@ -15,7 +15,6 @@
# \\documentclass{article}
# \\begin{document}
# Hello world
# \\input{|"sleep 10"}
# \\end{document}
# '''
# ]

View File

@@ -1,5 +1,5 @@
app = require('../../../../app')
require("logger-sharelatex").logger.level("error")
require("logger-sharelatex").logger.level("info")
logger = require("logger-sharelatex")
Settings = require("settings-sharelatex")