2019-10-13 15:52:14 +02:00
|
|
|
const fixture = require('./fixture/secret_function');
|
|
|
|
const request = require('request');
|
|
|
|
const io = require('socket.io-client');
|
2015-11-18 21:36:24 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('authorizer with secret function', () => {
|
2015-11-18 21:36:24 +01:00
|
|
|
|
|
|
|
//start and stop the server
|
2019-10-14 01:46:30 +02:00
|
|
|
before((done) => {
|
2015-11-18 21:36:24 +01:00
|
|
|
fixture.start({
|
|
|
|
handshake: false
|
2019-10-13 15:52:14 +02:00
|
|
|
}, done);
|
2015-11-18 21:36:24 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
after(fixture.stop);
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('when the user is not logged in', () => {
|
2015-11-18 21:36:24 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('and when token is not valid', () => {
|
|
|
|
beforeEach((done) => {
|
2015-11-18 21:36:24 +01:00
|
|
|
request.post({
|
|
|
|
url: 'http://localhost:9000/login',
|
|
|
|
json: { username: 'invalid_signature', password: 'Pa123' }
|
2019-10-14 01:46:30 +02:00
|
|
|
}, (err, resp, body) => {
|
2015-11-18 21:36:24 +01:00
|
|
|
this.invalidToken = body.token;
|
|
|
|
done();
|
2019-10-14 01:46:30 +02:00
|
|
|
});
|
2015-11-18 21:36:24 +01:00
|
|
|
});
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('should emit unauthorized', (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('unauthorized', () => done())
|
2019-10-13 15:52:14 +02:00
|
|
|
.emit('authenticate', { token: this.invalidToken + 'ass' })
|
2015-11-18 21:36:24 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
describe('when the user is logged in', () => {
|
2015-11-18 21:36:24 +01:00
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
beforeEach((done) => {
|
2015-11-18 21:36:24 +01:00
|
|
|
request.post({
|
|
|
|
url: 'http://localhost:9000/login',
|
|
|
|
json: { username: 'valid_signature', password: 'Pa123' }
|
2019-10-14 01:46:30 +02:00
|
|
|
}, (err, resp, body) => {
|
2015-11-18 21:36:24 +01:00
|
|
|
this.token = body.token;
|
|
|
|
done();
|
2019-10-14 01:46:30 +02:00
|
|
|
});
|
2015-11-18 21:36:24 +01:00
|
|
|
});
|
|
|
|
|
2019-10-14 01:46:30 +02:00
|
|
|
it('should do the handshake 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-11-18 21:36:24 +01: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 });
|
2015-11-18 21:36:24 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|