2014-01-13 20:00:21 +01:00
|
|
|
var fixture = require('./fixture');
|
|
|
|
var request = require('request');
|
2012-11-16 16:43:12 +01:00
|
|
|
var io = require('socket.io-client');
|
|
|
|
|
|
|
|
describe('authorizer', function () {
|
|
|
|
|
2014-01-13 20:00:21 +01:00
|
|
|
//start and stop the server
|
2012-11-16 16:43:12 +01:00
|
|
|
before(fixture.start);
|
|
|
|
after(fixture.stop);
|
|
|
|
|
|
|
|
describe('when the user is not logged in', function () {
|
2014-01-13 20:00:21 +01:00
|
|
|
|
2012-11-16 16:43:12 +01:00
|
|
|
it('should emit error with unauthorized handshake', function (done){
|
2014-06-05 20:45:41 +02:00
|
|
|
var socket = io.connect('http://localhost:9000?token=boooooo', {
|
|
|
|
'forceNew': true
|
2014-01-13 20:00:21 +01:00
|
|
|
});
|
|
|
|
|
2012-11-16 16:43:12 +01:00
|
|
|
socket.on('error', function(err){
|
2014-07-17 03:14:07 +02:00
|
|
|
err.message.should.eql("jwt malformed");
|
2014-07-16 22:12:18 +02:00
|
|
|
err.code.should.eql("invalid_token");
|
2015-05-29 14:39:49 +02:00
|
|
|
socket.close();
|
2012-11-16 16:43:12 +01:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when the user is logged in', function() {
|
|
|
|
|
|
|
|
beforeEach(function (done) {
|
|
|
|
request.post({
|
|
|
|
url: 'http://localhost:9000/login',
|
2014-01-13 20:00:21 +01:00
|
|
|
form: { username: 'jose', password: 'Pa123' },
|
|
|
|
json: true
|
|
|
|
}, function (err, resp, body) {
|
|
|
|
this.token = body.token;
|
|
|
|
done();
|
|
|
|
}.bind(this));
|
2012-11-16 16:43:12 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should do the handshake and connect', function (done){
|
2014-01-13 20:00:21 +01:00
|
|
|
var socket = io.connect('http://localhost:9000', {
|
2014-06-05 20:45:41 +02:00
|
|
|
'forceNew':true,
|
2014-01-13 20:00:21 +01:00
|
|
|
'query': 'token=' + this.token
|
|
|
|
});
|
2012-11-16 16:43:12 +01:00
|
|
|
socket.on('connect', function(){
|
2015-05-29 14:39:49 +02:00
|
|
|
socket.close();
|
2012-11-16 16:43:12 +01:00
|
|
|
done();
|
|
|
|
}).on('error', done);
|
|
|
|
});
|
|
|
|
});
|
2014-01-13 20:00:21 +01:00
|
|
|
|
2014-07-17 01:29:39 +02:00
|
|
|
describe('unsgined token', function() {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.token = 'eyJhbGciOiJub25lIiwiY3R5IjoiSldUIn0.eyJuYW1lIjoiSm9obiBGb28ifQ.';
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not do the handshake and connect', function (done){
|
|
|
|
var socket = io.connect('http://localhost:9000', {
|
|
|
|
'forceNew':true,
|
|
|
|
'query': 'token=' + this.token
|
|
|
|
});
|
|
|
|
socket.on('connect', function () {
|
2015-05-29 14:39:49 +02:00
|
|
|
socket.close();
|
2014-07-17 01:29:39 +02:00
|
|
|
done(new Error('this shouldnt happen'));
|
|
|
|
}).on('error', function (err) {
|
2015-05-29 14:39:49 +02:00
|
|
|
socket.close();
|
2014-07-17 03:14:07 +02:00
|
|
|
err.message.should.eql("jwt signature is required");
|
2014-07-17 01:29:39 +02:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-07-17 03:14:07 +02:00
|
|
|
});
|