You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.8 KiB
52 lines
1.8 KiB
const assert = require('assert');
|
|
const EventEmitter = require('events');
|
|
const IRCServer = require("../src/server.js");
|
|
|
|
describe("NICK OK", function () {
|
|
it("should handle a NICK command -> NICK some_nickname", function (done) {
|
|
const server = IRCServer.create()
|
|
let mockedSock = new EventEmitter()
|
|
mockedSock.write = function (data) {
|
|
assert.equal(data.toString("ascii"), "001")
|
|
done()
|
|
}
|
|
mockedSock.destroy = function () {
|
|
done("Destroyed socket without answering")
|
|
}
|
|
|
|
server.emit("connection", mockedSock)
|
|
mockedSock.emit('data', Buffer.from("NICK some_nick\r\n", "ascii"))
|
|
})
|
|
})
|
|
describe("NICK already registered", function () {
|
|
it("should handle a NICK command -> NICK some_nickname", function (done) {
|
|
const server = IRCServer.create()
|
|
let mockedSock = new EventEmitter()
|
|
mockedSock.write = function (data) {
|
|
assert.equal(data.toString("ascii"), "433")
|
|
done()
|
|
}
|
|
mockedSock.destroy = function () {
|
|
done("Destroyed socket without answering")
|
|
}
|
|
|
|
server.emit("connection", mockedSock)
|
|
mockedSock.emit('data', Buffer.from("NICK some_nick\r\n", "ascii"))
|
|
})
|
|
})
|
|
describe("NICK no NICK given", function () {
|
|
it("should handle a NICK command -> NICK ", function (done) {
|
|
const server = IRCServer.create()
|
|
let mockedSock = new EventEmitter()
|
|
mockedSock.write = function (data) {
|
|
assert.equal(data.toString("ascii"), "431")
|
|
done()
|
|
}
|
|
mockedSock.destroy = function () {
|
|
done("Destroyed socket without answering")
|
|
}
|
|
|
|
server.emit("connection", mockedSock)
|
|
mockedSock.emit('data', Buffer.from("NICK \r\n", "ascii"))
|
|
})
|
|
})
|