我正在尝试测试安全的Websocket,但我遇到了麻烦。这是我的测试:
var WebSocket = require('ws');
describe('testing Web Socket', function() {
it('should do stuff', function(done) {
var ws = new WebSocket('wss://localhost:15449/', {
protocolVersion: 8,
origin: 'https://localhost:15449'
});
ws.on('open', function() {
console.log('open!!!');
done();
});
console.log(ws);
});
});
这是创建"ws"后的日志:
{ domain: null,
_events: { open: [Function] },
_maxListeners: undefined,
_socket: null,
_ultron: null,
_closeReceived: false,
bytesReceived: 0,
readyState: 0,
supports: { binary: true },
extensions: {},
_isServer: false,
url: 'wss://localhost:15449/',
protocolVersion: 8 }
我没有从打开中取回日志。我在本地运行该项目,当我使用 Chrome 高级 Rest 客户端工具时,我能够很好地连接。
我错过了什么吗?请帮忙。
编辑:我添加了ws.on('error')
,它注销了{ [Error: self signed certificate] code: 'DEPTH_ZERO_SELF_SIGNED_CERT' }
我也尝试遵循此代码,但收到相同的错误。
https
模块拒绝您的自签名证书(正如人们所希望的那样)。 您可以通过传递rejectUnauthorized: false
选项(WebSocket
将传递给https
)来强制它停止检查:
var ws = new WebSocket('wss://localhost:15449/', {
protocolVersion: 8,
origin: 'https://localhost:15449',
rejectUnauthorized: false
});