2014-07-04 08:05:55 -04:00
|
|
|
should = require('chai').should()
|
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
assert = require('assert')
|
|
|
|
path = require('path')
|
|
|
|
sinon = require('sinon')
|
|
|
|
modulePath = path.join __dirname, "../../../../app/js/Features/Chat/ChatController"
|
|
|
|
expect = require("chai").expect
|
|
|
|
|
|
|
|
describe "ChatController", ->
|
|
|
|
beforeEach ->
|
2016-12-16 11:42:41 -05:00
|
|
|
@user_id = 'mock-user-id'
|
2014-07-04 08:05:55 -04:00
|
|
|
@settings = {}
|
2016-12-16 11:42:41 -05:00
|
|
|
@ChatApiHandler = {}
|
2014-07-04 08:20:30 -04:00
|
|
|
@EditorRealTimeController =
|
|
|
|
emitToRoom:sinon.stub().callsArgWith(3)
|
2016-09-07 11:40:49 -04:00
|
|
|
@AuthenticationController =
|
|
|
|
getLoggedInUserId: sinon.stub().returns(@user_id)
|
2014-07-04 08:05:55 -04:00
|
|
|
@ChatController = SandboxedModule.require modulePath, requires:
|
2016-12-16 11:42:41 -05:00
|
|
|
"settings-sharelatex": @settings
|
|
|
|
"logger-sharelatex": log: ->
|
|
|
|
"./ChatApiHandler": @ChatApiHandler
|
|
|
|
"../Editor/EditorRealTimeController": @EditorRealTimeController
|
2016-09-07 11:40:49 -04:00
|
|
|
'../Authentication/AuthenticationController': @AuthenticationController
|
2014-07-10 10:12:28 -04:00
|
|
|
@req =
|
|
|
|
params:
|
2016-12-16 11:42:41 -05:00
|
|
|
project_id: @project_id
|
2015-05-19 06:04:52 -04:00
|
|
|
@res =
|
2016-12-16 11:42:41 -05:00
|
|
|
json: sinon.stub()
|
|
|
|
send: sinon.stub()
|
2014-07-04 08:05:55 -04:00
|
|
|
|
|
|
|
describe "sendMessage", ->
|
2016-12-16 11:42:41 -05:00
|
|
|
beforeEach ->
|
|
|
|
@req.body =
|
|
|
|
content: @content = "message-content"
|
|
|
|
@ChatApiHandler.sendGlobalMessage = sinon.stub().yields(null, @message = {"mock": "message"})
|
2014-07-10 10:12:28 -04:00
|
|
|
@ChatController.sendMessage @req, @res
|
2014-07-04 08:05:55 -04:00
|
|
|
|
2016-12-16 11:42:41 -05:00
|
|
|
it "should tell the chat handler about the message", ->
|
|
|
|
@ChatApiHandler.sendGlobalMessage
|
|
|
|
.calledWith(@project_id, @user_id, @content)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should tell the editor real time controller about the update with the data from the chat handler", ->
|
|
|
|
@EditorRealTimeController.emitToRoom
|
|
|
|
.calledWith(@project_id, "new-chat-message", @message)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should return a 204 status code", ->
|
|
|
|
@res.send.calledWith(204).should.equal true
|
2014-07-04 08:20:30 -04:00
|
|
|
|
2014-07-04 08:05:55 -04:00
|
|
|
describe "getMessages", ->
|
2014-07-10 10:12:28 -04:00
|
|
|
beforeEach ->
|
2016-12-16 11:42:41 -05:00
|
|
|
@req.query =
|
|
|
|
limit: @limit = "30"
|
|
|
|
before: @before = "12345"
|
|
|
|
@ChatApiHandler.getGlobalMessages = sinon.stub().yields(null, @messages = ["mock", "messages"])
|
2014-07-10 10:12:28 -04:00
|
|
|
@ChatController.getMessages @req, @res
|
2014-07-04 08:05:55 -04:00
|
|
|
|
2016-12-16 11:42:41 -05:00
|
|
|
it "should ask the chat handler about the request", ->
|
|
|
|
@ChatApiHandler.getGlobalMessages
|
|
|
|
.calledWith(@project_id, @limit, @before)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should return the messages", ->
|
|
|
|
@res.json.calledWith(@messages).should.equal true
|