@@ -115,7 +115,7 @@ describe('verify', function() {
115
115
116
116
describe ( 'option: maxAge' , function ( ) {
117
117
118
- [ '3s' , 3 ] . forEach ( function ( maxAge ) {
118
+ [ String ( '3s' ) , '3s' , 3 ] . forEach ( function ( maxAge ) {
119
119
it ( `should error for claims issued before a certain timespan (${ typeof maxAge } type)` , function ( done ) {
120
120
clock = sinon . useFakeTimers ( 1437018587000 ) ; // iat + 5s, exp - 5s
121
121
var options = { algorithms : [ 'HS256' ] , maxAge : maxAge } ;
@@ -131,7 +131,7 @@ describe('verify', function() {
131
131
} ) ;
132
132
} ) ;
133
133
134
- [ '5s' , 5 ] . forEach ( function ( maxAge ) {
134
+ [ String ( '5s' ) , '5s' , 5 ] . forEach ( function ( maxAge ) {
135
135
it ( `should not error for claims issued before a certain timespan but still inside clockTolerance timespan (${ typeof maxAge } type)` , function ( done ) {
136
136
clock = sinon . useFakeTimers ( 1437018587500 ) ; // iat + 5.5s, exp - 4.5s
137
137
var options = { algorithms : [ 'HS256' ] , maxAge : maxAge , clockTolerance : 1 } ;
@@ -144,7 +144,7 @@ describe('verify', function() {
144
144
} ) ;
145
145
} ) ;
146
146
147
- [ '6s' , 6 ] . forEach ( function ( maxAge ) {
147
+ [ String ( '6s' ) , '6s' , 6 ] . forEach ( function ( maxAge ) {
148
148
it ( `should not error if within maxAge timespan (${ typeof maxAge } type)` , function ( done ) {
149
149
clock = sinon . useFakeTimers ( 1437018587500 ) ; // iat + 5.5s, exp - 4.5s
150
150
var options = { algorithms : [ 'HS256' ] , maxAge : maxAge } ;
@@ -157,7 +157,7 @@ describe('verify', function() {
157
157
} ) ;
158
158
} ) ;
159
159
160
- [ '8s' , 8 ] . forEach ( function ( maxAge ) {
160
+ [ String ( '8s' ) , '8s' , 8 ] . forEach ( function ( maxAge ) {
161
161
it ( `can be more restrictive than expiration (${ typeof maxAge } type)` , function ( done ) {
162
162
clock = sinon . useFakeTimers ( 1437018591900 ) ; // iat + 9.9s, exp - 0.1s
163
163
var options = { algorithms : [ 'HS256' ] , maxAge : maxAge } ;
@@ -173,7 +173,7 @@ describe('verify', function() {
173
173
} ) ;
174
174
} ) ;
175
175
176
- [ '12s' , 12 ] . forEach ( function ( maxAge ) {
176
+ [ String ( '12s' ) , '12s' , 12 ] . forEach ( function ( maxAge ) {
177
177
it ( `cannot be more permissive than expiration (${ typeof maxAge } type)` , function ( done ) {
178
178
clock = sinon . useFakeTimers ( 1437018593000 ) ; // iat + 11s, exp + 1s
179
179
var options = { algorithms : [ 'HS256' ] , maxAge : '12s' } ;
@@ -190,6 +190,20 @@ describe('verify', function() {
190
190
} ) ;
191
191
} ) ;
192
192
193
+ [ new String ( '1s' ) , 'no-timespan-string' ] . forEach ( function ( maxAge ) {
194
+ it ( `should error if maxAge is specified with a wrong string format/type (value: ${ maxAge } , type: ${ typeof maxAge } )` , function ( done ) {
195
+ clock = sinon . useFakeTimers ( 1437018587000 ) ; // iat + 5s, exp - 5s
196
+ var options = { algorithms : [ 'HS256' ] , maxAge : maxAge } ;
197
+
198
+ jwt . verify ( token , key , options , function ( err , p ) {
199
+ assert . equal ( err . name , 'JsonWebTokenError' ) ;
200
+ assert . equal ( err . message , '"maxAge" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60' ) ;
201
+ assert . isUndefined ( p ) ;
202
+ done ( ) ;
203
+ } ) ;
204
+ } ) ;
205
+ } ) ;
206
+
193
207
it ( 'should error if maxAge is specified but there is no iat claim' , function ( done ) {
194
208
var token = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJmb28iOiJiYXIifQ.0MBPd4Bru9-fK_HY3xmuDAc6N_embknmNuhdb9bKL_U' ;
195
209
var options = { algorithms : [ 'HS256' ] , maxAge : '1s' } ;
@@ -201,6 +215,7 @@ describe('verify', function() {
201
215
done ( ) ;
202
216
} ) ;
203
217
} ) ;
218
+
204
219
} ) ;
205
220
206
221
describe ( 'option: clockTimestamp' , function ( ) {
0 commit comments