2016-12-14 12:38:14 -05:00
|
|
|
{ObjectId} = require "../../../app/js/mongojs"
|
|
|
|
expect = require("chai").expect
|
|
|
|
async = require "async"
|
|
|
|
crypto = require "crypto"
|
|
|
|
|
|
|
|
MockWebApi = require "./helpers/MockWebApi"
|
|
|
|
ChatClient = require "./helpers/ChatClient"
|
|
|
|
|
|
|
|
describe "Getting messages", ->
|
|
|
|
before ->
|
|
|
|
@user_id1 = ObjectId().toString()
|
|
|
|
@user_id2 = ObjectId().toString()
|
|
|
|
@content1 = "foo bar"
|
|
|
|
@content2 = "hello world"
|
|
|
|
MockWebApi.addUser @user_id1, @user1 = {
|
|
|
|
id: @user_id1
|
|
|
|
first_name: "Jane"
|
|
|
|
last_name: "Smith"
|
|
|
|
email: "jane@example.com"
|
|
|
|
}
|
|
|
|
MockWebApi.addUser @user_id2, @user2 = {
|
|
|
|
id: @user_id2
|
|
|
|
first_name: "John"
|
|
|
|
last_name: "Doe"
|
|
|
|
email: "john@example.com"
|
|
|
|
}
|
|
|
|
|
2016-12-16 11:52:50 -05:00
|
|
|
describe "globally", ->
|
2016-12-14 12:38:14 -05:00
|
|
|
before (done) ->
|
|
|
|
@project_id = ObjectId().toString()
|
|
|
|
async.series [
|
2016-12-16 11:52:50 -05:00
|
|
|
(cb) => ChatClient.sendGlobalMessage @project_id, @user_id1, @content1, cb
|
|
|
|
(cb) => ChatClient.sendGlobalMessage @project_id, @user_id2, @content2, cb
|
2016-12-14 12:38:14 -05:00
|
|
|
], done
|
|
|
|
|
|
|
|
it "should contain the messages and populated users when getting the messages", (done) ->
|
2016-12-16 11:52:50 -05:00
|
|
|
ChatClient.getGlobalMessages @project_id, (error, response, messages) =>
|
2016-12-14 12:38:14 -05:00
|
|
|
expect(messages.length).to.equal 2
|
|
|
|
messages.reverse()
|
|
|
|
expect(messages[0].content).to.equal @content1
|
|
|
|
expect(messages[0].user).to.deep.equal {
|
|
|
|
id: @user_id1
|
|
|
|
first_name: "Jane"
|
|
|
|
last_name: "Smith"
|
|
|
|
email: "jane@example.com"
|
|
|
|
gravatar_url: "//www.gravatar.com/avatar/#{crypto.createHash("md5").update("jane@example.com").digest("hex")}"
|
|
|
|
}
|
|
|
|
expect(messages[1].content).to.equal @content2
|
|
|
|
expect(messages[1].user).to.deep.equal {
|
|
|
|
id: @user_id2
|
|
|
|
first_name: "John"
|
|
|
|
last_name: "Doe"
|
|
|
|
email: "john@example.com"
|
|
|
|
gravatar_url: "//www.gravatar.com/avatar/#{crypto.createHash("md5").update("john@example.com").digest("hex")}"
|
|
|
|
}
|
|
|
|
done()
|
|
|
|
|
2016-12-16 11:52:50 -05:00
|
|
|
describe "from all the threads", ->
|
|
|
|
before (done) ->
|
|
|
|
@project_id = ObjectId().toString()
|
|
|
|
@thread_id1 = ObjectId().toString()
|
|
|
|
@thread_id2 = ObjectId().toString()
|
|
|
|
async.series [
|
|
|
|
(cb) => ChatClient.sendMessage @project_id, @thread_id1, @user_id1, "one", cb
|
|
|
|
(cb) => ChatClient.sendMessage @project_id, @thread_id2, @user_id2, "two", cb
|
|
|
|
(cb) => ChatClient.sendMessage @project_id, @thread_id1, @user_id1, "three", cb
|
|
|
|
(cb) => ChatClient.sendMessage @project_id, @thread_id2, @user_id2, "four", cb
|
|
|
|
], done
|
|
|
|
|
|
|
|
it "should contain a dictionary of threads with messages with populated users", (done) ->
|
|
|
|
ChatClient.getThreads @project_id, (error, response, threads) =>
|
|
|
|
expect(Object.keys(threads).length).to.equal 2
|
|
|
|
thread1 = threads[@thread_id1]
|
|
|
|
expect(thread1.length).to.equal 2
|
|
|
|
thread2 = threads[@thread_id2]
|
|
|
|
expect(thread2.length).to.equal 2
|
|
|
|
|
|
|
|
expect(thread1[0].content).to.equal "one"
|
|
|
|
expect(thread1[0].user).to.deep.equal {
|
|
|
|
id: @user_id1
|
|
|
|
first_name: "Jane"
|
|
|
|
last_name: "Smith"
|
|
|
|
email: "jane@example.com"
|
|
|
|
gravatar_url: "//www.gravatar.com/avatar/#{crypto.createHash("md5").update("jane@example.com").digest("hex")}"
|
|
|
|
}
|
|
|
|
expect(thread1[1].content).to.equal "three"
|
|
|
|
expect(thread1[1].user).to.deep.equal {
|
|
|
|
id: @user_id1
|
|
|
|
first_name: "Jane"
|
|
|
|
last_name: "Smith"
|
|
|
|
email: "jane@example.com"
|
|
|
|
gravatar_url: "//www.gravatar.com/avatar/#{crypto.createHash("md5").update("jane@example.com").digest("hex")}"
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(thread2[0].content).to.equal "two"
|
|
|
|
expect(thread2[0].user).to.deep.equal {
|
|
|
|
id: @user_id2
|
|
|
|
first_name: "John"
|
|
|
|
last_name: "Doe"
|
|
|
|
email: "john@example.com"
|
|
|
|
gravatar_url: "//www.gravatar.com/avatar/#{crypto.createHash("md5").update("john@example.com").digest("hex")}"
|
|
|
|
}
|
|
|
|
expect(thread2[1].content).to.equal "four"
|
|
|
|
expect(thread2[1].user).to.deep.equal {
|
|
|
|
id: @user_id2
|
|
|
|
first_name: "John"
|
|
|
|
last_name: "Doe"
|
|
|
|
email: "john@example.com"
|
|
|
|
gravatar_url: "//www.gravatar.com/avatar/#{crypto.createHash("md5").update("john@example.com").digest("hex")}"
|
|
|
|
}
|
|
|
|
done()
|
|
|
|
|
2016-12-14 12:38:14 -05:00
|
|
|
describe "when a user doesn't exit", ->
|
|
|
|
before (done) ->
|
|
|
|
@project_id = ObjectId().toString()
|
|
|
|
@user_id3 = ObjectId().toString()
|
|
|
|
async.series [
|
2016-12-16 11:52:50 -05:00
|
|
|
(cb) => ChatClient.sendGlobalMessage @project_id, @user_id3, @content1, cb
|
|
|
|
(cb) => ChatClient.sendGlobalMessage @project_id, @user_id2, @content2, cb
|
2016-12-14 12:38:14 -05:00
|
|
|
], done
|
|
|
|
|
|
|
|
it "should just return null for the user", (done) ->
|
2016-12-16 11:52:50 -05:00
|
|
|
ChatClient.getGlobalMessages @project_id, (error, response, messages) =>
|
2016-12-14 12:38:14 -05:00
|
|
|
expect(messages.length).to.equal 2
|
|
|
|
messages.reverse()
|
|
|
|
expect(messages[0].content).to.equal @content1
|
|
|
|
expect(messages[0].user).to.equal null
|
|
|
|
done()
|