summaryrefslogtreecommitdiff
path: root/test/parallel/test-constants.js
blob: c11935783f861df74f89351e568288dd4d92252a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
'use strict';

require('../common');
const binding = process.binding('constants');
const constants = require('constants');
const assert = require('assert');

assert.ok(binding);
assert.ok(binding.os);
assert.ok(binding.os.signals);
assert.ok(binding.os.errno);
assert.ok(binding.fs);
assert.ok(binding.crypto);

['os', 'fs', 'crypto'].forEach((l) => {
  Object.keys(binding[l]).forEach((k) => {
    if (typeof binding[l][k] === 'object') { // errno and signals
      Object.keys(binding[l][k]).forEach((j) => {
        assert.strictEqual(binding[l][k][j], constants[j]);
      });
    }
    if (l !== 'os') { // top level os constant isn't currently copied
      assert.strictEqual(binding[l][k], constants[k]);
    }
  });
});