@@ -9,34 +9,20 @@ const testUtils = require('./test-utils');
9
9
const base64UrlEncode = testUtils . base64UrlEncode ;
10
10
const noneAlgorithmHeader = 'eyJhbGciOiJub25lIiwidHlwIjoiSldUIn0' ;
11
11
12
- function signWithIssueAtSync ( issueAt , options ) {
13
- const payload = { } ;
14
- if ( issueAt !== undefined ) {
15
- payload . iat = issueAt ;
16
- }
17
- const opts = Object . assign ( { algorithm : 'none' } , options ) ;
18
- return jwt . sign ( payload , undefined , opts ) ;
19
- }
20
-
21
- function signWithIssueAtAsync ( issueAt , options , cb ) {
12
+ function signWithIssueAt ( issueAt , options , callback ) {
22
13
const payload = { } ;
23
14
if ( issueAt !== undefined ) {
24
15
payload . iat = issueAt ;
25
16
}
26
17
const opts = Object . assign ( { algorithm : 'none' } , options ) ;
27
18
// async calls require a truthy secret
28
19
// see: https://github.com/brianloveswords/node-jws/issues/62
29
- return jwt . sign ( payload , 'secret' , opts , cb ) ;
20
+ testUtils . signJWTHelper ( payload , 'secret' , opts , callback ) ;
30
21
}
31
22
32
- function verifyWithIssueAtSync ( token , maxAge , options ) {
23
+ function verifyWithIssueAt ( token , maxAge , options , callback ) {
33
24
const opts = Object . assign ( { maxAge} , options ) ;
34
- return jwt . verify ( token , undefined , opts )
35
- }
36
-
37
- function verifyWithIssueAtAsync ( token , maxAge , options , cb ) {
38
- const opts = Object . assign ( { maxAge} , options ) ;
39
- return jwt . verify ( token , undefined , opts , cb )
25
+ testUtils . verifyJWTHelper ( token , undefined , opts , callback ) ;
40
26
}
41
27
42
28
describe ( 'issue at' , function ( ) {
@@ -53,22 +39,22 @@ describe('issue at', function() {
53
39
{ foo : 'bar' } ,
54
40
] . forEach ( ( iat ) => {
55
41
it ( `should error with iat of ${ util . inspect ( iat ) } ` , function ( done ) {
56
- expect ( ( ) => signWithIssueAtSync ( iat , { } ) ) . to . throw ( '"iat" should be a number of seconds' ) ;
57
- signWithIssueAtAsync ( iat , { } , ( err ) => {
58
- expect ( err . message ) . to . equal ( '"iat" should be a number of seconds' ) ;
59
- done ( ) ;
42
+ signWithIssueAt ( iat , { } , ( err ) => {
43
+ testUtils . asyncCheck ( done , ( ) => {
44
+ expect ( err ) . to . be . instanceOf ( Error ) ;
45
+ expect ( err . message ) . to . equal ( '"iat" should be a number of seconds' ) ;
46
+ } ) ;
60
47
} ) ;
61
48
} ) ;
62
49
} ) ;
63
50
64
51
// undefined needs special treatment because {} is not the same as {iat: undefined}
65
52
it ( 'should error with iat of undefined' , function ( done ) {
66
- expect ( ( ) => jwt . sign ( { iat : undefined } , undefined , { algorithm : 'none' } ) ) . to . throw (
67
- '"iat" should be a number of seconds'
68
- ) ;
69
- jwt . sign ( { iat : undefined } , undefined , { algorithm : 'none' } , ( err ) => {
70
- expect ( err . message ) . to . equal ( '"iat" should be a number of seconds' ) ;
71
- done ( ) ;
53
+ testUtils . signJWTHelper ( { iat : undefined } , 'secret' , { algorithm : 'none' } , ( err ) => {
54
+ testUtils . asyncCheck ( done , ( ) => {
55
+ expect ( err ) . to . be . instanceOf ( Error ) ;
56
+ expect ( err . message ) . to . equal ( '"iat" should be a number of seconds' ) ;
57
+ } ) ;
72
58
} ) ;
73
59
} ) ;
74
60
} ) ;
@@ -92,14 +78,11 @@ describe('issue at', function() {
92
78
it ( `should error with iat of ${ util . inspect ( iat ) } ` , function ( done ) {
93
79
const encodedPayload = base64UrlEncode ( JSON . stringify ( { iat} ) ) ;
94
80
const token = `${ noneAlgorithmHeader } .${ encodedPayload } .` ;
95
- expect ( ( ) => verifyWithIssueAtSync ( token , '1 min' , { } ) ) . to . throw (
96
- jwt . JsonWebTokenError , 'iat required when maxAge is specified'
97
- ) ;
98
-
99
- verifyWithIssueAtAsync ( token , '1 min' , { } , ( err ) => {
100
- expect ( err ) . to . be . instanceOf ( jwt . JsonWebTokenError ) ;
101
- expect ( err . message ) . to . equal ( 'iat required when maxAge is specified' ) ;
102
- done ( ) ;
81
+ verifyWithIssueAt ( token , '1 min' , { } , ( err ) => {
82
+ testUtils . asyncCheck ( done , ( ) => {
83
+ expect ( err ) . to . be . instanceOf ( jwt . JsonWebTokenError ) ;
84
+ expect ( err . message ) . to . equal ( 'iat required when maxAge is specified' ) ;
85
+ } ) ;
103
86
} ) ;
104
87
} ) ;
105
88
} )
@@ -163,25 +146,17 @@ describe('issue at', function() {
163
146
} ,
164
147
] . forEach ( ( testCase ) => {
165
148
it ( testCase . description , function ( done ) {
166
- const token = signWithIssueAtSync ( testCase . iat , testCase . options ) ;
167
- expect ( jwt . decode ( token ) . iat ) . to . equal ( testCase . expectedIssueAt ) ;
168
- signWithIssueAtAsync ( testCase . iat , testCase . options , ( err , token ) => {
169
- // node-jsw catches the error from expect, so we have to wrap it in try/catch and use done(error)
170
- try {
149
+ signWithIssueAt ( testCase . iat , testCase . options , ( err , token ) => {
150
+ testUtils . asyncCheck ( done , ( ) => {
171
151
expect ( err ) . to . be . null ;
172
152
expect ( jwt . decode ( token ) . iat ) . to . equal ( testCase . expectedIssueAt ) ;
173
- done ( ) ;
174
- }
175
- catch ( e ) {
176
- done ( e ) ;
177
- }
153
+ } ) ;
178
154
} ) ;
179
155
} ) ;
180
156
} ) ;
181
157
} ) ;
182
158
183
159
describe ( 'when verifying a token' , function ( ) {
184
- let token ;
185
160
let fakeClock ;
186
161
187
162
beforeEach ( function ( ) {
@@ -213,10 +188,14 @@ describe('issue at', function() {
213
188
} ,
214
189
] . forEach ( ( testCase ) => {
215
190
it ( testCase . description , function ( done ) {
216
- const token = signWithIssueAtSync ( undefined , { } ) ;
191
+ const token = jwt . sign ( { } , 'secret' , { algorithm : 'none' } ) ;
217
192
fakeClock . tick ( testCase . clockAdvance ) ;
218
- expect ( verifyWithIssueAtSync ( token , testCase . maxAge , testCase . options ) ) . to . not . throw ;
219
- verifyWithIssueAtAsync ( token , testCase . maxAge , testCase . options , done )
193
+ verifyWithIssueAt ( token , testCase . maxAge , testCase . options , ( err , token ) => {
194
+ testUtils . asyncCheck ( done , ( ) => {
195
+ expect ( err ) . to . be . null ;
196
+ expect ( token ) . to . be . a ( 'object' ) ;
197
+ } ) ;
198
+ } ) ;
220
199
} ) ;
221
200
} ) ;
222
201
@@ -256,16 +235,15 @@ describe('issue at', function() {
256
235
] . forEach ( ( testCase ) => {
257
236
it ( testCase . description , function ( done ) {
258
237
const expectedExpiresAtDate = new Date ( testCase . expectedExpiresAt ) ;
259
- token = signWithIssueAtSync ( undefined , { } ) ;
238
+ const token = jwt . sign ( { } , 'secret' , { algorithm : 'none' } ) ;
260
239
fakeClock . tick ( testCase . clockAdvance ) ;
261
- expect ( ( ) => verifyWithIssueAtSync ( token , testCase . maxAge , { } ) )
262
- . to . throw ( jwt . TokenExpiredError , testCase . expectedError )
263
- . to . have . property ( 'expiredAt' ) . that . deep . equals ( expectedExpiresAtDate ) ;
264
- verifyWithIssueAtAsync ( token , testCase . maxAge , { } , ( err ) => {
265
- expect ( err ) . to . be . instanceOf ( jwt . TokenExpiredError ) ;
266
- expect ( err . message ) . to . equal ( testCase . expectedError ) ;
267
- expect ( err . expiredAt ) . to . deep . equal ( expectedExpiresAtDate ) ;
268
- done ( ) ;
240
+
241
+ verifyWithIssueAt ( token , testCase . maxAge , testCase . options , ( err ) => {
242
+ testUtils . asyncCheck ( done , ( ) => {
243
+ expect ( err ) . to . be . instanceOf ( jwt . JsonWebTokenError ) ;
244
+ expect ( err . message ) . to . equal ( testCase . expectedError ) ;
245
+ expect ( err . expiredAt ) . to . deep . equal ( expectedExpiresAtDate ) ;
246
+ } ) ;
269
247
} ) ;
270
248
} ) ;
271
249
} ) ;
0 commit comments