node/test/parallel/test-debugger-invalid-json.js
Kohei Ueno eda2498dfd
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>
2022-04-02 23:50:37 +01:00

43 lines
1.0 KiB
JavaScript

'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();
});
}));
}