mirror of https://github.com/nodejs/node.git
test: add test for exception handlings in debugger
PR-URL: https://github.com/nodejs/node/pull/42327 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
parent
bba82cd9b9
commit
eda2498dfd
|
@ -0,0 +1,42 @@
|
||||||
|
'use strict';
|
||||||
|
const common = require('../common');
|
||||||
|
const startCLI = require('../common/debugger');
|
||||||
|
|
||||||
|
common.skipIfInspectorDisabled();
|
||||||
|
|
||||||
|
const assert = require('assert');
|
||||||
|
const http = require('http');
|
||||||
|
|
||||||
|
const host = '127.0.0.1';
|
||||||
|
|
||||||
|
{
|
||||||
|
const server = http.createServer((req, res) => {
|
||||||
|
res.statusCode = 400;
|
||||||
|
res.end('Bad Request');
|
||||||
|
});
|
||||||
|
server.listen(0, common.mustCall(() => {
|
||||||
|
const port = server.address().port;
|
||||||
|
const cli = startCLI([`${host}:${port}`]);
|
||||||
|
cli.quit().then(common.mustCall((code) => {
|
||||||
|
assert.strictEqual(code, 1);
|
||||||
|
})).finally(() => {
|
||||||
|
server.close();
|
||||||
|
});
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const server = http.createServer((req, res) => {
|
||||||
|
res.statusCode = 200;
|
||||||
|
res.end('some data that is invalid json');
|
||||||
|
});
|
||||||
|
server.listen(0, host, common.mustCall(() => {
|
||||||
|
const port = server.address().port;
|
||||||
|
const cli = startCLI([`${host}:${port}`]);
|
||||||
|
cli.quit().then(common.mustCall((code) => {
|
||||||
|
assert.strictEqual(code, 1);
|
||||||
|
})).finally(() => {
|
||||||
|
server.close();
|
||||||
|
});
|
||||||
|
}));
|
||||||
|
}
|
Loading…
Reference in New Issue