wip, docker container is correctly created

This commit is contained in:
Henry Oswald 2018-02-26 14:29:30 +00:00
parent 603069ea59
commit 3399f55153
11 changed files with 495 additions and 485 deletions

View file

@ -41,7 +41,7 @@ module.exports = CompileManager =
doCompile: (request, callback = (error, outputFiles) ->) ->
compileDir = getCompileDir(request.project_id, request.user_id)
console.log("doCompile",compileDir )
# console.log("doCompile", compileDir)
timer = new Metrics.Timer("write-to-disk")
logger.log project_id: request.project_id, user_id: request.user_id, "syncing resources to disk"
@ -206,9 +206,9 @@ module.exports = CompileManager =
base_dir = Settings.path.synctexBaseDir(compileName)
file_path = base_dir + "/" + file_name
compileDir = getCompileDir(project_id, user_id)
synctex_path = Path.join(compileDir, "output.pdf")
synctex_path = "$COMPILE_DIR/output.pdf"
command = ["code", synctex_path, file_path, line, column]
CompileManager._runSynctex command, (error, stdout) ->
CompileManager._runSynctex project_id, user_id, command, (error, stdout) ->
return callback(error) if error?
if stdout.toLowerCase().indexOf("warning") == -1
logType = "log"
@ -221,9 +221,9 @@ module.exports = CompileManager =
compileName = getCompileName(project_id, user_id)
base_dir = Settings.path.synctexBaseDir(compileName)
compileDir = getCompileDir(project_id, user_id)
synctex_path = Path.join(compileDir, "output.pdf")
logger.log({base_dir, project_id, synctex_path}, "base diiir")
CompileManager._runSynctex ["pdf", synctex_path, page, h, v], (error, stdout) ->
synctex_path = "$COMPILE_DIR/output.pdf"
command = ["pdf", synctex_path, page, h, v]
CompileManager._runSynctex project_id, user_id, command, (error, stdout) ->
return callback(error) if error?
logger.log project_id: project_id, user_id:user_id, page: page, h: h, v:v, stdout: stdout, "synctex pdf output"
callback null, CompileManager._parseSynctexFromPdfOutput(stdout, base_dir)
@ -242,18 +242,20 @@ module.exports = CompileManager =
return callback(new Error("not a file")) if not stats?.isFile()
callback()
_runSynctex: (args, callback = (error, stdout) ->) ->
bin_path = Path.resolve(__dirname + "/../../bin/synctex")
_runSynctex: (project_id, user_id, command, callback = (error, stdout) ->) ->
seconds = 1000
outputFilePath = args[1]
CompileManager._checkFileExists outputFilePath, (error) ->
return callback(error) if error?
if Settings.clsi?.synctexCommandWrapper?
[bin_path, args] = Settings.clsi?.synctexCommandWrapper bin_path, args
logger.log({bin_path, args}, "synctex being run")
child_process.execFile bin_path, args, timeout: 10 * seconds, (error, stdout, stderr) ->
#this is a hack, only works for docker runner
command.unshift("/opt/synctex")
directory = getCompileDir(project_id, user_id)
timeout = 10 * 1000
compileName = getCompileName(project_id, user_id)
console.log command, "_runSynctex"
CommandRunner.run compileName, command, directory, Settings.clsi.docker.image, timeout, {}, (error, stdout) ->
console.log("synctex run", stdout)
if error?
logger.err err:error, args:args, "error running synctex"
logger.err err:error, command:command, "error running synctex"
return callback(error)
callback(null, stdout)

View file

@ -41,5 +41,3 @@ if process.env["COMMAND_RUNNER"]
checkProjectsIntervalMs: 10 * 60 * 1000
module.exports.path.sandboxedCompilesHostDir = process.env["COMPILES_HOST_DIR"]
console.log module.exports

View file

@ -29,6 +29,17 @@ services:
- mongo
entrypoint: npm run test:acceptance
synctex:
image: quay.io/sharelatex/texlive-full:2017.1
volumes:
- ~/Projects/sharelatex-dev-environment/clsi/compiles/564c29f884179:/compile
- ./bin/synctex:/opt/synctex
command:
/opt/synctex pdf /compile/output.pdf 1 100 200
redis:
image: redis

View file

@ -1,49 +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", ->
console.log(@error, @res, @body)
@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,114 @@
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
# console.log "pdfinfo result", stdout
# 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,41 @@
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")
# 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

@ -20,14 +20,14 @@ describe "Syncing", ->
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) ->

View file

