2020-12-27 17:25:44 +01: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
|
2020-12-27 17:25:44 +01:00
|
|
|
before((done) => {
|
|
|
|
fixture.start({}, done)
|
|
|
|
})
|
|
|
|
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
|
2020-12-27 17:25:44 +01:00
|
|
|
})
|
2016-10-20 18:13:23 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
socket.on('error', (err) => {
|
2020-12-27 17:25:44 +01:00
|
|
|
err.message.should.eql('jwt malformed')
|
|
|
|
err.code.should.eql('invalid_token')
|
|
|
|
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) => {
|
2020-12-27 17:25:44 +01:00
|
|
|
request.post(
|
|
|
|
{
|
|
|
|
url: 'http://localhost:9000/login',
|
|
|
|
form: { username: 'jose', password: 'Pa123' },
|
|
|
|
json: true
|
|
|
|
},
|
|
|
|
(err, resp, body) => {
|
|
|
|
this.token = body.token
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
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')
|
2020-12-27 17:25:44 +01:00
|
|
|
.then(() =>
|
|
|
|
Q.ninvoke(fixture, 'start', { auth_header_required: true })
|
|
|
|
)
|
|
|
|
.done(done)
|
|
|
|
})
|
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')
|
2020-12-27 17:25:44 +01:00
|
|
|
.then(() => Q.ninvoke(fixture, 'start', {}))
|
|
|
|
.done(done)
|
|
|
|
})
|
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,
|
2020-12-27 17:25:44 +01:00
|
|
|
extraHeaders: { Authorization: 'Bearer ' + this.token }
|
|
|
|
})
|
2019-10-13 15:52:14 +02:00
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('connect', () => {
|
2020-12-27 17:25:44 +01:00
|
|
|
socket.close()
|
|
|
|
done()
|
2019-10-13 15:52:14 +02:00
|
|
|
})
|
2020-12-27 17:25:44 +01:00
|
|
|
.on('error', done)
|
|
|
|
})
|
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
|
2020-12-27 17:25:44 +01:00
|
|
|
})
|
2019-10-13 15:52:14 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
socket.on('error', (err) => {
|
2020-12-27 17:25:44 +01:00
|
|
|
err.message.should.eql('Server requires Authorization Header')
|
|
|
|
err.code.should.eql('missing_authorization_header')
|
|
|
|
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', {}))
|
2020-12-27 17:25:44 +01:00
|
|
|
.done(done)
|
2016-10-20 18:13:23 +02:00
|
|
|
})
|
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 }
|
2020-12-27 17:25:44 +01:00
|
|
|
})
|
2019-10-13 15:52:14 +02:00
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('connect', () => {
|
2020-12-27 17:25:44 +01:00
|
|
|
socket.close()
|
|
|
|
done()
|
2019-10-13 15:52:14 +02:00
|
|
|
})
|
2020-12-27 17:25:44 +01:00
|
|
|
.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
|
2020-12-27 17:25:44 +01:00
|
|
|
})
|
2019-10-13 15:52:14 +02:00
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('connect', () => {
|
2020-12-27 17:25:44 +01:00
|
|
|
socket.close()
|
|
|
|
done()
|
2019-10-13 15:52:14 +02:00
|
|
|
})
|
2020-12-27 17:25:44 +01:00
|
|
|
.on('error', done)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2014-07-17 01:29:39 +02:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('unsigned token', () => {
|
|
|
|
beforeEach(() => {
|
2020-12-27 17:25:44 +01: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
|
2020-12-27 17:25:44 +01:00
|
|
|
})
|
2019-10-13 15:52:14 +02:00
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('connect', () => {
|
2020-12-27 17:25:44 +01:00
|
|
|
socket.close()
|
|
|
|
done(new Error('this shouldnt happen'))
|
2019-10-13 15:52:14 +02:00
|
|
|
})
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('error', (err) => {
|
2020-12-27 17:25:44 +01:00
|
|
|
socket.close()
|
|
|
|
err.message.should.eql('jwt signature is required')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|