@@ -9,7 +9,7 @@ const testUtils = require('./test-utils');
9
9
const base64UrlEncode = testUtils . base64UrlEncode ;
10
10
const noneAlgorithmHeader = 'eyJhbGciOiJub25lIiwidHlwIjoiSldUIn0' ;
11
11
12
- function signWithNoBefore ( payload , notBefore ) {
12
+ function signWithNotBefore ( payload , notBefore ) {
13
13
const options = { algorithm : 'none' } ;
14
14
if ( notBefore !== undefined ) {
15
15
options . notBefore = notBefore ;
@@ -36,15 +36,15 @@ describe('not before', function() {
36
36
{ foo : 'bar' } ,
37
37
] . forEach ( ( notBefore ) => {
38
38
it ( `should error with with value ${ util . inspect ( notBefore ) } ` , function ( ) {
39
- expect ( ( ) => signWithNoBefore ( { } , notBefore ) ) . to . throw (
39
+ expect ( ( ) => signWithNotBefore ( { } , notBefore ) ) . to . throw (
40
40
'"notBefore" should be a number of seconds or string representing a timespan'
41
41
) ;
42
42
} ) ;
43
43
} ) ;
44
44
45
45
// TODO this should throw the same error as other invalid inputs
46
46
it ( `should error with with value ''` , function ( ) {
47
- expect ( ( ) => signWithNoBefore ( { } , '' ) ) . to . throw (
47
+ expect ( ( ) => signWithNotBefore ( { } , '' ) ) . to . throw (
48
48
'val is not a non-empty string or a valid number. val=""'
49
49
) ;
50
50
} ) ;
@@ -57,19 +57,19 @@ describe('not before', function() {
57
57
} ) ;
58
58
59
59
it ( 'should error when "nbf" is in payload' , function ( ) {
60
- expect ( ( ) => signWithNoBefore ( { nbf : 100 } , 100 ) ) . to . throw (
60
+ expect ( ( ) => signWithNotBefore ( { nbf : 100 } , 100 ) ) . to . throw (
61
61
'Bad "options.notBefore" option the payload already has an "nbf" property.'
62
62
) ;
63
63
} ) ;
64
64
65
65
it ( 'should error with a string payload' , function ( ) {
66
- expect ( ( ) => signWithNoBefore ( 'a string payload' , 100 ) ) . to . throw (
66
+ expect ( ( ) => signWithNotBefore ( 'a string payload' , 100 ) ) . to . throw (
67
67
'invalid notBefore option for string payload'
68
68
) ;
69
69
} ) ;
70
70
71
71
it ( 'should error with a Buffer payload' , function ( ) {
72
- expect ( ( ) => signWithNoBefore ( new Buffer ( 'a Buffer payload' ) , 100 ) ) . to . throw (
72
+ expect ( ( ) => signWithNotBefore ( new Buffer ( 'a Buffer payload' ) , 100 ) ) . to . throw (
73
73
'invalid notBefore option for object payload'
74
74
) ;
75
75
} ) ;
@@ -90,7 +90,7 @@ describe('not before', function() {
90
90
{ foo : 'bar' } ,
91
91
] . forEach ( ( nbf ) => {
92
92
it ( `should error with with value ${ util . inspect ( nbf ) } ` , function ( ) {
93
- expect ( ( ) => signWithNoBefore ( { nbf} ) ) . to . throw (
93
+ expect ( ( ) => signWithNotBefore ( { nbf} ) ) . to . throw (
94
94
'"nbf" should be a number of seconds'
95
95
) ;
96
96
} ) ;
@@ -135,7 +135,7 @@ describe('not before', function() {
135
135
} ) ;
136
136
137
137
it ( 'should set correct "nbf" with negative number of seconds' , function ( ) {
138
- const token = signWithNoBefore ( { } , - 10 ) ;
138
+ const token = signWithNotBefore ( { } , - 10 ) ;
139
139
const decoded = jwt . decode ( token ) ;
140
140
141
141
const verified = jwt . verify ( token , undefined ) ;
@@ -144,7 +144,7 @@ describe('not before', function() {
144
144
} ) ;
145
145
146
146
it ( 'should set correct "nbf" with positive number of seconds' , function ( ) {
147
- const token = signWithNoBefore ( { } , 10 ) ;
147
+ const token = signWithNotBefore ( { } , 10 ) ;
148
148
149
149
fakeClock . tick ( 10000 ) ;
150
150
const decoded = jwt . decode ( token ) ;
@@ -155,7 +155,7 @@ describe('not before', function() {
155
155
} ) ;
156
156
157
157
it ( 'should set correct "nbf" with zero seconds' , function ( ) {
158
- const token = signWithNoBefore ( { } , 0 ) ;
158
+ const token = signWithNotBefore ( { } , 0 ) ;
159
159
160
160
const decoded = jwt . decode ( token ) ;
161
161
@@ -165,7 +165,7 @@ describe('not before', function() {
165
165
} ) ;
166
166
167
167
it ( 'should set correct "nbf" with negative string timespan' , function ( ) {
168
- const token = signWithNoBefore ( { } , '-10 s' ) ;
168
+ const token = signWithNotBefore ( { } , '-10 s' ) ;
169
169
170
170
const decoded = jwt . decode ( token ) ;
171
171
@@ -176,7 +176,7 @@ describe('not before', function() {
176
176
177
177
178
178
it ( 'should set correct "nbf" with positive string timespan' , function ( ) {
179
- const token = signWithNoBefore ( { } , '10 s' ) ;
179
+ const token = signWithNotBefore ( { } , '10 s' ) ;
180
180
181
181
fakeClock . tick ( 10000 ) ;
182
182
const decoded = jwt . decode ( token ) ;
@@ -187,7 +187,7 @@ describe('not before', function() {
187
187
} ) ;
188
188
189
189
it ( 'should set correct "nbf" with zero string timespan' , function ( ) {
190
- const token = signWithNoBefore ( { } , '0 s' ) ;
190
+ const token = signWithNotBefore ( { } , '0 s' ) ;
191
191
192
192
const decoded = jwt . decode ( token ) ;
193
193
@@ -198,30 +198,30 @@ describe('not before', function() {
198
198
199
199
// TODO an nbf of -Infinity should fail validation
200
200
it ( 'should set null "nbf" when given -Infinity' , function ( ) {
201
- const token = signWithNoBefore ( { nbf : - Infinity } ) ;
201
+ const token = signWithNotBefore ( { nbf : - Infinity } ) ;
202
202
203
203
const decoded = jwt . decode ( token ) ;
204
204
expect ( decoded . nbf ) . to . be . null ;
205
205
} ) ;
206
206
207
207
// TODO an nbf of Infinity should fail validation
208
208
it ( 'should set null "nbf" when given value Infinity' , function ( ) {
209
- const token = signWithNoBefore ( { nbf : Infinity } ) ;
209
+ const token = signWithNotBefore ( { nbf : Infinity } ) ;
210
210
211
211
const decoded = jwt . decode ( token ) ;
212
212
expect ( decoded . nbf ) . to . be . null ;
213
213
} ) ;
214
214
215
215
// TODO an nbf of NaN should fail validation
216
216
it ( 'should set null "nbf" when given value NaN' , function ( ) {
217
- const token = signWithNoBefore ( { nbf : NaN } ) ;
217
+ const token = signWithNotBefore ( { nbf : NaN } ) ;
218
218
219
219
const decoded = jwt . decode ( token ) ;
220
220
expect ( decoded . nbf ) . to . be . null ;
221
221
} ) ;
222
222
223
223
it ( 'should set correct "nbf" when "iat" is passed' , function ( ) {
224
- const token = signWithNoBefore ( { iat : 40 } , - 10 ) ;
224
+ const token = signWithNotBefore ( { iat : 40 } , - 10 ) ;
225
225
226
226
const decoded = jwt . decode ( token ) ;
227
227
@@ -231,31 +231,31 @@ describe('not before', function() {
231
231
} ) ;
232
232
233
233
it ( 'should verify "nbf" using "clockTimestamp"' , function ( ) {
234
- const token = signWithNoBefore ( { } , 10 ) ;
234
+ const token = signWithNotBefore ( { } , 10 ) ;
235
235
236
236
const verified = jwt . verify ( token , undefined , { clockTimestamp : 70 } ) ;
237
237
expect ( verified . iat ) . to . equal ( 60 ) ;
238
238
expect ( verified . nbf ) . to . equal ( 70 ) ;
239
239
} ) ;
240
240
241
241
it ( 'should verify "nbf" using "clockTolerance"' , function ( ) {
242
- const token = signWithNoBefore ( { } , 5 ) ;
242
+ const token = signWithNotBefore ( { } , 5 ) ;
243
243
244
244
const verified = jwt . verify ( token , undefined , { clockTolerance : 6 } ) ;
245
245
expect ( verified . iat ) . to . equal ( 60 ) ;
246
246
expect ( verified . nbf ) . to . equal ( 65 ) ;
247
247
} ) ;
248
248
249
249
it ( 'should ignore a not active token when "ignoreNotBefore" is true' , function ( ) {
250
- const token = signWithNoBefore ( { } , '10 s' ) ;
250
+ const token = signWithNotBefore ( { } , '10 s' ) ;
251
251
252
252
const verified = jwt . verify ( token , undefined , { ignoreNotBefore : true } ) ;
253
253
expect ( verified . iat ) . to . equal ( 60 ) ;
254
254
expect ( verified . nbf ) . to . equal ( 70 ) ;
255
255
} ) ;
256
256
257
257
it ( 'should error on verify if "nbf" is after current time' , function ( ) {
258
- const token = signWithNoBefore ( { nbf : 61 } ) ;
258
+ const token = signWithNotBefore ( { nbf : 61 } ) ;
259
259
260
260
expect ( ( ) => jwt . verify ( token , undefined ) ) . to . throw (
261
261
jwt . NotBeforeError ,
@@ -264,7 +264,7 @@ describe('not before', function() {
264
264
} ) ;
265
265
266
266
it ( 'should error on verify if "nbf" is after current time using clockTolerance' , function ( ) {
267
- const token = signWithNoBefore ( { } , 5 ) ;
267
+ const token = signWithNotBefore ( { } , 5 ) ;
268
268
269
269
expect ( ( ) => jwt . verify ( token , undefined , { clockTolerance : 4 } ) ) . to . throw (
270
270
jwt . NotBeforeError ,
0 commit comments