thelounge/test/models/network.js

89 lines
2.2 KiB
JavaScript
Raw Normal View History

"use strict";
var expect = require("chai").expect;
var Chan = require("../../src/models/chan");
var Msg = require("../../src/models/msg");
var Network = require("../../src/models/network");
describe("Network", function() {
describe("#export()", function() {
it("should produce an valid object", function() {
var network = new Network({
name: "networkName",
channels: [
new Chan({name: "#thelounge"}),
new Chan({name: "&foobar"}),
new Chan({name: "Channel List", type: Chan.Type.SPECIAL}),
new Chan({name: "PrivateChat", type: Chan.Type.QUERY}),
]
});
2016-05-12 13:30:23 +02:00
network.setNick("chillin`");
expect(network.export()).to.deep.equal({
name: "networkName",
host: "",
port: 6667,
tls: false,
password: "",
username: "",
realname: "",
commands: [],
2016-05-12 13:30:23 +02:00
nick: "chillin`",
2016-04-03 07:12:49 +02:00
ip: null,
2016-06-19 19:12:42 +02:00
hostname: null,
channels: [
2016-10-09 10:54:44 +02:00
{name: "#thelounge"},
{name: "&foobar"},
2016-06-19 19:12:42 +02:00
]
});
});
it("lobby should be at the top", function() {
var network = new Network({
name: "Super Nice Network",
channels: [
new Chan({name: "AAAA!", type: Chan.Type.QUERY}),
new Chan({name: "#thelounge"}),
new Chan({name: "&foobar"}),
]
});
network.channels.push(new Chan({name: "#swag"}));
expect(network.channels[0].name).to.equal("Super Nice Network");
expect(network.channels[0].type).to.equal(Chan.Type.LOBBY);
});
it("should maintain channel reference", function() {
var chan = new Chan({
name: "#506-bug-fix",
messages: [
new Msg({
text: "message in constructor"
})
]
});
var network = new Network({
name: "networkName",
channels: [
chan
]
});
chan.messages.push(new Msg({
text: "message in original instance"
}));
network.channels[1].messages.push(new Msg({
text: "message after network creation"
}));
expect(network.channels[1].messages).to.have.lengthOf(3);
expect(network.channels[1].messages[0].text).to.equal("message in constructor");
expect(network.channels[1].messages[1].text).to.equal("message in original instance");
expect(network.channels[1].messages[2].text).to.equal("message after network creation");
});
});
});