workadventure/back/tests/MessageTest.ts

35 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-04-06 15:48:19 +02:00
import "jasmine";
import {Message} from "../src/Model/Websocket/Message";
describe("Message Model", () => {
it("should find userId and roomId", () => {
2020-05-08 15:20:49 +02:00
let message = {userId: "test1", roomId: "test2", name: "foo", character: "user"};
2020-04-06 15:48:19 +02:00
let messageObject = new Message(message);
expect(messageObject.userId).toBe("test1");
expect(messageObject.roomId).toBe("test2");
2020-05-04 08:44:07 +02:00
expect(messageObject.name).toBe("foo");
expect(messageObject.character).toBe("user");
2020-04-06 15:48:19 +02:00
})
it("should find throw error when no userId", () => {
2020-04-07 10:08:04 +02:00
let message = {roomId: "test2"};
2020-04-06 15:48:19 +02:00
expect(() => {
let messageObject = new Message(message);
}).toThrow(new Error("userId or roomId cannot be null"));
});
2020-04-06 15:48:19 +02:00
it("should find throw error when no roomId", () => {
2020-04-07 10:08:04 +02:00
let message = {userId: "test1"};
2020-04-06 15:48:19 +02:00
expect(() => {
let messageObject = new Message(message);
}).toThrow(new Error("userId or roomId cannot be null"));
});
2020-05-04 08:44:07 +02:00
it("should find throw error when no roomId", () => {
let message = {name: "foo"};
expect(() => {
let messageObject = new Message(message);
}).toThrow(new Error("userId or roomId cannot be null"));
});
})