127 lines
4.0 KiB
JavaScript
Executable File
127 lines
4.0 KiB
JavaScript
Executable File
describe("Collections", function () {
|
|
beforeEach(function () {
|
|
MeteorStubs.install();
|
|
});
|
|
|
|
afterEach(function () {
|
|
MeteorStubs.uninstall();
|
|
});
|
|
|
|
//----------------------------------------------------------------------
|
|
// publish.coffee
|
|
//----------------------------------------------------------------------
|
|
|
|
it("should all be correctly handled by remove() after calling clearCollections()", function () {
|
|
spyOn(Meteor.Users, "remove");
|
|
spyOn(Meteor.Chat, "remove");
|
|
spyOn(Meteor.Meetings, "remove");
|
|
spyOn(Meteor.Shapes, "remove");
|
|
spyOn(Meteor.Slides, "remove");
|
|
spyOn(Meteor.Presentations, "remove");
|
|
|
|
clearCollections();
|
|
|
|
expect(Meteor.Users.remove).toHaveBeenCalled();
|
|
expect(Meteor.Chat.remove).toHaveBeenCalled();
|
|
expect(Meteor.Meetings.remove).toHaveBeenCalled();
|
|
expect(Meteor.Shapes.remove).toHaveBeenCalled();
|
|
expect(Meteor.Slides.remove).toHaveBeenCalled();
|
|
expect(Meteor.Presentations.remove).toHaveBeenCalled();
|
|
});
|
|
|
|
//----------------------------------------------------------------------
|
|
// chat.coffee
|
|
//----------------------------------------------------------------------
|
|
|
|
it("should be handled correctly by insert() on calling addChatToCollection() in case of private chat", function () {
|
|
|
|
//spyOn(Meteor.Users, "findOne").and.returnValue({ _id: "dbid001" });
|
|
spyOn(Meteor.Users, "findOne").and.callFake(function(doc) {
|
|
if(doc.userId == "user001") return { _id: "dbid001" };
|
|
else if(doc.userId == "user002") return { _id: "dbid002" };
|
|
});
|
|
|
|
spyOn(Meteor.Chat, "insert");
|
|
|
|
addChatToCollection("meeting001", {
|
|
from_time: "123",
|
|
from_userid: "user001",
|
|
to_userid: "user002",
|
|
chat_type: "PRIVATE_CHAT",
|
|
message: "Hello!",
|
|
to_username: "Anton",
|
|
from_tz_offset: "240",
|
|
from_color: "0x000000",
|
|
from_username: "Maxim",
|
|
from_lang: "en"
|
|
});
|
|
|
|
//expect(Meteor.Chat.insert).toHaveBeenCalled();
|
|
expect(Meteor.Chat.insert).toHaveBeenCalledWith({
|
|
meetingId: "meeting001",
|
|
message: {
|
|
chat_type: "PRIVATE_CHAT",
|
|
message: "Hello!",
|
|
to_username: "Anton",
|
|
from_tz_offset: "240",
|
|
from_color: "0x000000",
|
|
to_userid: "dbid002", // not "dbid002"
|
|
from_userid: "dbid001", // not "dbid001"
|
|
from_time: "123",
|
|
from_username: "Maxim",
|
|
from_lang: "en"
|
|
}
|
|
});
|
|
});
|
|
|
|
it("should be handled correctly by insert() on calling addChatToCollection() in case of public chat", function () {
|
|
spyOn(Meteor.Users, "findOne").and.callFake(function(doc) {
|
|
if(doc.userId == "user001") return { _id: "dbid001" };
|
|
else if(doc.userId == "user002") return { _id: "dbid002" };
|
|
});
|
|
|
|
spyOn(Meteor.Chat, "insert");
|
|
|
|
addChatToCollection("meeting001", {
|
|
from_time: "123",
|
|
from_userid: "user001",
|
|
to_userid: "public_chat_userid",
|
|
chat_type: "PUBLIC_CHAT",
|
|
message: "Hello!",
|
|
to_username: "public_chat_username",
|
|
from_tz_offset: "240",
|
|
from_color: "0x000000",
|
|
from_username: "Maxim",
|
|
from_lang: "en"
|
|
});
|
|
|
|
expect(Meteor.Chat.insert).toHaveBeenCalledWith({
|
|
meetingId: "meeting001",
|
|
message: {
|
|
chat_type: "PUBLIC_CHAT",
|
|
message: "Hello!",
|
|
to_username: "public_chat_username",
|
|
from_tz_offset: "240",
|
|
from_color: "0x000000",
|
|
to_userid: "public_chat_userid",
|
|
from_userid: "dbid001",
|
|
from_time: "123",
|
|
from_username: "Maxim",
|
|
from_lang: "en"
|
|
}
|
|
});
|
|
});
|
|
|
|
it("should be handled correctly by remove() on calling deletePrivateChatMessages()", function () {
|
|
spyOn(Meteor.Chat, "remove");
|
|
|
|
deletePrivateChatMessages("user001", "user002");
|
|
|
|
expect(Meteor.Chat.remove).toHaveBeenCalledWith({
|
|
"message.chat_type": "PRIVATE_CHAT",
|
|
$or: [{ "message.from_userid": "user001", "message.to_userid": "user002" },
|
|
{ "message.from_userid": "user002", "message.to_userid": "user001" }]
|
|
});
|
|
});
|
|
});
|