@@ -5,38 +5,39 @@ const common = require('../common');
5
5
if ( ! common . hasCrypto )
6
6
common . skip ( 'missing crypto' ) ;
7
7
8
+ const assert = require ( 'assert' ) ;
8
9
const http2 = require ( 'http2' ) ;
9
10
10
11
// Verify that setTimeout callback verifications work correctly
12
+ const verifyCallbacks = ( server ) => {
13
+ const testTimeout = 10 ;
14
+ const notFunctions = [ true , 1 , { } , [ ] , null , 'test' ] ;
15
+ const invalidCallBackError = {
16
+ type : TypeError ,
17
+ code : 'ERR_INVALID_CALLBACK' ,
18
+ message : 'callback must be a function'
19
+ } ;
11
20
21
+ notFunctions . forEach ( ( notFunction ) =>
22
+ common . expectsError (
23
+ ( ) => server . setTimeout ( testTimeout , notFunction ) ,
24
+ invalidCallBackError
25
+ )
26
+ ) ;
27
+
28
+ // No callback
29
+ const returnedVal = server . setTimeout ( testTimeout ) ;
30
+ assert . strictEqual ( returnedVal . timeout , testTimeout ) ;
31
+ } ;
32
+
33
+ // Test with server
12
34
{
13
35
const server = http2 . createServer ( ) ;
14
- common . expectsError (
15
- ( ) => server . setTimeout ( 10 , 'test' ) ,
16
- {
17
- code : 'ERR_INVALID_CALLBACK' ,
18
- type : TypeError
19
- } ) ;
20
- common . expectsError (
21
- ( ) => server . setTimeout ( 10 , 1 ) ,
22
- {
23
- code : 'ERR_INVALID_CALLBACK' ,
24
- type : TypeError
25
- } ) ;
36
+ verifyCallbacks ( server ) ;
26
37
}
27
38
39
+ // Test with secure server
28
40
{
29
- const server = http2 . createSecureServer ( { } ) ;
30
- common . expectsError (
31
- ( ) => server . setTimeout ( 10 , 'test' ) ,
32
- {
33
- code : 'ERR_INVALID_CALLBACK' ,
34
- type : TypeError
35
- } ) ;
36
- common . expectsError (
37
- ( ) => server . setTimeout ( 10 , 1 ) ,
38
- {
39
- code : 'ERR_INVALID_CALLBACK' ,
40
- type : TypeError
41
- } ) ;
41
+ const secureServer = http2 . createSecureServer ( { } ) ;
42
+ verifyCallbacks ( secureServer ) ;
42
43
}
0 commit comments