2019-10-13 15:52:14 +02:00
|
|
|
const fixture = require('./fixture');
|
|
|
|
const request = require('request');
|
|
|
|
const io = require('socket.io-client');
|
2014-01-13 22:41:10 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('authorizer without querystring', () => {
|
2014-01-13 22:41:10 +01:00
|
|
|
|
|
|
|
//start and stop the server
|
2019-10-14 01:46:30 +02:00
|
|
|
before((done) => {
|
|
|
|
fixture.start({ handshake: false }, done);
|
2014-01-13 22:41:10 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
after(fixture.stop);
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('when the user is not logged in', () => {
|
2014-01-13 22:41:10 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('should close the connection after a timeout if no auth message is received', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
io.connect('http://localhost:9000', { forceNew: true })
|
2019-10-14 01:46:30 +02:00
|
|
|
.once('disconnect', () => done());
|
2014-01-13 22:41:10 +01:00
|
|
|
});
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('should not respond echo', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
io.connect('http://localhost:9000', { forceNew: true })
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('echo-response', () => done(new Error('this should not happen')))
|
2019-10-13 15:52:14 +02:00
|
|
|
.emit('echo', { hi: 123 });
|
2014-01-13 22:41:10 +01:00
|
|
|
|
|
|
|
setTimeout(done, 1200);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('when the user is logged in', () => {
|
2014-01-13 22:41:10 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
beforeEach((done) => {
|
2014-01-13 22:41:10 +01:00
|
|
|
request.post({
|
|
|
|
url: 'http://localhost:9000/login',
|
|
|
|
form: { username: 'jose', password: 'Pa123' },
|
|
|
|
json: true
|
2019-10-14 01:46:30 +02:00
|
|
|
}, (err, resp, body) => {
|
2014-01-13 22:41:10 +01:00
|
|
|
this.token = body.token;
|
|
|
|
done();
|
2019-10-14 01:46:30 +02:00
|
|
|
});
|
2014-01-13 22:41:10 +01:00
|
|
|
});
|
|
|
|
|
2019-10-15 12:54:02 +02:00
|
|
|
it('should do the authentication and connect', (done) => {
|
2019-10-13 15:52:14 +02:00
|
|
|
const socket = io.connect('http://localhost:9000', { forceNew: true });
|
|
|
|
|
|
|
|
socket
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('echo-response', () => {
|
2015-05-29 14:39:49 +02:00
|
|
|
socket.close();
|
|
|
|
done();
|
2019-10-13 15:52:14 +02:00
|
|
|
})
|
2019-10-14 01:46:30 +02:00
|
|
|
.on('authenticated', () => { socket.emit('echo'); })
|
2019-10-13 15:52:14 +02:00
|
|
|
.emit('authenticate', { token: this.token });
|
2014-01-13 22:41:10 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|