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
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('req.protocol', () => {
|
|
|
|
describe('when encrypted', () => {
|
|
|
|
it('should return "https"', () => {
|
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');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('when unencrypted', () => {
|
|
|
|
it('should return "http"', () => {
|
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');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('when X-Forwarded-Proto is set', () => {
|
|
|
|
describe('and proxy is trusted', () => {
|
|
|
|
it('should be used', () => {
|
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');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-07-06 08:43:14 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('and X-Forwarded-Proto is empty', () => {
|
|
|
|
it('should return "http"', () => {
|
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');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('and proxy is not trusted', () => {
|
|
|
|
it('should not be used', () => {
|
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');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|