File tree 2 files changed +39
-4
lines changed 2 files changed +39
-4
lines changed Original file line number Diff line number Diff line change @@ -363,23 +363,27 @@ function sessionListenerRemoved(name) {
363
363
// Also keep track of listeners for the Http2Stream instances, as some events
364
364
// are emitted on those objects.
365
365
function streamListenerAdded ( name ) {
366
+ const session = this [ kSession ] ;
367
+ if ( ! session ) return ;
366
368
switch ( name ) {
367
369
case 'priority' :
368
- this [ kSession ] [ kNativeFields ] [ kSessionPriorityListenerCount ] ++ ;
370
+ session [ kNativeFields ] [ kSessionPriorityListenerCount ] ++ ;
369
371
break ;
370
372
case 'frameError' :
371
- this [ kSession ] [ kNativeFields ] [ kSessionFrameErrorListenerCount ] ++ ;
373
+ session [ kNativeFields ] [ kSessionFrameErrorListenerCount ] ++ ;
372
374
break ;
373
375
}
374
376
}
375
377
376
378
function streamListenerRemoved ( name ) {
379
+ const session = this [ kSession ] ;
380
+ if ( ! session ) return ;
377
381
switch ( name ) {
378
382
case 'priority' :
379
- this [ kSession ] [ kNativeFields ] [ kSessionPriorityListenerCount ] -- ;
383
+ session [ kNativeFields ] [ kSessionPriorityListenerCount ] -- ;
380
384
break ;
381
385
case 'frameError' :
382
- this [ kSession ] [ kNativeFields ] [ kSessionFrameErrorListenerCount ] -- ;
386
+ session [ kNativeFields ] [ kSessionFrameErrorListenerCount ] -- ;
383
387
break ;
384
388
}
385
389
}
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ const common = require ( '../common' ) ;
4
+ if ( ! common . hasCrypto )
5
+ common . skip ( 'missing crypto' ) ;
6
+ const http2 = require ( 'http2' ) ;
7
+
8
+ // Regression test for https://github.com/nodejs/node/issues/29457:
9
+ // HTTP/2 stream event listeners can be added and removed after the
10
+ // session has been destroyed.
11
+
12
+ const server = http2 . createServer ( ( req , res ) => {
13
+ res . end ( 'Hi!\n' ) ;
14
+ } ) ;
15
+
16
+ server . listen ( 0 , common . mustCall ( ( ) => {
17
+ const client = http2 . connect ( `http://localhost:${ server . address ( ) . port } ` ) ;
18
+ const headers = { ':path' : '/' } ;
19
+ const req = client . request ( headers ) ;
20
+
21
+ req . on ( 'close' , common . mustCall ( ( ) => {
22
+ req . removeAllListeners ( ) ;
23
+ req . on ( 'priority' , common . mustNotCall ( ) ) ;
24
+ server . close ( ) ;
25
+ } ) ) ;
26
+
27
+ req . on ( 'priority' , common . mustNotCall ( ) ) ;
28
+ req . on ( 'error' , common . mustCall ( ) ) ;
29
+
30
+ client . destroy ( ) ;
31
+ } ) ) ;
You can’t perform that action at this time.
0 commit comments