2018-07-23 09:45:01 +02:00
|
|
|
const { describe, it } = require('mocha')
|
2018-06-25 08:25:12 +02:00
|
|
|
const assert = require('assert')
|
|
|
|
const bufferutils = require('../src/bufferutils')
|
2014-05-13 08:35:07 +02:00
|
|
|
|
2018-06-25 08:25:12 +02:00
|
|
|
const fixtures = require('./fixtures/bufferutils.json')
|
2014-05-13 08:35:07 +02:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
describe('bufferutils', function () {
|
|
|
|
describe('readUInt64LE', function () {
|
|
|
|
fixtures.valid.forEach(function (f) {
|
2018-04-13 17:07:10 +02:00
|
|
|
it('decodes ' + f.hex, function () {
|
2018-06-25 08:37:45 +02:00
|
|
|
const buffer = Buffer.from(f.hex, 'hex')
|
|
|
|
const number = bufferutils.readUInt64LE(buffer, 0)
|
2014-05-13 08:35:07 +02:00
|
|
|
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(number, f.dec)
|
2014-05-13 08:35:07 +02:00
|
|
|
})
|
|
|
|
})
|
2014-05-31 05:18:57 +02:00
|
|
|
|
2015-03-04 10:32:08 +01:00
|
|
|
fixtures.invalid.readUInt64LE.forEach(function (f) {
|
2015-02-23 00:36:57 +01:00
|
|
|
it('throws on ' + f.description, function () {
|
2018-06-25 08:37:45 +02:00
|
|
|
const buffer = Buffer.from(f.hex, 'hex')
|
2014-05-31 05:18:57 +02:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
assert.throws(function () {
|
2014-05-31 05:18:57 +02:00
|
|
|
bufferutils.readUInt64LE(buffer, 0)
|
|
|
|
}, new RegExp(f.exception))
|
|
|
|
})
|
|
|
|
})
|
2014-05-13 08:35:07 +02:00
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
describe('writeUInt64LE', function () {
|
|
|
|
fixtures.valid.forEach(function (f) {
|
2018-04-13 17:07:10 +02:00
|
|
|
it('encodes ' + f.dec, function () {
|
2018-06-25 08:37:45 +02:00
|
|
|
const buffer = Buffer.alloc(8, 0)
|
2014-05-13 08:35:07 +02:00
|
|
|
|
|
|
|
bufferutils.writeUInt64LE(buffer, f.dec, 0)
|
2018-04-13 17:07:10 +02:00
|
|
|
assert.strictEqual(buffer.toString('hex'), f.hex)
|
2014-05-13 08:35:07 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2015-03-04 10:32:08 +01:00
|
|
|
fixtures.invalid.readUInt64LE.forEach(function (f) {
|
2015-02-23 00:36:57 +01:00
|
|
|
it('throws on ' + f.description, function () {
|
2018-06-25 08:37:45 +02:00
|
|
|
const buffer = Buffer.alloc(8, 0)
|
2014-05-13 08:35:07 +02:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
assert.throws(function () {
|
2014-05-13 08:35:07 +02:00
|
|
|
bufferutils.writeUInt64LE(buffer, f.dec, 0)
|
2014-05-31 05:18:57 +02:00
|
|
|
}, new RegExp(f.exception))
|
2014-05-13 08:35:07 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|