authelia/test/unitary/test_server.js

373 lines
11 KiB
JavaScript
Raw Normal View History

var server = require('../../src/lib/server');
2017-01-27 00:20:03 +00:00
var Promise = require('bluebird');
var request = Promise.promisifyAll(require('request'));
var assert = require('assert');
var speakeasy = require('speakeasy');
var sinon = require('sinon');
2017-01-28 00:32:25 +00:00
var MockDate = require('mockdate');
2017-01-27 00:20:03 +00:00
var PORT = 8090;
var BASE_URL = 'http://localhost:' + PORT;
var requests = require('./requests')(PORT);
describe('test the server', function() {
2017-01-21 16:41:06 +00:00
var _server
2017-01-27 00:20:03 +00:00
var deps;
var u2f, nedb;
var transporter;
var collection;
var ldap_client = {
bind: sinon.stub(),
2017-01-27 00:20:03 +00:00
search: sinon.stub(),
modify: sinon.stub(),
};
2017-01-27 00:20:03 +00:00
var ldap = {
Change: sinon.spy()
}
2017-01-21 16:41:06 +00:00
beforeEach(function(done) {
var config = {
2017-01-27 00:20:03 +00:00
port: PORT,
totp_secret: 'totp_secret',
ldap_url: 'ldap://127.0.0.1:389',
ldap_users_dn: 'ou=users,dc=example,dc=com',
2017-01-27 00:20:03 +00:00
ldap_user: 'cn=admin,dc=example,dc=com',
ldap_password: 'password',
2017-01-21 16:41:06 +00:00
session_secret: 'session_secret',
session_max_age: 50000,
2017-01-28 00:32:25 +00:00
store_in_memory: true,
notifier: {
gmail: {
user: 'user@example.com',
pass: 'password'
}
}
};
2017-01-21 16:41:06 +00:00
u2f = {};
u2f.startRegistration = sinon.stub();
u2f.finishRegistration = sinon.stub();
u2f.startAuthentication = sinon.stub();
u2f.finishAuthentication = sinon.stub();
2017-01-28 00:32:25 +00:00
nedb = require('nedb');
2017-01-27 00:20:03 +00:00
transporter = {};
transporter.sendMail = sinon.stub().yields();
var nodemailer = {};
nodemailer.createTransport = sinon.spy(function() {
return transporter;
  });
var search_doc = {
object: {
mail: 'test_ok@example.com'
}
};
var search_res = {};
search_res.on = sinon.spy(function(event, fn) {
if(event != 'error') fn(search_doc);
});
ldap_client.bind.withArgs('cn=test_ok,ou=users,dc=example,dc=com',
'password').yields(undefined);
2017-01-27 00:20:03 +00:00
ldap_client.bind.withArgs('cn=admin,dc=example,dc=com',
'password').yields(undefined);
2017-01-28 00:32:25 +00:00
ldap_client.bind.withArgs('cn=test_nok,ou=users,dc=example,dc=com',
'password').yields('error');
2017-01-28 00:32:25 +00:00
2017-01-27 00:20:03 +00:00
ldap_client.modify.yields(undefined);
2017-01-28 00:32:25 +00:00
ldap_client.search.yields(undefined, search_res);
2017-01-27 00:20:03 +00:00
var deps = {};
deps.u2f = u2f;
deps.nedb = nedb;
deps.nodemailer = nodemailer;
deps.ldap = ldap;
_server = server.run(config, ldap_client, deps, function() {
2017-01-21 16:41:06 +00:00
done();
});
});
2017-01-21 16:41:06 +00:00
afterEach(function() {
_server.close();
  });
describe('test GET /login', function() {
2017-01-28 00:32:25 +00:00
test_login();
});
describe('test GET /logout', function() {
2017-01-28 00:32:25 +00:00
test_logout();
});
describe('test GET /reset-password-form', function() {
test_reset_password_form();
});
describe('test endpoints locks', function() {
function should_post_and_reply_with(url, status_code) {
return request.postAsync(url).then(function(response) {
assert.equal(response.statusCode, status_code);
return Promise.resolve();
})
}
function should_get_and_reply_with(url, status_code) {
return request.getAsync(url).then(function(response) {
assert.equal(response.statusCode, status_code);
return Promise.resolve();
})
}
function should_post_and_reply_with_403(url) {
return should_post_and_reply_with(url, 403);
  }
function should_get_and_reply_with_403(url) {
return should_get_and_reply_with(url, 403);
  }
function should_post_and_reply_with_401(url) {
return should_post_and_reply_with(url, 401);
  }
function should_get_and_reply_with_401(url) {
return should_get_and_reply_with(url, 401);
  }
function should_get_and_post_reply_with_403(url) {
var p1 = should_post_and_reply_with_403(url);
var p2 = should_get_and_reply_with_403(url);
return Promise.all([p1, p2]);
  }
it('should block /authentication/new-password', function() {
return should_post_and_reply_with_403(BASE_URL + '/authentication/new-password')
});
it('should block /authentication/u2f-register', function() {
return should_get_and_post_reply_with_403(BASE_URL + '/authentication/u2f-register');
});
it('should block /authentication/reset-password', function() {
return should_get_and_post_reply_with_403(BASE_URL + '/authentication/reset-password');
});
it('should block /authentication/2ndfactor/u2f/register_request', function() {
return should_get_and_reply_with_403(BASE_URL + '/authentication/2ndfactor/u2f/register_request');
});
it('should block /authentication/2ndfactor/u2f/register', function() {
return should_post_and_reply_with_403(BASE_URL + '/authentication/2ndfactor/u2f/register');
});
it('should block /authentication/2ndfactor/u2f/sign_request', function() {
return should_get_and_reply_with_403(BASE_URL + '/authentication/2ndfactor/u2f/sign_request');
});
it('should block /authentication/2ndfactor/u2f/sign', function() {
return should_post_and_reply_with_403(BASE_URL + '/authentication/2ndfactor/u2f/sign');
});
});
2017-01-21 16:41:06 +00:00
describe('test authentication and verification', function() {
test_authentication();
2017-01-27 00:20:03 +00:00
test_reset_password();
2017-01-28 00:32:25 +00:00
test_regulation();
});
2017-01-19 00:44:24 +00:00
2017-01-28 00:32:25 +00:00
function test_reset_password_form() {
it('should serve the reset password form page', function(done) {
request.getAsync(BASE_URL + '/authentication/reset-password-form')
.then(function(response) {
assert.equal(response.statusCode, 200);
done();
});
});
}
2017-01-21 16:41:06 +00:00
function test_login() {
it('should serve the login page', function(done) {
2017-01-27 00:20:03 +00:00
request.getAsync(BASE_URL + '/authentication/login')
2017-01-21 16:41:06 +00:00
.then(function(response) {
assert.equal(response.statusCode, 200);
2017-01-19 00:44:24 +00:00
done();
});
});
2017-01-21 16:41:06 +00:00
}
function test_logout() {
it('should logout and redirect to /', function(done) {
2017-01-27 00:20:03 +00:00
request.getAsync(BASE_URL + '/authentication/logout')
2017-01-21 16:41:06 +00:00
.then(function(response) {
assert.equal(response.req.path, '/');
done();
});
});
2017-01-21 16:41:06 +00:00
}
function test_authentication() {
it('should return status code 401 when user is not authenticated', function() {
2017-01-27 00:20:03 +00:00
return request.getAsync({ url: BASE_URL + '/authentication/verify' })
2017-01-21 16:41:06 +00:00
.then(function(response) {
assert.equal(response.statusCode, 401);
return Promise.resolve();
});
});
it('should return status code 204 when user is authenticated using totp', function() {
var j = request.jar();
2017-01-27 00:20:03 +00:00
return requests.login(j)
2017-01-21 16:41:06 +00:00
.then(function(res) {
assert.equal(res.statusCode, 200, 'get login page failed');
2017-01-27 00:20:03 +00:00
return requests.first_factor(j);
2017-01-21 16:41:06 +00:00
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'first factor failed');
2017-01-28 17:27:54 +00:00
return requests.register_totp(j, transporter);
})
.then(function(secret) {
var sec = JSON.parse(secret);
var real_token = speakeasy.totp({
secret: sec.base32,
encoding: 'base32'
});
2017-01-27 00:20:03 +00:00
return requests.totp(j, real_token);
2017-01-21 16:41:06 +00:00
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'second factor failed');
2017-01-27 00:20:03 +00:00
return requests.verify(j);
2017-01-21 16:41:06 +00:00
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'verify failed');
return Promise.resolve();
});
});
it('should keep session variables when login page is reloaded', function() {
var real_token = speakeasy.totp({
secret: 'totp_secret',
encoding: 'base32'
});
var j = request.jar();
2017-01-27 00:20:03 +00:00
return requests.login(j)
.then(function(res) {
assert.equal(res.statusCode, 200, 'get login page failed');
2017-01-27 00:20:03 +00:00
return requests.first_factor(j);
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'first factor failed');
2017-01-27 00:20:03 +00:00
return requests.totp(j, real_token);
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'second factor failed');
2017-01-27 00:20:03 +00:00
return requests.login(j);
})
.then(function(res) {
assert.equal(res.statusCode, 200, 'login page loading failed');
2017-01-27 00:20:03 +00:00
return requests.verify(j);
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'verify failed');
return Promise.resolve();
})
.catch(function(err) {
console.error(err);
  });
});
2017-01-21 16:41:06 +00:00
it('should return status code 204 when user is authenticated using u2f', function() {
var sign_request = {};
var sign_status = {};
var registration_request = {};
var registration_status = {};
u2f.startRegistration.returns(Promise.resolve(sign_request));
u2f.finishRegistration.returns(Promise.resolve(sign_status));
u2f.startAuthentication.returns(Promise.resolve(registration_request));
u2f.finishAuthentication.returns(Promise.resolve(registration_status));
2017-01-27 00:20:03 +00:00
2017-01-21 16:41:06 +00:00
var j = request.jar();
2017-01-27 00:20:03 +00:00
return requests.login(j)
2017-01-21 16:41:06 +00:00
.then(function(res) {
assert.equal(res.statusCode, 200, 'get login page failed');
2017-01-27 00:20:03 +00:00
return requests.first_factor(j);
2017-01-21 16:41:06 +00:00
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'first factor failed');
2017-01-27 00:20:03 +00:00
return requests.u2f_registration(j, transporter);
2017-01-21 16:41:06 +00:00
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'second factor, finish register failed');
2017-01-27 00:20:03 +00:00
return requests.u2f_authentication(j);
2017-01-21 16:41:06 +00:00
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'second factor, finish sign failed');
2017-01-27 00:20:03 +00:00
return requests.verify(j);
2017-01-21 16:41:06 +00:00
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'verify failed');
return Promise.resolve();
});
});
}
2017-01-27 00:20:03 +00:00
function test_reset_password() {
it('should reset the password', function() {
var j = request.jar();
return requests.login(j)
.then(function(res) {
assert.equal(res.statusCode, 200, 'get login page failed');
return requests.first_factor(j);
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'first factor failed');
return requests.reset_password(j, transporter, 'user', 'new-password');
})
.then(function(res) {
assert.equal(res.statusCode, 204, 'second factor, finish register failed');
return Promise.resolve();
});
});
}
2017-01-28 00:32:25 +00:00
function test_regulation() {
it('should regulate authentication', function() {
var j = request.jar();
MockDate.set('1/2/2017 00:00:00');
return requests.login(j)
.then(function(res) {
assert.equal(res.statusCode, 200, 'get login page failed');
return requests.failing_first_factor(j);
})
.then(function(res) {
console.log('coucou');
assert.equal(res.statusCode, 401, 'first factor failed');
return requests.failing_first_factor(j);
})
.then(function(res) {
assert.equal(res.statusCode, 401, 'first factor failed');
return requests.failing_first_factor(j);
})
.then(function(res) {
assert.equal(res.statusCode, 401, 'first factor failed');
return requests.failing_first_factor(j);
})
.then(function(res) {
assert.equal(res.statusCode, 403, 'first factor failed');
MockDate.set('1/2/2017 00:30:00');
return requests.failing_first_factor(j);
})
.then(function(res) {
assert.equal(res.statusCode, 401, 'first factor failed');
return Promise.resolve();
})
});
}
2017-01-21 16:41:06 +00:00
});