node/test/parallel/test-buffer-readuintle.js
larissayvette 66c0767be4 test: basic functionality of readUIntLE()
PR-URL: https://github.com/nodejs/node/pull/10359
Reviewed-By: Julian Duque <julianduquej@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Italo A. Casas <me@italoacasas.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-12-24 15:44:40 -08:00

25 lines
438 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
// testing basic functionality of readUIntLE()
const buf = Buffer.from([42, 84, 168, 127]);
const result = buf.readUIntLE(2);
assert.strictEqual(result, 168);
assert.throws(
() => {
buf.readUIntLE(5);
},
/Index out of range/
);
assert.doesNotThrow(
() => {
buf.readUIntLE(5, 0, true);
},
'readUIntLE() should not throw if noAssert is true'
);