mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
226 lines
6.9 KiB
CoffeeScript
226 lines
6.9 KiB
CoffeeScript
assert = require("chai").assert
|
|
sinon = require('sinon')
|
|
chai = require('chai')
|
|
should = chai.should()
|
|
expect = chai.expect
|
|
modulePath = "../../../app/js/LocalFileWriter.js"
|
|
SandboxedModule = require('sandboxed-module')
|
|
fs = require("fs")
|
|
request = require("request")
|
|
settings = require("settings-sharelatex")
|
|
FilestoreApp = require "./FilestoreApp"
|
|
async = require('async')
|
|
|
|
|
|
getMetric = (filestoreUrl, metric, cb) ->
|
|
request.get "#{filestoreUrl}/metrics", (err, res) ->
|
|
expect(res.statusCode).to.equal 200
|
|
metricRegex = new RegExp("^#{metric}{[^}]+} ([0-9]+)$", "m")
|
|
cb(parseInt(metricRegex.exec(res.body)?[1] || '0'))
|
|
|
|
describe "Filestore", ->
|
|
before (done)->
|
|
@localFileReadPath = "/tmp/filestore_acceptence_tests_file_read.txt"
|
|
@localFileWritePath = "/tmp/filestore_acceptence_tests_file_write.txt"
|
|
|
|
@constantFileContent = [
|
|
"hello world"
|
|
"line 2 goes here #{Math.random()}"
|
|
"there are 3 lines in all"
|
|
].join("\n")
|
|
|
|
@filestoreUrl = "http://localhost:#{settings.internal.filestore.port}"
|
|
fs.writeFile @localFileReadPath, @constantFileContent, (err) ->
|
|
return done(err) if err
|
|
FilestoreApp.waitForS3(done)
|
|
|
|
beforeEach (done)->
|
|
FilestoreApp.ensureRunning =>
|
|
async.parallel [
|
|
(cb) =>
|
|
fs.unlink @localFileWritePath, () ->
|
|
cb()
|
|
(cb) =>
|
|
getMetric @filestoreUrl, 's3_egress', (metric) =>
|
|
@previousEgress = metric
|
|
cb()
|
|
(cb) =>
|
|
getMetric @filestoreUrl, 's3_ingress', (metric) =>
|
|
@previousIngress = metric
|
|
cb()
|
|
], done
|
|
|
|
it "should send a 200 for status endpoint", (done)->
|
|
request "#{@filestoreUrl}/status", (err, response, body)->
|
|
response.statusCode.should.equal 200
|
|
body.indexOf("filestore").should.not.equal -1
|
|
body.indexOf("up").should.not.equal -1
|
|
done()
|
|
|
|
describe "with a file on the server", ->
|
|
|
|
beforeEach (done)->
|
|
@timeout(1000 * 10)
|
|
@file_id = Math.random()
|
|
@fileUrl = "#{@filestoreUrl}/project/acceptence_tests/file/#{@file_id}"
|
|
|
|
writeStream = request.post(@fileUrl)
|
|
|
|
writeStream.on "end", done
|
|
fs.createReadStream(@localFileReadPath).pipe writeStream
|
|
|
|
it "should return 404 for a non-existant id", (done) ->
|
|
@timeout(1000 * 20)
|
|
options =
|
|
uri: @fileUrl + '___this_is_clearly_wrong___'
|
|
request.get options, (err, response, body) =>
|
|
response.statusCode.should.equal 404
|
|
done()
|
|
|
|
it 'should record an egress metric for the upload', (done) ->
|
|
getMetric @filestoreUrl, 's3_egress', (metric) =>
|
|
expect(metric - @previousEgress).to.equal @constantFileContent.length
|
|
done()
|
|
|
|
it "should return the file size on a HEAD request", (done) ->
|
|
expectedLength = Buffer.byteLength(@constantFileContent)
|
|
request.head @fileUrl, (err, res) =>
|
|
expect(res.statusCode).to.equal(200)
|
|
expect(res.headers['content-length']).to.equal(expectedLength.toString())
|
|
done()
|
|
|
|
it "should be able get the file back", (done)->
|
|
@timeout(1000 * 10)
|
|
request.get @fileUrl, (err, response, body)=>
|
|
body.should.equal @constantFileContent
|
|
done()
|
|
|
|
it "should record an ingress metric when downloading the file", (done)->
|
|
@timeout(1000 * 10)
|
|
request.get @fileUrl, () =>
|
|
getMetric @filestoreUrl, 's3_ingress', (metric) =>
|
|
expect(metric - @previousIngress).to.equal @constantFileContent.length
|
|
done()
|
|
|
|
it "should be able to get back the first 9 bytes of the file", (done) ->
|
|
@timeout(1000 * 10)
|
|
options =
|
|
uri: @fileUrl
|
|
headers:
|
|
'Range': 'bytes=0-8'
|
|
request.get options, (err, response, body)=>
|
|
body.should.equal 'hello wor'
|
|
done()
|
|
|
|
it "should record an ingress metric for a partial download", (done)->
|
|
@timeout(1000 * 10)
|
|
options =
|
|
uri: @fileUrl
|
|
headers:
|
|
'Range': 'bytes=0-8'
|
|
request.get options, ()=>
|
|
getMetric @filestoreUrl, 's3_ingress', (metric) =>
|
|
expect(metric - @previousIngress).to.equal 9
|
|
done()
|
|
|
|
it "should be able to get back bytes 4 through 10 of the file", (done) ->
|
|
@timeout(1000 * 10)
|
|
options =
|
|
uri: @fileUrl
|
|
headers:
|
|
'Range': 'bytes=4-10'
|
|
request.get options, (err, response, body)=>
|
|
body.should.equal 'o world'
|
|
done()
|
|
|
|
it "should be able to delete the file", (done)->
|
|
@timeout(1000 * 20)
|
|
request.del @fileUrl, (err, response, body)=>
|
|
response.statusCode.should.equal 204
|
|
request.get @fileUrl, (err, response, body)=>
|
|
response.statusCode.should.equal 404
|
|
done()
|
|
|
|
it "should be able to copy files", (done)->
|
|
@timeout(1000 * 20)
|
|
|
|
newProjectID = "acceptence_tests_copyied_project"
|
|
newFileId = Math.random()
|
|
newFileUrl = "#{@filestoreUrl}/project/#{newProjectID}/file/#{newFileId}"
|
|
opts =
|
|
method: 'put'
|
|
uri: newFileUrl
|
|
json:
|
|
source:
|
|
project_id:"acceptence_tests"
|
|
file_id: @file_id
|
|
request opts, (err, response, body)=>
|
|
response.statusCode.should.equal 200
|
|
request.del @fileUrl, (err, response, body)=>
|
|
response.statusCode.should.equal 204
|
|
request.get newFileUrl, (err, response, body)=>
|
|
body.should.equal @constantFileContent
|
|
done()
|
|
|
|
describe "with a pdf file", ->
|
|
|
|
beforeEach (done)->
|
|
@timeout(1000 * 10)
|
|
@file_id = Math.random()
|
|
@fileUrl = "#{@filestoreUrl}/project/acceptence_tests/file/#{@file_id}"
|
|
@localFileReadPath = __dirname + '/../../fixtures/test.pdf'
|
|
fs.stat @localFileReadPath, (err, stat) =>
|
|
@localFileSize = stat.size
|
|
writeStream = request.post(@fileUrl)
|
|
|
|
writeStream.on "end", done
|
|
fs.createReadStream(@localFileReadPath).pipe writeStream
|
|
|
|
it 'should record an egress metric for the upload', (done) ->
|
|
getMetric @filestoreUrl, 's3_egress', (metric) =>
|
|
expect(metric - @previousEgress).to.equal @localFileSize
|
|
done()
|
|
|
|
it "should be able get the file back", (done)->
|
|
@timeout(1000 * 10)
|
|
request.get @fileUrl, (err, response, body)=>
|
|
expect(body.substring(0, 8)).to.equal '%PDF-1.5'
|
|
done()
|
|
|
|
describe "getting the preview image", ->
|
|
|
|
beforeEach ->
|
|
@previewFileUrl = "#{@fileUrl}?style=preview"
|
|
|
|
it "should not time out", (done) ->
|
|
@timeout(1000 * 20)
|
|
request.get @previewFileUrl, (err, response, body) =>
|
|
expect(response).to.not.equal null
|
|
done()
|
|
|
|
it "should respond with image data", (done) ->
|
|
# note: this test relies of the imagemagick conversion working
|
|
@timeout(1000 * 20)
|
|
request.get @previewFileUrl, (err, response, body) =>
|
|
expect(response.statusCode).to.equal 200
|
|
expect(body.length).to.be.greaterThan 400
|
|
done()
|
|
|
|
describe "warming the cache", ->
|
|
|
|
beforeEach ->
|
|
@fileUrl = @fileUrl + '?style=preview&cacheWarm=true'
|
|
|
|
it "should not time out", (done) ->
|
|
@timeout(1000 * 20)
|
|
request.get @fileUrl, (err, response, body) =>
|
|
expect(response).to.not.equal null
|
|
done()
|
|
|
|
it "should respond with only an 'OK'", (done) ->
|
|
# note: this test relies of the imagemagick conversion working
|
|
@timeout(1000 * 20)
|
|
request.get @fileUrl, (err, response, body) =>
|
|
expect(response.statusCode).to.equal 200
|
|
body.should.equal 'OK'
|
|
done()
|