Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: improve code coverage of diagnostics_channel #50053

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
'use strict';

require('../common');
const dc = require('diagnostics_channel');
const assert = require('assert');

let channel;

// tracingChannel creating with name
channel = dc.tracingChannel('test');
assert.strictEqual(channel.start.name, 'tracing:test:start');

// tracingChannel creating with channels
channel = dc.tracingChannel({
start: dc.channel('tracing:test:start'),
end: dc.channel('tracing:test:end'),
asyncStart: dc.channel('tracing:test:asyncStart'),
asyncEnd: dc.channel('tracing:test:asyncEnd'),
error: dc.channel('tracing:test:error'),
});

// tracingChannel creating without nameOrChannels must throw TypeError
assert.throws(() => (channel = dc.tracingChannel(0)), {
code: 'ERR_INVALID_ARG_TYPE',
name: 'TypeError',
message:
/The "nameOrChannels" argument must be of type string or an instance of Channel or Object/,
});

// tracingChannel creating without instance of Channel must throw error
assert.throws(() => (channel = dc.tracingChannel({ start: '' })), {
code: 'ERR_INVALID_ARG_TYPE',
message: /The "nameOrChannels\.start" property must be an instance of Channel/,
});

// tracingChannel creating with empty nameOrChannels must throw error
assert.throws(() => (channel = dc.tracingChannel({})), {
message: /Cannot convert undefined or null to object/,
});