@ -1,31 +1,31 @@
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 "Timed out compile", ->
before (done) ->
@request =
options:
timeout: 1 #seconds
resources: [
path: "main.tex"
content: '''
\\documentclass{article}
\\begin{document}
Hello world
\\input{|"sleep 10"}
\\end{document}
'''
]
@project_id = Client.randomId()
ClsiApp.ensureRunning =>
Client.compile @project_id, @request, (@error, @res, @body) => done()
# describe "Timed out compile", ->
# before (done) ->
# @request =
# options:
# timeout: 1 #seconds
# resources: [
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\begin{document}
# Hello world
# \\input{|"sleep 10"}
# \\end{document}
# '''
# ]
# @project_id = Client.randomId()
# ClsiApp.ensureRunning =>
# Client.compile @project_id, @request, (@error, @res, @body) => done()
it "should return a timeout error", ->
@body.compile.error.should.equal "container timed out"
# it "should return a timeout error", ->
# @body.compile.error.should.equal "container timed out"
it "should return a timedout status", ->
@body.compile.status.should.equal "timedout"
# it "should return a timedout status", ->
# @body.compile.status.should.equal "timedout"

View file

@ -1,222 +1,222 @@
Client = require "./helpers/Client"
request = require "request"
require("chai").should()
sinon = require "sinon"
ClsiApp = require "./helpers/ClsiApp"
# Client = require "./helpers/Client"
# request = require "request"
# require("chai").should()
# sinon = require "sinon"
# ClsiApp = require "./helpers/ClsiApp"
host = "localhost"
# host = "localhost"
Server =
run: () ->
express = require "express"
app = express()
# Server =
# run: () ->
# express = require "express"
# app = express()
staticServer = express.static __dirname + "/../fixtures/"
app.get "/:random_id/*", (req, res, next) =>
@getFile(req.url)
req.url = "/" + req.params[0]
staticServer(req, res, next)
# staticServer = express.static __dirname + "/../fixtures/"
# app.get "/:random_id/*", (req, res, next) =>
# @getFile(req.url)
# req.url = "/" + req.params[0]
# staticServer(req, res, next)
app.listen 31415, host
# app.listen 31415, host
getFile: () ->
# getFile: () ->
randomId: () ->
Math.random().toString(16).slice(2)
# randomId: () ->
# Math.random().toString(16).slice(2)
Server.run()
# Server.run()
describe "Url Caching", ->
describe "Downloading an image for the first time", ->
before (done) ->
@project_id = Client.randomId()
@file = "#{Server.randomId()}/lion.png"
@request =
resources: [{
path: "main.tex"
content: '''
\\documentclass{article}
\\usepackage{graphicx}
\\begin{document}
\\includegraphics{lion.png}
\\end{document}
'''
}, {
path: "lion.png"
url: "http://#{host}:31415/#{@file}"
}]
# describe "Url Caching", ->
# describe "Downloading an image for the first time", ->
# before (done) ->
# @project_id = Client.randomId()
# @file = "#{Server.randomId()}/lion.png"
# @request =
# resources: [{
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\usepackage{graphicx}
# \\begin{document}
# \\includegraphics{lion.png}
# \\end{document}
# '''
# }, {
# path: "lion.png"
# url: "http://#{host}:31415/#{@file}"
# }]
sinon.spy Server, "getFile"
ClsiApp.ensureRunning =>
Client.compile @project_id, @request, (@error, @res, @body) => done()
# sinon.spy Server, "getFile"
# ClsiApp.ensureRunning =>
# Client.compile @project_id, @request, (@error, @res, @body) => done()
afterEach ->
Server.getFile.restore()
# afterEach ->
# Server.getFile.restore()
it "should download the image", ->
Server.getFile
.calledWith("/" + @file)
.should.equal true
# it "should download the image", ->
# Server.getFile
# .calledWith("/" + @file)
# .should.equal true
describe "When an image is in the cache and the last modified date is unchanged", ->
before (done) ->
@project_id = Client.randomId()
@file = "#{Server.randomId()}/lion.png"
@request =
resources: [{
path: "main.tex"
content: '''
\\documentclass{article}
\\usepackage{graphicx}
\\begin{document}
\\includegraphics{lion.png}
\\end{document}
'''
}, @image_resource = {
path: "lion.png"
url: "http://#{host}:31415/#{@file}"
modified: Date.now()
}]
# describe "When an image is in the cache and the last modified date is unchanged", ->
# before (done) ->
# @project_id = Client.randomId()
# @file = "#{Server.randomId()}/lion.png"
# @request =
# resources: [{
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\usepackage{graphicx}
# \\begin{document}
# \\includegraphics{lion.png}
# \\end{document}
# '''
# }, @image_resource = {
# path: "lion.png"
# url: "http://#{host}:31415/#{@file}"
# modified: Date.now()
# }]
Client.compile @project_id, @request, (@error, @res, @body) =>
sinon.spy Server, "getFile"
Client.compile @project_id, @request, (@error, @res, @body) =>
done()
# Client.compile @project_id, @request, (@error, @res, @body) =>
# sinon.spy Server, "getFile"
# Client.compile @project_id, @request, (@error, @res, @body) =>
# done()
after ->
Server.getFile.restore()
# after ->
# Server.getFile.restore()
it "should not download the image again", ->
Server.getFile.called.should.equal false
# it "should not download the image again", ->
# Server.getFile.called.should.equal false
describe "When an image is in the cache and the last modified date is advanced", ->
before (done) ->
@project_id = Client.randomId()
@file = "#{Server.randomId()}/lion.png"
@request =
resources: [{
path: "main.tex"
content: '''
\\documentclass{article}
\\usepackage{graphicx}
\\begin{document}
\\includegraphics{lion.png}
\\end{document}
'''
}, @image_resource = {
path: "lion.png"
url: "http://#{host}:31415/#{@file}"
modified: @last_modified = Date.now()
}]
# describe "When an image is in the cache and the last modified date is advanced", ->
# before (done) ->
# @project_id = Client.randomId()
# @file = "#{Server.randomId()}/lion.png"
# @request =
# resources: [{
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\usepackage{graphicx}
# \\begin{document}
# \\includegraphics{lion.png}
# \\end{document}
# '''
# }, @image_resource = {
# path: "lion.png"
# url: "http://#{host}:31415/#{@file}"
# modified: @last_modified = Date.now()
# }]
Client.compile @project_id, @request, (@error, @res, @body) =>
sinon.spy Server, "getFile"
@image_resource.modified = new Date(@last_modified + 3000)
Client.compile @project_id, @request, (@error, @res, @body) =>
done()
# Client.compile @project_id, @request, (@error, @res, @body) =>
# sinon.spy Server, "getFile"
# @image_resource.modified = new Date(@last_modified + 3000)
# Client.compile @project_id, @request, (@error, @res, @body) =>
# done()
afterEach ->
Server.getFile.restore()
# afterEach ->
# Server.getFile.restore()
it "should download the image again", ->
Server.getFile.called.should.equal true
# it "should download the image again", ->
# Server.getFile.called.should.equal true
describe "When an image is in the cache and the last modified date is further in the past", ->
before (done) ->
@project_id = Client.randomId()
@file = "#{Server.randomId()}/lion.png"
@request =
resources: [{
path: "main.tex"
content: '''
\\documentclass{article}
\\usepackage{graphicx}
\\begin{document}
\\includegraphics{lion.png}
\\end{document}
'''
}, @image_resource = {
path: "lion.png"
url: "http://#{host}:31415/#{@file}"
modified: @last_modified = Date.now()
}]
# describe "When an image is in the cache and the last modified date is further in the past", ->
# before (done) ->
# @project_id = Client.randomId()
# @file = "#{Server.randomId()}/lion.png"
# @request =
# resources: [{
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\usepackage{graphicx}
# \\begin{document}
# \\includegraphics{lion.png}
# \\end{document}
# '''
# }, @image_resource = {
# path: "lion.png"
# url: "http://#{host}:31415/#{@file}"
# modified: @last_modified = Date.now()
# }]
Client.compile @project_id, @request, (@error, @res, @body) =>
sinon.spy Server, "getFile"
@image_resource.modified = new Date(@last_modified - 3000)
Client.compile @project_id, @request, (@error, @res, @body) =>
done()
# Client.compile @project_id, @request, (@error, @res, @body) =>
# sinon.spy Server, "getFile"
# @image_resource.modified = new Date(@last_modified - 3000)
# Client.compile @project_id, @request, (@error, @res, @body) =>
# done()
afterEach ->
Server.getFile.restore()
# afterEach ->
# Server.getFile.restore()
it "should not download the image again", ->
Server.getFile.called.should.equal false
# it "should not download the image again", ->
# Server.getFile.called.should.equal false
describe "When an image is in the cache and the last modified date is not specified", ->
before (done) ->
@project_id = Client.randomId()
@file = "#{Server.randomId()}/lion.png"
@request =
resources: [{
path: "main.tex"
content: '''
\\documentclass{article}
\\usepackage{graphicx}
\\begin{document}
\\includegraphics{lion.png}
\\end{document}
'''
}, @image_resource = {
path: "lion.png"
url: "http://#{host}:31415/#{@file}"
modified: @last_modified = Date.now()
}]
# describe "When an image is in the cache and the last modified date is not specified", ->
# before (done) ->
# @project_id = Client.randomId()
# @file = "#{Server.randomId()}/lion.png"
# @request =
# resources: [{
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\usepackage{graphicx}
# \\begin{document}
# \\includegraphics{lion.png}
# \\end{document}
# '''
# }, @image_resource = {
# path: "lion.png"
# url: "http://#{host}:31415/#{@file}"
# modified: @last_modified = Date.now()
# }]
Client.compile @project_id, @request, (@error, @res, @body) =>
sinon.spy Server, "getFile"
delete @image_resource.modified
Client.compile @project_id, @request, (@error, @res, @body) =>
done()
# Client.compile @project_id, @request, (@error, @res, @body) =>
# sinon.spy Server, "getFile"
# delete @image_resource.modified
# Client.compile @project_id, @request, (@error, @res, @body) =>
# done()
afterEach ->
Server.getFile.restore()
# afterEach ->
# Server.getFile.restore()
it "should download the image again", ->
Server.getFile.called.should.equal true
# it "should download the image again", ->
# Server.getFile.called.should.equal true
describe "After clearing the cache", ->
before (done) ->
@project_id = Client.randomId()
@file = "#{Server.randomId()}/lion.png"
@request =
resources: [{
path: "main.tex"
content: '''
\\documentclass{article}
\\usepackage{graphicx}
\\begin{document}
\\includegraphics{lion.png}
\\end{document}
'''
}, @image_resource = {
path: "lion.png"
url: "http://#{host}:31415/#{@file}"
modified: @last_modified = Date.now()
}]
# describe "After clearing the cache", ->
# before (done) ->
# @project_id = Client.randomId()
# @file = "#{Server.randomId()}/lion.png"
# @request =
# resources: [{
# path: "main.tex"
# content: '''
# \\documentclass{article}
# \\usepackage{graphicx}
# \\begin{document}
# \\includegraphics{lion.png}
# \\end{document}
# '''
# }, @image_resource = {
# path: "lion.png"
# url: "http://#{host}:31415/#{@file}"
# modified: @last_modified = Date.now()
# }]
Client.compile @project_id, @request, (error) =>
throw error if error?
Client.clearCache @project_id, (error, res, body) =>
throw error if error?
sinon.spy Server, "getFile"
Client.compile @project_id, @request, (@error, @res, @body) =>
done()
# Client.compile @project_id, @request, (error) =>
# throw error if error?
# Client.clearCache @project_id, (error, res, body) =>
# throw error if error?
# sinon.spy Server, "getFile"
# Client.compile @project_id, @request, (@error, @res, @body) =>
# done()
afterEach ->
Server.getFile.restore()
# afterEach ->
# Server.getFile.restore()
it "should download the image again", ->
Server.getFile.called.should.equal true
# it "should download the image again", ->
# Server.getFile.called.should.equal true

