Skip to content

Commit

Permalink
add basic uv-errmap test
Browse files Browse the repository at this point in the history
  • Loading branch information
eladkishon committed Apr 9, 2021
1 parent 7ea64bb commit 306bdf7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions test/parallel/test-uv-errmap.js
@@ -0,0 +1,24 @@
// Flags: --expose-internals
'use strict';

const common = require('../common');
const assert = require('assert');
const {
getSystemErrorMap,
_errnoException
} = require('util');

const { internalBinding } = require('internal/test/binding');
const uv = internalBinding('uv');
const uvKeys = Object.keys(uv);

const errMap = getSystemErrorMap();

uvKeys.forEach((key) => {
if (!key.startsWith('UV_'))
return;

const err = _errnoException(uv[key]);
const name = uv.errname(uv[key]);
assert.strictEqual(errMap.get(err.errno)[0], name);
});

0 comments on commit 306bdf7

Please sign in to comment.