2015-12-30 10:08:12 -05:00
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
should = require('chai').should()
|
|
|
|
sinon = require 'sinon'
|
|
|
|
assert = require("chai").assert
|
|
|
|
modulePath = "../../../../app/js/Features/ReferencesSearch/ReferencesSearchController"
|
|
|
|
MockRequest = require "../helpers/MockRequest"
|
|
|
|
MockResponse = require "../helpers/MockResponse"
|
|
|
|
|
|
|
|
describe "ReferencesSearchController", ->
|
|
|
|
|
|
|
|
beforeEach ->
|
2016-01-26 09:29:23 -05:00
|
|
|
@projectId = '2222'
|
2015-12-30 10:08:12 -05:00
|
|
|
@controller = SandboxedModule.require modulePath, requires:
|
2015-12-30 11:15:31 -05:00
|
|
|
'logger-sharelatex': {
|
|
|
|
log: ->
|
|
|
|
err: ->
|
2016-01-26 09:29:23 -05:00
|
|
|
},
|
2015-12-30 10:08:12 -05:00
|
|
|
'settings-sharelatex': @settings = {
|
|
|
|
apis: {web: {url: 'http://some.url'}}
|
2016-01-26 09:29:23 -05:00
|
|
|
},
|
2015-12-31 04:39:48 -05:00
|
|
|
'./ReferencesSearchHandler': @ReferencesSearchHandler = {
|
2016-01-26 09:29:23 -05:00
|
|
|
index: sinon.stub()
|
|
|
|
},
|
|
|
|
'../Editor/EditorRealTimeController': @EditorRealTimeController = {
|
|
|
|
emitToRoom: sinon.stub()
|
2015-12-31 04:39:48 -05:00
|
|
|
}
|
2016-01-26 09:29:23 -05:00
|
|
|
@req = new MockRequest()
|
|
|
|
@req.params.Project_id = @projectId
|
|
|
|
@req.body =
|
|
|
|
docIds: @docIds = ['aaa', 'bbb']
|
|
|
|
shouldBroadcast: false
|
|
|
|
@res = new MockResponse()
|
|
|
|
@res.json = sinon.stub()
|
|
|
|
@res.send = sinon.stub()
|
|
|
|
@fakeResponseData =
|
|
|
|
projectId: @projectId,
|
|
|
|
keys: ['one', 'two', 'three']
|
|
|
|
|
|
|
|
describe 'index', ->
|
|
|
|
|
|
|
|
describe 'with docIds as an array and shouldBroadcast as false', ->
|
2015-12-31 04:39:48 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
beforeEach ->
|
|
|
|
@ReferencesSearchHandler.index.callsArgWith(2, null, @fakeResponseData)
|
|
|
|
@call = (callback) =>
|
|
|
|
@controller.index @req, @res
|
|
|
|
callback()
|
|
|
|
|
|
|
|
it 'should call ReferencesSearchHandler.index', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@ReferencesSearchHandler.index.callCount.should.equal 1
|
|
|
|
@ReferencesSearchHandler.index.calledWith(@projectId, @docIds).should.equal true
|
|
|
|
done()
|
2015-12-31 04:39:48 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should return data', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@res.json.callCount.should.equal 1
|
|
|
|
@res.json.calledWith(@fakeResponseData).should.equal true
|
|
|
|
done()
|
2015-12-31 04:39:48 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@res.send.callCount.should.equal 0
|
|
|
|
@res.send.calledWith(500).should.equal false
|
|
|
|
@res.send.calledWith(400).should.equal false
|
2015-12-31 04:39:48 -05:00
|
|
|
done()
|
2016-01-26 09:29:23 -05:00
|
|
|
|
|
|
|
it 'should not call EditorRealTimController.emitToRoom', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@EditorRealTimeController.emitToRoom.callCount.should.equal 0
|
2015-12-31 04:39:48 -05:00
|
|
|
done()
|
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
describe 'with docIds set to ALL', ->
|
2015-12-31 04:39:48 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
beforeEach ->
|
|
|
|
@req.body.docIds = 'ALL'
|
2015-12-31 04:39:48 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should still pass the "ALL" value to handler', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@ReferencesSearchHandler.index.callCount.should.equal 1
|
|
|
|
@ReferencesSearchHandler.index.calledWith(@projectId, 'ALL').should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@res.send.callCount.should.equal 0
|
|
|
|
@res.send.calledWith(500).should.equal false
|
|
|
|
@res.send.calledWith(400).should.equal false
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when ReferencesSearchHandler.index produces an error', ->
|
2015-12-30 10:08:12 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
beforeEach ->
|
|
|
|
@ReferencesSearchHandler.index.callsArgWith(2, new Error('woops'), null)
|
2015-12-30 10:08:12 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should produce an error response', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@res.send.callCount.should.equal 1
|
|
|
|
@res.send.calledWith(500).should.equal true
|
|
|
|
done()
|
2015-12-30 10:08:12 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
describe 'when shouldBroadcast is true', ->
|
2015-12-30 10:24:57 -05:00
|
|
|
|
|
|
|
beforeEach ->
|
2016-01-26 09:29:23 -05:00
|
|
|
@ReferencesSearchHandler.index.callsArgWith(2, null, @fakeResponseData)
|
|
|
|
@req.body.shouldBroadcast = true
|
2015-12-30 10:24:57 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should call EditorRealTimeController.emitToRoom', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@EditorRealTimeController.emitToRoom.callCount.should.equal 1
|
2015-12-30 10:24:57 -05:00
|
|
|
done()
|
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@res.send.callCount.should.equal 0
|
|
|
|
@res.send.calledWith(500).should.equal false
|
|
|
|
@res.send.calledWith(400).should.equal false
|
2015-12-30 10:24:57 -05:00
|
|
|
done()
|
2015-12-30 11:15:31 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should still return data', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@res.json.callCount.should.equal 1
|
|
|
|
@res.json.calledWith(@fakeResponseData).should.equal true
|
2015-12-30 11:15:31 -05:00
|
|
|
done()
|
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
describe 'with missing docIds', ->
|
2015-12-30 11:15:31 -05:00
|
|
|
|
|
|
|
beforeEach ->
|
2016-01-26 09:29:23 -05:00
|
|
|
delete @req.body.docIds
|
|
|
|
|
|
|
|
it 'should produce an error response', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@res.send.callCount.should.equal 1
|
|
|
|
@res.send.calledWith(400).should.equal true
|
2015-12-30 11:15:31 -05:00
|
|
|
done()
|
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should not call ReferencesSearchHandler.index', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@ReferencesSearchHandler.index.callCount.should.equal 0
|
2015-12-30 11:15:31 -05:00
|
|
|
done()
|
2015-12-30 11:20:14 -05:00
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
describe 'with invalid docIds', ->
|
2015-12-30 11:20:14 -05:00
|
|
|
|
|
|
|
beforeEach ->
|
2016-01-26 09:29:23 -05:00
|
|
|
@req.body.docIds = 42
|
|
|
|
|
|
|
|
it 'should produce an error response', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@res.send.callCount.should.equal 1
|
|
|
|
@res.send.calledWith(400).should.equal true
|
2015-12-30 11:20:14 -05:00
|
|
|
done()
|
|
|
|
|
2016-01-26 09:29:23 -05:00
|
|
|
it 'should not call ReferencesSearchHandler.index', (done) ->
|
|
|
|
@call () =>
|
|
|
|
@ReferencesSearchHandler.index.callCount.should.equal 0
|
2015-12-30 11:20:14 -05:00
|
|
|
done()
|