2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00
socketio-jwt/test/authorizer.test.js
Jose F. Romaniello 7390e33d45 minor
2012-11-16 12:47:41 -03:00

51 lines
1.3 KiB
JavaScript

var fixture = require('./fixture'),
request = require('request'),
setSocketIOHandshakeCookies = require('./fixture/setSocketIOHandshakeCookies');
var io = require('socket.io-client');
describe('authorizer', function () {
//start and stop the server
before(fixture.start);
after(fixture.stop);
//create a new session for every test
beforeEach(function(){
this.cookies = request.jar();
setSocketIOHandshakeCookies(this.cookies);
});
describe('when the user is not logged in', function () {
it('should emit error with unauthorized handshake', function (done){
var socket = io.connect('http://localhost:9000', {'force new connection':true});
socket.on('error', function(err){
err.should.eql('handshake unauthorized');
done();
});
});
});
describe('when the user is logged in', function() {
beforeEach(function (done) {
request.post({
jar: this.cookies,
url: 'http://localhost:9000/login',
form: {username: 'jose', password: 'Pa123'}
}, done);
});
it('should do the handshake and connect', function (done){
var socket = io.connect('http://localhost:9000', {'force new connection':true});
socket.on('connect', function(){
done();
}).on('error', done);
});
});
});