Skip to content

Commit 0fe9439

Browse files
committedMay 17, 2018
[fix] Fire an error event on middleware failure for non-root namespace (#1202)
In the following example: ```js io.use((socket, next) => { next(new Error('Auth failed')); }); // client-side const socket = io('https://url/custom-namespace'); socket.on('error', (err) => { // ... }); ``` The 'error' event wasn't fired on the custom namespace.
1 parent 3eb047f commit 0fe9439

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed
 

‎lib/socket.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,10 @@ Socket.prototype.onclose = function (reason) {
222222
*/
223223

224224
Socket.prototype.onpacket = function (packet) {
225-
if (packet.nsp !== this.nsp) return;
225+
var sameNamespace = packet.nsp === this.nsp;
226+
var rootNamespaceError = packet.type === parser.ERROR && packet.nsp === '/';
227+
228+
if (!sameNamespace && !rootNamespaceError) return;
226229

227230
switch (packet.type) {
228231
case parser.CONNECT:

‎test/socket.js

+18
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,22 @@ describe('socket', function () {
158158
});
159159
});
160160
});
161+
162+
it('should fire an error event on middleware failure from main namespace', function (done) {
163+
var socket = io('/foo', { forceNew: true, query: { 'fail': true } });
164+
socket.on('error', function (err) {
165+
expect(err).to.eql('Auth failed (main namespace)');
166+
socket.disconnect();
167+
done();
168+
});
169+
});
170+
171+
it('should fire an error event on middleware failure from custom namespace', function (done) {
172+
var socket = io('/no', { forceNew: true });
173+
socket.on('error', function (err) {
174+
expect(err).to.eql('Auth failed (custom namespace)');
175+
socket.disconnect();
176+
done();
177+
});
178+
});
161179
});

‎test/support/server.js

+9
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ server.of('/abc').on('connection', function (socket) {
2525
socket.emit('handshake', socket.handshake);
2626
});
2727

28+
server.use(function (socket, next) {
29+
if (socket.request._query.fail) return next(new Error('Auth failed (main namespace)'));
30+
next();
31+
});
32+
33+
server.of('/no').use(function (socket, next) {
34+
next(new Error('Auth failed (custom namespace)'));
35+
});
36+
2837
server.on('connection', function (socket) {
2938
// simple test
3039
socket.on('hi', function () {

0 commit comments

Comments
 (0)
Please sign in to comment.