2014-11-10 06:27:08 -05:00
|
|
|
chai = require("chai")
|
|
|
|
expect = chai.expect
|
|
|
|
chai.should()
|
|
|
|
|
|
|
|
RealTimeClient = require "./helpers/RealTimeClient"
|
2014-11-12 10:54:55 -05:00
|
|
|
MockWebServer = require "./helpers/MockWebServer"
|
|
|
|
FixturesManager = require "./helpers/FixturesManager"
|
|
|
|
|
2014-11-14 05:21:54 -05:00
|
|
|
async = require "async"
|
2014-11-10 06:27:08 -05:00
|
|
|
|
|
|
|
describe "joinProject", ->
|
2014-11-10 06:38:26 -05:00
|
|
|
describe "when authorized", ->
|
|
|
|
before (done) ->
|
2014-11-14 05:21:54 -05:00
|
|
|
async.series [
|
|
|
|
(cb) =>
|
|
|
|
FixturesManager.setUpProject {
|
|
|
|
privilegeLevel: "owner"
|
|
|
|
project: {
|
|
|
|
name: "Test Project"
|
|
|
|
}
|
|
|
|
}, (e, {@project_id, @user_id}) =>
|
|
|
|
cb(e)
|
2016-12-08 06:25:25 -05:00
|
|
|
|
2014-11-14 05:21:54 -05:00
|
|
|
(cb) =>
|
|
|
|
@client = RealTimeClient.connect()
|
2016-12-08 06:25:25 -05:00
|
|
|
@client.on "connectionAccepted", cb
|
2014-11-14 05:21:54 -05:00
|
|
|
|
|
|
|
(cb) =>
|
|
|
|
@client.emit "joinProject", project_id: @project_id, (error, @project, @privilegeLevel, @protocolVersion) =>
|
|
|
|
cb(error)
|
|
|
|
], done
|
2014-11-10 06:38:26 -05:00
|
|
|
|
|
|
|
it "should get the project from web", ->
|
2014-11-12 10:54:55 -05:00
|
|
|
MockWebServer.joinProject
|
2014-11-10 06:38:26 -05:00
|
|
|
.calledWith(@project_id, @user_id)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should return the project", ->
|
|
|
|
@project.should.deep.equal {
|
|
|
|
name: "Test Project"
|
|
|
|
}
|
|
|
|
|
|
|
|
it "should return the privilege level", ->
|
|
|
|
@privilegeLevel.should.equal "owner"
|
|
|
|
|
|
|
|
it "should return the protocolVersion", ->
|
|
|
|
@protocolVersion.should.equal 2
|
|
|
|
|
2014-11-13 06:48:49 -05:00
|
|
|
it "should have joined the project room", (done) ->
|
|
|
|
RealTimeClient.getConnectedClient @client.socket.sessionid, (error, client) =>
|
|
|
|
expect(@project_id in client.rooms).to.equal true
|
|
|
|
done()
|
2014-11-13 08:05:49 -05:00
|
|
|
|
|
|
|
it "should have marked the user as connected", (done) ->
|
2014-11-13 10:27:18 -05:00
|
|
|
@client.emit "clientTracking.getConnectedUsers", (error, users) =>
|
2014-11-13 08:05:49 -05:00
|
|
|
connected = false
|
|
|
|
for user in users
|
|
|
|
if user.client_id == @client.socket.sessionid and user.user_id == @user_id
|
|
|
|
connected = true
|
|
|
|
break
|
|
|
|
expect(connected).to.equal true
|
|
|
|
done()
|
2014-11-13 06:48:49 -05:00
|
|
|
|
2014-11-10 06:38:26 -05:00
|
|
|
describe "when not authorized", ->
|
|
|
|
before (done) ->
|
2014-11-14 05:21:54 -05:00
|
|
|
async.series [
|
|
|
|
(cb) =>
|
|
|
|
FixturesManager.setUpProject {
|
|
|
|
privilegeLevel: null
|
|
|
|
project: {
|
|
|
|
name: "Test Project"
|
|
|
|
}
|
|
|
|
}, (e, {@project_id, @user_id}) =>
|
|
|
|
cb(e)
|
2016-12-08 06:25:25 -05:00
|
|
|
|
2014-11-14 05:21:54 -05:00
|
|
|
(cb) =>
|
|
|
|
@client = RealTimeClient.connect()
|
2016-12-08 06:25:25 -05:00
|
|
|
@client.on "connectionAccepted", cb
|
2014-11-14 05:21:54 -05:00
|
|
|
|
|
|
|
(cb) =>
|
|
|
|
@client.emit "joinProject", project_id: @project_id, (@error, @project, @privilegeLevel, @protocolVersion) =>
|
|
|
|
cb()
|
|
|
|
], done
|
2014-11-10 06:38:26 -05:00
|
|
|
|
|
|
|
it "should return an error", ->
|
2016-12-08 06:12:07 -05:00
|
|
|
@error.message.should.equal "not authorized"
|
2014-11-13 06:48:49 -05:00
|
|
|
|
|
|
|
it "should not have joined the project room", (done) ->
|
|
|
|
RealTimeClient.getConnectedClient @client.socket.sessionid, (error, client) =>
|
|
|
|
expect(@project_id in client.rooms).to.equal false
|
|
|
|
done()
|