@@ -21,8 +21,71 @@ it('should trim off \\r\\n', function () {
21
21
} ) ;
22
22
23
23
it ( 'should not be susceptible to exponential backtracking' , function ( ) {
24
+ var redosString = 'a' ;
25
+ var count = 1000 ;
26
+ while ( count ) {
27
+ redosString += '\r\n' ;
28
+ count -- ;
29
+ }
30
+ redosString += 'a' ;
31
+
32
+ var longerRedosString = redosString ;
33
+ count = 1000 ;
34
+ while ( count ) {
35
+ longerRedosString += redosString ;
36
+ count -- ;
37
+ }
38
+
39
+ var start = Date . now ( ) ;
40
+ trimOffNewlines ( redosString ) ;
41
+ trimOffNewlines ( longerRedosString ) ;
42
+ var end = Date . now ( ) ;
43
+ assert . ok ( end - start < 1000 , 'took too long, susceptible to ReDoS?' ) ;
44
+ } ) ;
45
+
46
+ it ( 'should be performant on very long strings' , function ( ) {
47
+ var longOrdinaryString = 'aa' ;
48
+ var count = 27 ;
49
+ while ( count ) {
50
+ longOrdinaryString += longOrdinaryString ;
51
+ count -- ;
52
+ }
53
+ assert . strictEqual ( longOrdinaryString . length , 268435456 ) ;
54
+
24
55
var start = Date . now ( ) ;
25
- trimOffNewlines ( 'a' + '\r\n' . repeat ( 1000 ) + 'a' ) ;
56
+ trimOffNewlines ( longOrdinaryString ) ;
26
57
var end = Date . now ( ) ;
27
- assert . ok ( end - start < 1000 , 'took too long, probably susceptible to ReDOS' ) ;
58
+ assert . ok ( end - start < 1000 , 'took too long, performance issue?' ) ;
59
+ } ) ;
60
+
61
+ it ( 'should be performant in worst-case' , function ( ) {
62
+ // In the current algorithm, this is likely a worst-case:
63
+ // non-newline character followed by many newline characters.
64
+
65
+ this . timeout ( 10000 ) ;
66
+
67
+ var worstCaseString = '\r\n' ;
68
+ var count = 27 ;
69
+ while ( count ) {
70
+ worstCaseString += worstCaseString ;
71
+ count -- ;
72
+ }
73
+ worstCaseString = 'a' + worstCaseString ;
74
+ assert . strictEqual ( worstCaseString . length , 268435457 ) ;
75
+ var start = Date . now ( ) ;
76
+ trimOffNewlines ( worstCaseString ) ;
77
+ var end = Date . now ( ) ;
78
+ assert . ok ( end - start < 5000 , 'worst case took too long, performance issue?' ) ;
79
+ } ) ;
80
+
81
+ it ( 'should leave newlines in the middle of a string alone' , function ( ) {
82
+ assert . strictEqual ( trimOffNewlines ( 'Come on,\nFhqwhgads.' ) , 'Come on,\nFhqwhgads.' ) ;
83
+ } ) ;
84
+
85
+ it ( 'should leave spaces at start and end alone' , function ( ) {
86
+ assert . strictEqual ( trimOffNewlines ( ' fhqwhgads ' ) , ' fhqwhgads ' ) ;
87
+ } ) ;
88
+
89
+ it ( 'should return an empty string if there are only \\r and \\n' , function ( ) {
90
+ assert . strictEqual ( trimOffNewlines ( '\r\n\r\r\n\n' ) , '' ) ;
28
91
} ) ;
0 commit comments