This repository has been archived on 2024-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
socketio-jwt/test/authorizer.test.js

50 lines
1.2 KiB
JavaScript
Raw Normal View History

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 () {
//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 () {
2012-11-16 16:43:12 +01:00
it('should emit error with unauthorized handshake', function (done){
var socket = io.connect('http://localhost:9000?token=boooooo', {
'forceNew': true
});
2012-11-16 16:43:12 +01:00
socket.on('error', function(err){
err.should.eql("Invalid token: no header in signature 'boooooo'");
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',
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){
var socket = io.connect('http://localhost:9000', {
'forceNew':true,
'query': 'token=' + this.token
});
2012-11-16 16:43:12 +01:00
socket.on('connect', function(){
done();
}).on('error', done);
});
});
2012-11-16 16:43:12 +01:00
});