mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
83e6350b82
PR-URL: https://github.com/nodejs/node/pull/49990 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
27 lines
902 B
JavaScript
27 lines
902 B
JavaScript
// Flags: --expose-internals
|
|
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { UVException, UVExceptionWithHostPort } = require('internal/errors');
|
|
|
|
{
|
|
const exception = new UVException({ errno: 100, syscall: 'open' });
|
|
|
|
assert.strictEqual(exception.message, 'UNKNOWN: unknown error, open');
|
|
assert.strictEqual(exception.errno, 100);
|
|
assert.strictEqual(exception.syscall, 'open');
|
|
assert.strictEqual(exception.code, 'UNKNOWN');
|
|
}
|
|
|
|
{
|
|
const exception = new UVExceptionWithHostPort(100, 'listen', '127.0.0.1', 80);
|
|
|
|
assert.strictEqual(exception.message,
|
|
'listen UNKNOWN: unknown error 127.0.0.1:80');
|
|
assert.strictEqual(exception.code, 'UNKNOWN');
|
|
assert.strictEqual(exception.errno, 100);
|
|
assert.strictEqual(exception.syscall, 'listen');
|
|
assert.strictEqual(exception.address, '127.0.0.1');
|
|
assert.strictEqual(exception.port, 80);
|
|
}
|