2014-02-14 11:39:05 -05:00
|
|
|
assert = require("chai").assert
|
|
|
|
sinon = require('sinon')
|
|
|
|
chai = require('chai')
|
|
|
|
should = chai.should()
|
|
|
|
expect = chai.expect
|
|
|
|
modulePath = "../../../app/js/ImageOptimiser.js"
|
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
|
|
|
|
describe "ImageOptimiser", ->
|
|
|
|
|
|
|
|
beforeEach ->
|
2014-02-19 08:02:53 -05:00
|
|
|
@child_process =
|
|
|
|
exec : sinon.stub()
|
2014-02-14 11:39:05 -05:00
|
|
|
|
|
|
|
@optimiser = SandboxedModule.require modulePath, requires:
|
2014-02-19 08:02:53 -05:00
|
|
|
'child_process': @child_process
|
2014-02-14 11:39:05 -05:00
|
|
|
"logger-sharelatex":
|
|
|
|
log:->
|
|
|
|
err:->
|
|
|
|
|
|
|
|
@sourcePath = "/this/path/here.eps"
|
|
|
|
@error = "Error"
|
|
|
|
|
|
|
|
describe "compressPng", ->
|
|
|
|
|
|
|
|
|
2014-02-19 08:02:53 -05:00
|
|
|
it "convert the file", (done)->
|
|
|
|
@child_process.exec.callsArgWith(2)
|
2014-02-14 11:39:05 -05:00
|
|
|
@optimiser.compressPng @sourcePath, (err)=>
|
2014-02-19 08:02:53 -05:00
|
|
|
args = @child_process.exec.args[0][0]
|
|
|
|
args.should.equal "optipng #{@sourcePath}"
|
2014-02-14 11:39:05 -05:00
|
|
|
done()
|
|
|
|
|
|
|
|
|
2014-02-19 08:02:53 -05:00
|
|
|
it "should return the errro the file", (done)->
|
|
|
|
@child_process.exec.callsArgWith(2, @error)
|
2014-02-14 11:39:05 -05:00
|
|
|
@optimiser.compressPng @sourcePath, (err)=>
|
2014-02-19 08:02:53 -05:00
|
|
|
err.should.equal @error
|
2014-02-14 11:39:05 -05:00
|
|
|
done()
|