mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
44 lines
1008 B
JavaScript
44 lines
1008 B
JavaScript
|
||
var sinon = require('sinon');
|
||
var server = require('../../src/lib/server');
|
||
var assert = require('assert');
|
||
|
||
describe('test server configuration', function() {
|
||
var deps;
|
||
var config;
|
||
|
||
before(function() {
|
||
config = {};
|
||
config.notifier = {
|
||
gmail: {
|
||
user: 'user@example.com',
|
||
pass: 'password'
|
||
}
|
||
}
|
||
|
||
transporter = {};
|
||
transporter.sendMail = sinon.stub().yields();
|
||
|
||
var nodemailer = {};
|
||
nodemailer.createTransport = sinon.spy(function() {
|
||
return transporter;
|
||
});
|
||
|
||
deps = {};
|
||
deps.nedb = require('nedb');
|
||
deps.nodemailer = nodemailer;
|
||
deps.session = sinon.spy(function() {
|
||
return function(req, res, next) { next(); };
|
||
});
|
||
});
|
||
|
||
|
||
it('should set cookie scope to domain set in the config', function() {
|
||
config.session_domain = 'example.com';
|
||
server.run(config, undefined, deps);
|
||
|
||
assert(deps.session.calledOnce);
|
||
assert.equal(deps.session.getCall(0).args[0].cookie.domain, 'example.com');
|
||
});
|
||
});
|