2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00
socketio-jwt/test/authorizer_noqs.test.js
Fabian Arndt 27c59c3b0f Fixed auth.required
Misc:
- Resolved conflicts
- Added test case, to fail if server grants prohibited admin access
- Simplified test logic
- Prevented usage of "var" (used const / let instead)
- Formatting
- Cleanup
- Typos
2019-10-13 15:52:14 +02:00

63 lines
1.6 KiB
JavaScript

const fixture = require('./fixture');
const request = require('request');
const io = require('socket.io-client');
describe('authorizer without querystring', function () {
//start and stop the server
before(function (done) {
fixture.start({
handshake: false
} , done);
});
after(fixture.stop);
describe('when the user is not logged in', function () {
it('should close the connection after a timeout if no auth message is received', function (done) {
io.connect('http://localhost:9000', { forceNew: true })
.once('disconnect', function () { done(); });
});
it('should not respond echo', function (done) {
io.connect('http://localhost:9000', { forceNew: true })
.on('echo-response', function () {
done(new Error('this should not happen'));
})
.emit('echo', { hi: 123 });
setTimeout(done, 1200);
});
});
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));
});
it('should do the handshake and connect', function (done) {
const socket = io.connect('http://localhost:9000', { forceNew: true });
socket
.on('echo-response', function () {
socket.close();
done();
})
.on('authenticated', function () {
socket.emit('echo');
})
.emit('authenticate', { token: this.token });
});
});
});