overleaf/services/contacts/test/unit/coffee/HttpControllerTests.coffee
2015-10-06 16:41:35 +01:00

57 lines
1.7 KiB
CoffeeScript

sinon = require('sinon')
chai = require('chai')
should = chai.should()
expect = chai.expect
modulePath = "../../../app/js/HttpController.js"
SandboxedModule = require('sandboxed-module')
describe "HttpController", ->
beforeEach ->
@HttpController = SandboxedModule.require modulePath, requires:
"./ContactManager": @ContactManager = {}
"logger-sharelatex": @logger = { log: sinon.stub() }
@user_id = "mock-user-id"
@contact_id = "mock-contact-id"
@req = {}
@res = {}
@res.status = sinon.stub().returns @res
@res.end = sinon.stub()
@res.send = sinon.stub()
@next = sinon.stub()
describe "addContact", ->
beforeEach ->
@req.params =
user_id: @user_id
@ContactManager.touchContact = sinon.stub().callsArg(2)
describe "with a valid user_id and contact_id", ->
beforeEach ->
@req.body =
contact_id: @contact_id
@HttpController.addContact @req, @res, @next
it "should update the contact in the user's contact list", ->
@ContactManager.touchContact
.calledWith(@user_id, @contact_id)
.should.equal true
it "should update the user in the contact's contact list", ->
@ContactManager.touchContact
.calledWith(@contact_id, @user_id)
.should.equal true
it "should send back a 204 status", ->
@res.status.calledWith(204).should.equal true
@res.end.called.should.equal true
describe "with an invalid contact id", ->
beforeEach ->
@req.body =
contact_id: ""
@HttpController.addContact @req, @res, @next
it "should return 400, Bad Request", ->
@res.status.calledWith(400).should.equal true
@res.send.calledWith("contact_id should be a non-blank string").should.equal true