mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
c2243ed7b4
I used `npm run coverage` while *not* excluding the test folder to detect dead code in our test folder, it is actually pretty useful to do so (as a one-shot, not to do that in our config). Only remaining unreached path is L40 in `test/plugins/auth/ldap.js`, but it does seem to me that it might be useful in case of failures, so I preferred to leave it there.
125 lines
2.9 KiB
JavaScript
125 lines
2.9 KiB
JavaScript
"use strict";
|
|
|
|
const Helper = require("../src/helper");
|
|
const expect = require("chai").expect;
|
|
const request = require("request");
|
|
const io = require("socket.io-client");
|
|
|
|
describe("Server", function() {
|
|
this.timeout(5000);
|
|
let server;
|
|
let originalLogInfo;
|
|
|
|
before(function() {
|
|
originalLogInfo = log.info;
|
|
log.info = () => {};
|
|
|
|
server = require("../src/server")();
|
|
});
|
|
|
|
after(function(done) {
|
|
server.close(done);
|
|
|
|
log.info = originalLogInfo;
|
|
});
|
|
|
|
const webURL = `http://${Helper.config.host}:${Helper.config.port}/`;
|
|
|
|
describe("Express", () => {
|
|
it("should run a web server on " + webURL, (done) => {
|
|
request(webURL, (error, response, body) => {
|
|
expect(error).to.be.null;
|
|
expect(body).to.include("<title>The Lounge</title>");
|
|
expect(body).to.include("js/bundle.js");
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
it("should serve static content correctly", (done) => {
|
|
request(webURL + "manifest.json", (error, response, body) => {
|
|
expect(error).to.be.null;
|
|
|
|
body = JSON.parse(body);
|
|
expect(body.name).to.equal("The Lounge");
|
|
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("WebSockets", function() {
|
|
this.slow(300);
|
|
|
|
let client;
|
|
|
|
before((done) => {
|
|
Helper.config.public = true;
|
|
done();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
client = io(webURL, {
|
|
path: "/socket.io/",
|
|
autoConnect: false,
|
|
reconnection: false,
|
|
timeout: 1000,
|
|
transports: [
|
|
"websocket",
|
|
],
|
|
});
|
|
|
|
// Server emits events faster than the test can bind them
|
|
setTimeout(() => {
|
|
client.open();
|
|
}, 1);
|
|
});
|
|
|
|
afterEach(() => {
|
|
client.close();
|
|
});
|
|
|
|
it("should emit authorized message", (done) => {
|
|
client.on("authorized", done);
|
|
});
|
|
|
|
it("should create network", (done) => {
|
|
client.on("init", () => {
|
|
client.emit("conn", {
|
|
username: "test-user",
|
|
realname: "The Lounge Test",
|
|
nick: "test-user",
|
|
join: "#thelounge, #spam",
|
|
name: "Test Network",
|
|
host: Helper.config.host,
|
|
port: 6667,
|
|
});
|
|
});
|
|
|
|
client.on("network", (data) => {
|
|
expect(data.networks).to.be.an("array");
|
|
expect(data.networks).to.have.lengthOf(1);
|
|
expect(data.networks[0].realname).to.equal("The Lounge Test");
|
|
expect(data.networks[0].channels).to.have.lengthOf(3);
|
|
expect(data.networks[0].channels[0].name).to.equal("Test Network");
|
|
expect(data.networks[0].channels[1].name).to.equal("#thelounge");
|
|
done();
|
|
});
|
|
});
|
|
|
|
it("should emit init message", (done) => {
|
|
client.on("init", (data) => {
|
|
expect(data.active).to.equal(-1);
|
|
expect(data.networks).to.be.an("array");
|
|
expect(data.networks).to.be.empty;
|
|
expect(data.token).to.be.null;
|
|
expect(data.pushSubscription).to.be.undefined;
|
|
|
|
// Private key defined in vapid.json is "01020304050607080910111213141516" for this public key.
|
|
expect(data.applicationServerKey).to.equal("BM0eTDpvDnH7ewlHuXWcPTE1NjlJ06XWIS1cQeBTZmsg4EDx5sOpY7kdX1pniTo8RakL3UdfFuIbC8_zog_BWIM");
|
|
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|