-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tls: do not wrap net.Socket with StreamWrap
Fixes: #3655 PR-URL: #12799 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Fedor Indutny <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
'use strict'; | ||
|
||
/* | ||
* Issue: https://github.com/nodejs/node/issues/3655 | ||
* Test checks if we get exception instead of runtime error | ||
*/ | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
|
||
const TlsSocket = require('tls').TLSSocket; | ||
const EventEmitter = require('events').EventEmitter; | ||
assert.throws( | ||
() => { new TlsSocket(new EventEmitter()); }, | ||
/^TypeError: this\.stream\.pause is not a function/ | ||
); |