test: add coverage for client._addHandle()
`Client.prototype._addHandle()` in the `_debugger` module has conditions around invalid properties that are not currently tested. This change adds some minimal unit tests. PR-URL: https://github.com/nodejs/node/pull/8518 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
ea2a309e3b
commit
a01c365193
44
test/parallel/test-debugger-client-addhandle.js
Normal file
44
test/parallel/test-debugger-client-addhandle.js
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
require('../common');
|
||||||
|
const assert = require('assert');
|
||||||
|
const Client = require('_debugger').Client;
|
||||||
|
|
||||||
|
{
|
||||||
|
const client = new Client();
|
||||||
|
assert.deepStrictEqual(client.handles, {});
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const client = new Client();
|
||||||
|
client._addHandle(null);
|
||||||
|
assert.deepStrictEqual(client.handles, {});
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const client = new Client();
|
||||||
|
client._addHandle('not an object');
|
||||||
|
assert.deepStrictEqual(client.handles, {});
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const client = new Client();
|
||||||
|
client._addHandle({ handle: 'not a number' });
|
||||||
|
assert.deepStrictEqual(client.handles, {});
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const client = new Client();
|
||||||
|
const validNoScript = { handle: 6, id: 'foo', type: 'not a script' };
|
||||||
|
client._addHandle(validNoScript);
|
||||||
|
assert.deepStrictEqual(client.handles, { 6: validNoScript });
|
||||||
|
assert.deepStrictEqual(client.scripts, {});
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const client = new Client();
|
||||||
|
const validWithScript = { handle: 5, id: 'bar', type: 'script' };
|
||||||
|
client._addHandle(validWithScript);
|
||||||
|
assert.deepStrictEqual(client.handles, { 5: validWithScript });
|
||||||
|
assert.deepStrictEqual(client.scripts, { bar: validWithScript });
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user