-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathrequestdata.test.ts
820 lines (701 loc) · 23.4 KB
/
requestdata.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
import type * as net from 'net';
import type { Event, PolymorphicRequest, TransactionSource, User } from '@sentry/types';
import { addRequestDataToEvent, extractPathForTransaction, extractRequestData } from '@sentry/utils';
import { getClientIPAddress } from '../src/vendor/getIpAddress';
describe('addRequestDataToEvent', () => {
let mockEvent: Event;
let mockReq: { [key: string]: any };
beforeEach(() => {
mockEvent = {};
mockReq = {
baseUrl: '/routerMountPath',
body: 'foo',
cookies: { test: 'test' },
headers: {
host: 'example.org',
},
method: 'POST',
originalUrl: '/routerMountPath/subpath/specificValue?querystringKey=querystringValue',
path: '/subpath/specificValue',
query: {
querystringKey: 'querystringValue',
},
route: {
path: '/subpath/:parameterName',
stack: [
{
name: 'parameterNameRouteHandler',
},
],
},
url: '/subpath/specificValue?querystringKey=querystringValue',
user: {
custom_property: 'foo',
email: 'tobias@mail.com',
id: 123,
username: 'tobias',
},
};
});
describe('addRequestDataToEvent user properties', () => {
const DEFAULT_USER_KEYS = ['id', 'username', 'email'];
const CUSTOM_USER_KEYS = ['custom_property'];
test('user only contains the default properties from the user', () => {
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq);
expect(Object.keys(parsedRequest.user as User)).toEqual(DEFAULT_USER_KEYS);
});
test('user only contains the custom properties specified in the options.user array', () => {
const optionsWithCustomUserKeys = {
include: {
user: CUSTOM_USER_KEYS,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq, optionsWithCustomUserKeys);
expect(Object.keys(parsedRequest.user as User)).toEqual(CUSTOM_USER_KEYS);
});
test('setting user doesnt blow up when someone passes non-object value', () => {
const reqWithUser = {
...mockReq,
// intentionally setting user to a non-object value, hence the as any cast
user: 'wat',
} as any;
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithUser);
expect(parsedRequest.user).toBeUndefined();
});
});
describe('addRequestDataToEvent ip property', () => {
test('can be extracted from req.ip', () => {
const mockReqWithIP = {
...mockReq,
ip: '123',
};
const optionsWithIP = {
include: {
ip: true,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReqWithIP, optionsWithIP);
expect(parsedRequest.user!.ip_address).toEqual('123');
});
test('can extract from req.socket.remoteAddress', () => {
const reqWithIPInSocket = {
...mockReq,
socket: {
remoteAddress: '321',
} as net.Socket,
};
const optionsWithIP = {
include: {
ip: true,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInSocket, optionsWithIP);
expect(parsedRequest.user!.ip_address).toEqual('321');
});
test.each([
'X-Client-IP',
'X-Forwarded-For',
'Fly-Client-IP',
'CF-Connecting-IP',
'Fastly-Client-Ip',
'True-Client-Ip',
'X-Real-IP',
'X-Cluster-Client-IP',
'X-Forwarded',
'Forwarded-For',
'X-Vercel-Forwarded-For',
])('can be extracted from %s header', headerName => {
const reqWithIPInHeader = {
...mockReq,
headers: {
[headerName]: '123.5.6.1',
},
};
const optionsWithIP = {
include: {
ip: true,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithIP);
expect(parsedRequest.user!.ip_address).toEqual('123.5.6.1');
});
it('can be extracted from Forwarded header', () => {
const reqWithIPInHeader = {
...mockReq,
headers: {
Forwarded: 'by=111;for=123.5.6.1;for=123.5.6.2;',
},
};
const optionsWithIP = {
include: {
ip: true,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithIP);
expect(parsedRequest.user!.ip_address).toEqual('123.5.6.1');
});
test('it ignores invalid IP in header', () => {
const reqWithIPInHeader = {
...mockReq,
headers: {
'X-Client-IP': 'invalid',
},
};
const optionsWithIP = {
include: {
ip: true,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithIP);
expect(parsedRequest.user!.ip_address).toEqual(undefined);
});
test('IP from header takes presedence over socket', () => {
const reqWithIPInHeader = {
...mockReq,
headers: {
'X-Client-IP': '123.5.6.1',
},
socket: {
remoteAddress: '321',
} as net.Socket,
};
const optionsWithIP = {
include: {
ip: true,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithIP);
expect(parsedRequest.user!.ip_address).toEqual('123.5.6.1');
});
test('IP from header takes presedence over req.ip', () => {
const reqWithIPInHeader = {
...mockReq,
headers: {
'X-Client-IP': '123.5.6.1',
},
ip: '123',
};
const optionsWithIP = {
include: {
ip: true,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithIP);
expect(parsedRequest.user!.ip_address).toEqual('123.5.6.1');
});
test('does not add IP if ip=false', () => {
const reqWithIPInHeader = {
...mockReq,
headers: {
'X-Client-IP': '123.5.6.1',
},
ip: '123',
};
const optionsWithoutIP = {
include: {
ip: false,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithoutIP);
expect(parsedRequest.user!.ip_address).toEqual(undefined);
});
test('does not add IP by default', () => {
const reqWithIPInHeader = {
...mockReq,
headers: {
'X-Client-IP': '123.5.6.1',
},
ip: '123',
};
const optionsWithoutIP = {};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithoutIP);
expect(parsedRequest.user!.ip_address).toEqual(undefined);
});
test('removes IP headers if `ip` is not set in the options', () => {
const reqWithIPInHeader = {
...mockReq,
headers: {
otherHeader: 'hello',
'X-Client-IP': '123',
'X-Forwarded-For': '123',
'Fly-Client-IP': '123',
'CF-Connecting-IP': '123',
'Fastly-Client-Ip': '123',
'True-Client-Ip': '123',
'X-Real-IP': '123',
'X-Cluster-Client-IP': '123',
'X-Forwarded': '123',
'Forwarded-For': '123',
Forwarded: '123',
'X-Vercel-Forwarded-For': '123',
},
};
const optionsWithoutIP = {
include: {},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithoutIP);
expect(parsedRequest.request?.headers).toEqual({ otherHeader: 'hello' });
});
test('keeps IP headers if `ip=true`', () => {
const reqWithIPInHeader = {
...mockReq,
headers: {
otherHeader: 'hello',
'X-Client-IP': '123',
'X-Forwarded-For': '123',
'Fly-Client-IP': '123',
'CF-Connecting-IP': '123',
'Fastly-Client-Ip': '123',
'True-Client-Ip': '123',
'X-Real-IP': '123',
'X-Cluster-Client-IP': '123',
'X-Forwarded': '123',
'Forwarded-For': '123',
Forwarded: '123',
'X-Vercel-Forwarded-For': '123',
},
};
const optionsWithoutIP = {
include: {
ip: true,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithIPInHeader, optionsWithoutIP);
expect(parsedRequest.request?.headers).toEqual({
otherHeader: 'hello',
'X-Client-IP': '123',
'X-Forwarded-For': '123',
'Fly-Client-IP': '123',
'CF-Connecting-IP': '123',
'Fastly-Client-Ip': '123',
'True-Client-Ip': '123',
'X-Real-IP': '123',
'X-Cluster-Client-IP': '123',
'X-Forwarded': '123',
'Forwarded-For': '123',
Forwarded: '123',
'X-Vercel-Forwarded-For': '123',
});
});
});
describe('request properties', () => {
test('request only contains the default set of properties from the request', () => {
const DEFAULT_REQUEST_PROPERTIES = ['cookies', 'data', 'headers', 'method', 'query_string', 'url'];
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq);
expect(Object.keys(parsedRequest.request!)).toEqual(DEFAULT_REQUEST_PROPERTIES);
});
test('request only contains the specified properties in the options.request array', () => {
const INCLUDED_PROPERTIES = ['data', 'headers', 'query_string', 'url'];
const optionsWithRequestIncludes = {
include: {
request: INCLUDED_PROPERTIES,
},
};
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq, optionsWithRequestIncludes);
expect(Object.keys(parsedRequest.request!)).toEqual(INCLUDED_PROPERTIES);
});
test.each([
[undefined, true],
['GET', false],
['HEAD', false],
])('request skips `body` property for GET and HEAD requests - %s method', (method, shouldIncludeBodyData) => {
const reqWithMethod = { ...mockReq, method };
const parsedRequest: Event = addRequestDataToEvent(mockEvent, reqWithMethod);
if (shouldIncludeBodyData) {
expect(parsedRequest.request).toHaveProperty('data');
} else {
expect(parsedRequest.request).not.toHaveProperty('data');
}
});
});
describe('transaction property', () => {
describe('for transaction events', () => {
beforeEach(() => {
mockEvent.type = 'transaction';
});
test('extracts method and full route path by default`', () => {
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq);
expect(parsedRequest.transaction).toEqual('POST /routerMountPath/subpath/:parameterName');
});
test('extracts method and full path by default when mountpoint is `/`', () => {
mockReq.originalUrl = mockReq.originalUrl.replace('/routerMountpath', '');
mockReq.baseUrl = '';
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq);
// `subpath/` is the full path here, because there's no router mount path
expect(parsedRequest.transaction).toEqual('POST /subpath/:parameterName');
});
test('fallback to method and `originalUrl` if route is missing', () => {
delete mockReq.route;
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq);
expect(parsedRequest.transaction).toEqual('POST /routerMountPath/subpath/specificValue');
});
test('can extract path only instead if configured', () => {
const optionsWithPathTransaction = {
include: {
transaction: 'path',
},
} as const;
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq, optionsWithPathTransaction);
expect(parsedRequest.transaction).toEqual('/routerMountPath/subpath/:parameterName');
});
test('can extract handler name instead if configured', () => {
const optionsWithHandlerTransaction = {
include: {
transaction: 'handler',
},
} as const;
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq, optionsWithHandlerTransaction);
expect(parsedRequest.transaction).toEqual('parameterNameRouteHandler');
});
});
it('transaction is not applied to non-transaction events', () => {
const parsedRequest: Event = addRequestDataToEvent(mockEvent, mockReq);
expect(parsedRequest.transaction).toBeUndefined();
});
});
});
describe('extractRequestData', () => {
describe('default behaviour', () => {
test('node', () => {
const mockReq = {
headers: { host: 'example.com' },
method: 'GET',
socket: { encrypted: true },
originalUrl: '/',
};
expect(extractRequestData(mockReq)).toEqual({
cookies: {},
headers: {
host: 'example.com',
},
method: 'GET',
query_string: undefined,
url: 'https://example.com/',
});
});
test('degrades gracefully without request data', () => {
const mockReq = {};
expect(extractRequestData(mockReq)).toEqual({
cookies: {},
headers: {},
method: undefined,
query_string: undefined,
url: 'http://<no host>',
});
});
});
describe('headers', () => {
it('removes the `Cookie` header from requestdata.headers, if `cookies` is not set in the options', () => {
const mockReq = {
cookies: { foo: 'bar' },
headers: { cookie: 'foo=bar', otherHeader: 'hello' },
};
const options = { include: ['headers'] };
expect(extractRequestData(mockReq, options)).toStrictEqual({
headers: { otherHeader: 'hello' },
});
});
it('includes the `Cookie` header in requestdata.headers, if `cookies` is set in the options', () => {
const mockReq = {
cookies: { foo: 'bar' },
headers: { cookie: 'foo=bar', otherHeader: 'hello' },
};
const optionsWithCookies = { include: ['headers', 'cookies'] };
expect(extractRequestData(mockReq, optionsWithCookies)).toStrictEqual({
headers: { otherHeader: 'hello', cookie: 'foo=bar' },
cookies: { foo: 'bar' },
});
});
it('removes IP-related headers from requestdata.headers, if `ip` is not set in the options', () => {
const mockReq = {
headers: {
otherHeader: 'hello',
'X-Client-IP': '123',
'X-Forwarded-For': '123',
'Fly-Client-IP': '123',
'CF-Connecting-IP': '123',
'Fastly-Client-Ip': '123',
'True-Client-Ip': '123',
'X-Real-IP': '123',
'X-Cluster-Client-IP': '123',
'X-Forwarded': '123',
'Forwarded-For': '123',
Forwarded: '123',
'X-Vercel-Forwarded-For': '123',
},
};
const options = { include: ['headers'] };
expect(extractRequestData(mockReq, options)).toStrictEqual({
headers: { otherHeader: 'hello' },
});
});
it('keeps IP-related headers from requestdata.headers, if `ip` is enabled in options', () => {
const mockReq = {
headers: {
otherHeader: 'hello',
'X-Client-IP': '123',
'X-Forwarded-For': '123',
'Fly-Client-IP': '123',
'CF-Connecting-IP': '123',
'Fastly-Client-Ip': '123',
'True-Client-Ip': '123',
'X-Real-IP': '123',
'X-Cluster-Client-IP': '123',
'X-Forwarded': '123',
'Forwarded-For': '123',
Forwarded: '123',
'X-Vercel-Forwarded-For': '123',
},
};
const options = { include: ['headers', 'ip'] };
expect(extractRequestData(mockReq, options)).toStrictEqual({
headers: {
otherHeader: 'hello',
'X-Client-IP': '123',
'X-Forwarded-For': '123',
'Fly-Client-IP': '123',
'CF-Connecting-IP': '123',
'Fastly-Client-Ip': '123',
'True-Client-Ip': '123',
'X-Real-IP': '123',
'X-Cluster-Client-IP': '123',
'X-Forwarded': '123',
'Forwarded-For': '123',
Forwarded: '123',
'X-Vercel-Forwarded-For': '123',
},
});
});
});
describe('cookies', () => {
it('uses `req.cookies` if available', () => {
const mockReq = {
cookies: { foo: 'bar' },
};
const optionsWithCookies = { include: ['cookies'] };
expect(extractRequestData(mockReq, optionsWithCookies)).toEqual({
cookies: { foo: 'bar' },
});
});
it('parses the cookie header', () => {
const mockReq = {
headers: {
cookie: 'foo=bar;',
},
};
const optionsWithCookies = { include: ['cookies'] };
expect(extractRequestData(mockReq, optionsWithCookies)).toEqual({
cookies: { foo: 'bar' },
});
});
it('falls back if no cookies are defined', () => {
const mockReq = {};
const optionsWithCookies = { include: ['cookies'] };
expect(extractRequestData(mockReq, optionsWithCookies)).toEqual({
cookies: {},
});
});
});
describe('data', () => {
it('includes data from `req.body` if available', () => {
const mockReq = {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: 'foo=bar',
};
const optionsWithData = { include: ['data'] };
expect(extractRequestData(mockReq, optionsWithData)).toEqual({
data: 'foo=bar',
});
});
it('encodes JSON body contents back to a string', () => {
const mockReq = {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: { foo: 'bar' },
};
const optionsWithData = { include: ['data'] };
expect(extractRequestData(mockReq, optionsWithData)).toEqual({
data: '{"foo":"bar"}',
});
});
});
describe('query_string', () => {
it('parses the query parms from the url', () => {
const mockReq = {
headers: { host: 'example.com' },
secure: true,
originalUrl: '/?foo=bar',
};
const optionsWithQueryString = { include: ['query_string'] };
expect(extractRequestData(mockReq, optionsWithQueryString)).toEqual({
query_string: 'foo=bar',
});
});
it('gracefully degrades if url cannot be determined', () => {
const mockReq = {};
const optionsWithQueryString = { include: ['query_string'] };
expect(extractRequestData(mockReq, optionsWithQueryString)).toEqual({
query_string: undefined,
});
});
});
describe('url', () => {
test('express/koa', () => {
const mockReq = {
host: 'example.com',
protocol: 'https',
url: '/',
};
const optionsWithURL = { include: ['url'] };
expect(extractRequestData(mockReq, optionsWithURL)).toEqual({
url: 'https://example.com/',
});
});
test('node', () => {
const mockReq = {
headers: { host: 'example.com' },
socket: { encrypted: true },
originalUrl: '/',
};
const optionsWithURL = { include: ['url'] };
expect(extractRequestData(mockReq, optionsWithURL)).toEqual({
url: 'https://example.com/',
});
});
});
describe('custom key', () => {
it('includes the custom key if present', () => {
const mockReq = {
httpVersion: '1.1',
} as any;
const optionsWithCustomKey = { include: ['httpVersion'] };
expect(extractRequestData(mockReq, optionsWithCustomKey)).toEqual({
httpVersion: '1.1',
});
});
it('gracefully degrades if the custom key is missing', () => {
const mockReq = {} as any;
const optionsWithCustomKey = { include: ['httpVersion'] };
expect(extractRequestData(mockReq, optionsWithCustomKey)).toEqual({});
});
});
});
describe('extractPathForTransaction', () => {
it.each([
[
'extracts a parameterized route and method if available',
{
method: 'get',
baseUrl: '/api/users',
route: { path: '/:id/details' },
originalUrl: '/api/users/123/details',
} as PolymorphicRequest,
{ path: true, method: true },
'GET /api/users/:id/details',
'route' as TransactionSource,
],
[
'ignores the method if specified',
{
method: 'get',
baseUrl: '/api/users',
route: { path: '/:id/details' },
originalUrl: '/api/users/123/details',
} as PolymorphicRequest,
{ path: true, method: false },
'/api/users/:id/details',
'route' as TransactionSource,
],
[
'ignores the path if specified',
{
method: 'get',
baseUrl: '/api/users',
route: { path: '/:id/details' },
originalUrl: '/api/users/123/details',
} as PolymorphicRequest,
{ path: false, method: true },
'GET',
'route' as TransactionSource,
],
[
'returns an empty string if everything should be ignored',
{
method: 'get',
baseUrl: '/api/users',
route: { path: '/:id/details' },
originalUrl: '/api/users/123/details',
} as PolymorphicRequest,
{ path: false, method: false },
'',
'route' as TransactionSource,
],
[
'falls back to the raw URL if no parameterized route is available',
{
method: 'get',
baseUrl: '/api/users',
originalUrl: '/api/users/123/details',
} as PolymorphicRequest,
{ path: true, method: true },
'GET /api/users/123/details',
'url' as TransactionSource,
],
])(
'%s',
(
_: string,
req: PolymorphicRequest,
options: { path?: boolean; method?: boolean },
expectedRoute: string,
expectedSource: TransactionSource,
) => {
const [route, source] = extractPathForTransaction(req, options);
expect(route).toEqual(expectedRoute);
expect(source).toEqual(expectedSource);
},
);
it('overrides the requests information with a custom route if specified', () => {
const req = {
method: 'get',
baseUrl: '/api/users',
route: { path: '/:id/details' },
originalUrl: '/api/users/123/details',
} as PolymorphicRequest;
const [route, source] = extractPathForTransaction(req, {
path: true,
method: true,
customRoute: '/other/path/:id/details',
});
expect(route).toEqual('GET /other/path/:id/details');
expect(source).toEqual('route');
});
});
describe('getClientIPAddress', () => {
it.each([
[
'2b01:cb19:8350:ed00:d0dd:fa5b:de31:8be5,2b01:cb19:8350:ed00:d0dd:fa5b:de31:8be5, 141.101.69.35',
'2b01:cb19:8350:ed00:d0dd:fa5b:de31:8be5',
],
[
'2b01:cb19:8350:ed00:d0dd:fa5b:de31:8be5, 2b01:cb19:8350:ed00:d0dd:fa5b:de31:8be5, 141.101.69.35',
'2b01:cb19:8350:ed00:d0dd:fa5b:de31:8be5',
],
[
'2a01:cb19:8350:ed00:d0dd:INVALID_IP_ADDR:8be5,141.101.69.35,2a01:cb19:8350:ed00:d0dd:fa5b:de31:8be5',
'141.101.69.35',
],
[
'2b01:cb19:8350:ed00:d0dd:fa5b:nope:8be5, 2b01:cb19:NOPE:ed00:d0dd:fa5b:de31:8be5, 141.101.69.35 ',
'141.101.69.35',
],
['2b01:cb19:8350:ed00:d0 dd:fa5b:de31:8be5, 141.101.69.35', '141.101.69.35'],
])('should parse the IP from the X-Forwarded-For header %s', (headerValue, expectedIP) => {
const headers = {
'X-Forwarded-For': headerValue,
};
const ip = getClientIPAddress(headers);
expect(ip).toEqual(expectedIP);
});
});