mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
89 lines
2.6 KiB
CoffeeScript
89 lines
2.6 KiB
CoffeeScript
SandboxedModule = require('sandboxed-module')
|
|
sinon = require('sinon')
|
|
require('chai').should()
|
|
modulePath = require('path').join __dirname, '../../../app/js/UrlFetcher'
|
|
EventEmitter = require("events").EventEmitter
|
|
|
|
describe "UrlFetcher", ->
|
|
beforeEach ->
|
|
@callback = sinon.stub()
|
|
@url = "www.example.com/file"
|
|
@UrlFetcher = SandboxedModule.require modulePath, requires:
|
|
request: defaults: @defaults = sinon.stub().returns(@request = {})
|
|
fs: @fs = {}
|
|
"logger-sharelatex": @logger = { log: sinon.stub(), error: sinon.stub() }
|
|
|
|
it "should turn off the cookie jar in request", ->
|
|
@defaults.calledWith(jar: false)
|
|
.should.equal true
|
|
|
|
describe "pipeUrlToFile", ->
|
|
beforeEach (done)->
|
|
@path = "/path/to/file/on/disk"
|
|
@request.get = sinon.stub().returns(@urlStream = new EventEmitter)
|
|
@urlStream.pipe = sinon.stub()
|
|
@urlStream.pause = sinon.stub()
|
|
@urlStream.resume = sinon.stub()
|
|
@fs.createWriteStream = sinon.stub().returns(@fileStream = new EventEmitter)
|
|
@fs.unlink = (file, callback) -> callback()
|
|
done()
|
|
|
|
describe "successfully", ->
|
|
beforeEach (done)->
|
|
@UrlFetcher.pipeUrlToFile @url, @path, =>
|
|
@callback()
|
|
done()
|
|
@res = statusCode: 200
|
|
@urlStream.emit "response", @res
|
|
@urlStream.emit "end"
|
|
@fileStream.emit "finish"
|
|
|
|
|
|
it "should request the URL", ->
|
|
@request.get
|
|
.calledWith(sinon.match {"url": @url})
|
|
.should.equal true
|
|
|
|
it "should open the file for writing", ->
|
|
@fs.createWriteStream
|
|
.calledWith(@path)
|
|
.should.equal true
|
|
|
|
it "should pipe the URL to the file", ->
|
|
@urlStream.pipe
|
|
.calledWith(@fileStream)
|
|
.should.equal true
|
|
|
|
it "should call the callback", ->
|
|
@callback.called.should.equal true
|
|
|
|
describe "with non success status code", ->
|
|
beforeEach (done)->
|
|
@UrlFetcher.pipeUrlToFile @url, @path, (err)=>
|
|
@callback(err)
|
|
done()
|
|
@res = statusCode: 404
|
|
@urlStream.emit "response", @res
|
|
@urlStream.emit "end"
|
|
|
|
it "should call the callback with an error", ->
|
|
@callback
|
|
.calledWith(new Error("URL returned non-success status code: 404"))
|
|
.should.equal true
|
|
|
|
describe "with error", ->
|
|
beforeEach (done)->
|
|
@UrlFetcher.pipeUrlToFile @url, @path, (err)=>
|
|
@callback(err)
|
|
done()
|
|
@urlStream.emit "error", @error = new Error("something went wrong")
|
|
|
|
it "should call the callback with the error", ->
|
|
@callback
|
|
.calledWith(@error)
|
|
.should.equal true
|
|
|
|
it "should only call the callback once, even if end is called", ->
|
|
@urlStream.emit "end"
|
|
@callback.calledOnce.should.equal true
|
|
|