2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-11 22:59:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-12 04:59:30 +00:00
|
|
|
const request = require('../helpers/context').request;
|
2013-11-13 17:01:15 +00:00
|
|
|
|
|
|
|
describe('req.protocol', function(){
|
|
|
|
describe('when encrypted', function(){
|
|
|
|
it('should return "https"', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const req = request();
|
2013-11-13 17:01:15 +00:00
|
|
|
req.req.socket = { encrypted: true };
|
|
|
|
req.protocol.should.equal('https');
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when unencrypted', function(){
|
|
|
|
it('should return "http"', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const req = request();
|
2013-11-13 17:01:15 +00:00
|
|
|
req.req.socket = {};
|
|
|
|
req.protocol.should.equal('http');
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when X-Forwarded-Proto is set', function(){
|
|
|
|
describe('and proxy is trusted', function(){
|
|
|
|
it('should be used', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const req = request();
|
2013-11-13 17:01:15 +00:00
|
|
|
req.app.proxy = true;
|
|
|
|
req.req.socket = {};
|
|
|
|
req.header['x-forwarded-proto'] = 'https, http';
|
|
|
|
req.protocol.should.equal('https');
|
|
|
|
})
|
2014-07-06 08:43:14 +00:00
|
|
|
|
|
|
|
describe('and X-Forwarded-Proto is empty', function(){
|
|
|
|
it('should return "http"', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const req = request();
|
2014-07-06 08:43:14 +00:00
|
|
|
req.app.proxy = true;
|
|
|
|
req.req.socket = {};
|
|
|
|
req.header['x-forwarded-proto'] = '';
|
|
|
|
req.protocol.should.equal('http');
|
|
|
|
})
|
|
|
|
})
|
2013-11-13 17:01:15 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('and proxy is not trusted', function(){
|
|
|
|
it('should not be used', function(){
|
2015-10-05 18:23:47 +00:00
|
|
|
const req = request();
|
2013-11-13 17:01:15 +00:00
|
|
|
req.req.socket = {};
|
|
|
|
req.header['x-forwarded-proto'] = 'https, http';
|
|
|
|
req.protocol.should.equal('http');
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2014-07-06 08:43:14 +00:00
|
|
|
})
|