2019-10-13 15:52:14 +02:00
|
|
|
const Q = require('q');
|
|
|
|
const fixture = require('./fixture');
|
|
|
|
const request = require('request');
|
|
|
|
const io = require('socket.io-client');
|
2012-11-16 16:43:12 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('authorizer', () => {
|
2016-10-20 18:13:23 +02:00
|
|
|
//start and stop the server
|
2019-10-14 01:46:30 +02:00
|
|
|
before((done) => { fixture.start({ }, done) });
|
2016-10-20 18:13:23 +02:00
|
|
|
after(fixture.stop);
|
2012-11-16 16:43:12 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('when the user is not logged in', () => {
|
|
|
|
it('should emit error with unauthorized handshake', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
const socket = io.connect('http://localhost:9000?token=boooooo', {
|
|
|
|
forceNew: true
|
2016-10-20 18:13:23 +02:00
|
|
|
});
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
socket.on('error', (err) => {
|
|
|
|
err.message.should.eql('jwt malformed');
|
|
|
|
err.code.should.eql('invalid_token');
|
2016-10-20 18:13:23 +02:00
|
|
|
socket.close();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-01-13 20:00:21 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('when the user is logged in', () => {
|
|
|
|
before((done) => {
|
2016-10-20 18:13:23 +02:00
|
|
|
request.post({
|
|
|
|
url: 'http://localhost:9000/login',
|
|
|
|
form: { username: 'jose', password: 'Pa123' },
|
|
|
|
json: true
|
2019-10-14 01:46:30 +02:00
|
|
|
}, (err, resp, body) => {
|
2016-10-20 18:13:23 +02:00
|
|
|
this.token = body.token;
|
|
|
|
done();
|
2019-10-14 01:46:30 +02:00
|
|
|
});
|
2012-11-16 16:43:12 +01:00
|
|
|
});
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('authorizer disallows query string token when specified in startup options', () => {
|
|
|
|
before((done) => {
|
2016-10-20 18:13:23 +02:00
|
|
|
Q.ninvoke(fixture, 'stop')
|
2019-10-14 01:46:30 +02:00
|
|
|
.then(() => Q.ninvoke(fixture, 'start', { auth_header_required: true }))
|
2016-10-20 18:13:23 +02:00
|
|
|
.done(done);
|
2014-01-13 20:00:21 +01:00
|
|
|
});
|
2019-10-13 15:52:14 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
after((done) => {
|
2016-10-20 18:13:23 +02:00
|
|
|
Q.ninvoke(fixture, 'stop')
|
2019-10-14 01:46:30 +02:00
|
|
|
.then(() => Q.ninvoke(fixture, 'start', { }))
|
2016-10-20 18:13:23 +02:00
|
|
|
.done(done);
|
2019-10-13 15:52:14 +02:00
|
|
|
});
|
2012-11-16 16:43:12 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('auth headers are supported', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
const socket = io.connect('http://localhost:9000', {
|
|
|
|
forceNew: true,
|
|
|
|
extraHeaders: { Authorization: 'Bearer ' + this.token}
|
2016-10-20 17:38:43 +02:00
|
|
|
});
|
2019-10-13 15:52:14 +02:00
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('connect', () => {
|
2019-10-13 15:52:14 +02:00
|
|
|
socket.close();
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.on('error', done);
|
2016-10-20 18:13:23 +02:00
|
|
|
});
|
2016-10-20 17:38:43 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('auth token in query string is disallowed', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
const socket = io.connect('http://localhost:9000', {
|
|
|
|
forceNew: true,
|
|
|
|
query: 'token=' + this.token
|
2016-10-20 18:13:23 +02:00
|
|
|
});
|
2019-10-13 15:52:14 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
socket.on('error', (err) => {
|
|
|
|
err.message.should.eql('Server requires Authorization Header');
|
|
|
|
err.code.should.eql('missing_authorization_header');
|
2016-10-20 17:38:43 +02:00
|
|
|
socket.close();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2016-10-20 18:13:23 +02:00
|
|
|
})
|
2012-11-16 16:43:12 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('authorizer all auth types allowed', () => {
|
|
|
|
before((done) => {
|
2016-10-20 18:13:23 +02:00
|
|
|
Q.ninvoke(fixture, 'stop')
|
2019-10-14 01:46:30 +02:00
|
|
|
.then(() => Q.ninvoke(fixture, 'start', {}))
|
2016-10-20 18:13:23 +02:00
|
|
|
.done(done);
|
|
|
|
})
|
2016-10-20 17:22:11 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('auth headers are supported', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
const socket = io.connect('http://localhost:9000', {
|
|
|
|
forceNew: true,
|
|
|
|
extraHeaders: { Authorization: 'Bearer ' + this.token }
|
2016-10-20 17:38:43 +02:00
|
|
|
});
|
2019-10-13 15:52:14 +02:00
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('connect', () => {
|
2019-10-13 15:52:14 +02:00
|
|
|
socket.close();
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.on('error', done);
|
2014-01-13 20:00:21 +01:00
|
|
|
});
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('should do the handshake and connect', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
const socket = io.connect('http://localhost:9000', {
|
|
|
|
forceNew: true,
|
|
|
|
query: 'token=' + this.token
|
2016-10-20 17:38:43 +02:00
|
|
|
});
|
2019-10-13 15:52:14 +02:00
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('connect', () => {
|
2019-10-13 15:52:14 +02:00
|
|
|
socket.close();
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.on('error', done);
|
2016-10-20 17:38:43 +02:00
|
|
|
});
|
2019-10-13 15:52:14 +02:00
|
|
|
|
2014-07-17 01:29:39 +02:00
|
|
|
});
|
2016-10-20 18:13:23 +02:00
|
|
|
});
|
2014-07-17 01:29:39 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('unsigned token', () => {
|
|
|
|
beforeEach(() => {
|
2016-10-20 18:13:23 +02:00
|
|
|
this.token = 'eyJhbGciOiJub25lIiwiY3R5IjoiSldUIn0.eyJuYW1lIjoiSm9obiBGb28ifQ.';
|
|
|
|
});
|
2016-10-20 17:38:43 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('should not do the handshake and connect', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
const socket = io.connect('http://localhost:9000', {
|
|
|
|
forceNew: true,
|
|
|
|
query: 'token=' + this.token
|
2014-07-17 01:29:39 +02:00
|
|
|
});
|
2019-10-13 15:52:14 +02:00
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('connect', () => {
|
2019-10-13 15:52:14 +02:00
|
|
|
socket.close();
|
|
|
|
done(new Error('this shouldnt happen'));
|
|
|
|
})
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('error', (err) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
socket.close();
|
2019-10-14 01:46:30 +02:00
|
|
|
err.message.should.eql('jwt signature is required');
|
2019-10-13 15:52:14 +02:00
|
|
|
done();
|
|
|
|
});
|
2014-07-17 01:29:39 +02:00
|
|
|
});
|
2016-10-20 17:38:43 +02:00
|
|
|
});
|
2014-07-17 03:14:07 +02:00
|
|
|
});
|