View file

@ -1,38 +1,38 @@
Client = require "./helpers/Client"
request = require "request"
require("chai").should()
expect = require("chai").expect
path = require("path")
fs = require("fs")
ClsiApp = require "./helpers/ClsiApp"
# Client = require "./helpers/Client"
# request = require "request"
# require("chai").should()
# expect = require("chai").expect
# path = require("path")
# fs = require("fs")
# ClsiApp = require "./helpers/ClsiApp"
describe "Syncing", ->
before (done) ->
@request =
resources: [
path: "main.tex"
content: fs.readFileSync(path.join(__dirname,"../fixtures/naugty_strings.txt"),"utf-8")
]
@project_id = Client.randomId()
ClsiApp.ensureRunning =>
Client.compile @project_id, @request, (@error, @res, @body) => done()
# describe "Syncing", ->
# before (done) ->
# @request =
# resources: [
# path: "main.tex"
# content: fs.readFileSync(path.join(__dirname,"../fixtures/naugty_strings.txt"),"utf-8")
# ]
# @project_id = Client.randomId()
# ClsiApp.ensureRunning =>
# Client.compile @project_id, @request, (@error, @res, @body) => done()
describe "wordcount file", ->
it "should return wordcount info", (done) ->
Client.wordcount @project_id, "main.tex", (error, result) ->
throw error if error?
expect(result).to.deep.equal(
texcount: {
encode: "utf8"
textWords: 2281
headWords: 2
outside: 0
headers: 2
elements: 0
mathInline: 6
mathDisplay: 0
errors: 0
messages: ""
}
)
done()
# describe "wordcount file", ->
# it "should return wordcount info", (done) ->
# Client.wordcount @project_id, "main.tex", (error, result) ->
# throw error if error?
# expect(result).to.deep.equal(
# texcount: {
# encode: "utf8"
# textWords: 2281
# headWords: 2
# outside: 0
# headers: 2
# elements: 0
# mathInline: 6
# mathDisplay: 0
# errors: 0
# messages: ""
# }
# )
# done()