2014-07-06 08:43:14 +00:00
|
|
|
|
2015-10-11 22:59:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
const assert = require('assert');
|
2015-10-12 04:59:30 +00:00
|
|
|
const request = require('../helpers/context').request;
|
2014-07-06 08:43:14 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('req.ips', () => {
|
|
|
|
describe('when X-Forwarded-For is present', () => {
|
|
|
|
describe('and proxy is not trusted', () => {
|
|
|
|
it('should be ignored', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const req = request();
|
2014-07-06 08:43:14 +00:00
|
|
|
req.app.proxy = false;
|
|
|
|
req.header['x-forwarded-for'] = '127.0.0.1,127.0.0.2';
|
2017-05-11 03:30:32 +00:00
|
|
|
assert.deepEqual(req.ips, []);
|
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 proxy is trusted', () => {
|
|
|
|
it('should be used', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const req = request();
|
2014-07-06 08:43:14 +00:00
|
|
|
req.app.proxy = true;
|
|
|
|
req.header['x-forwarded-for'] = '127.0.0.1,127.0.0.2';
|
2017-05-11 03:30:32 +00:00
|
|
|
assert.deepEqual(req.ips, ['127.0.0.1', '127.0.0.2']);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|