mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
98e54b0bd4
A prior io.js era commit inappropriately removed the original copyright statements from the source. This restores those in any files still remaining from that edit. Ref: https://github.com/nodejs/TSC/issues/174 Ref: https://github.com/nodejs/node/pull/10599 PR-URL: https://github.com/nodejs/node/pull/10155 Note: This PR was required, reviewed-by and approved by the Node.js Foundation Legal Committee and the TSC. There is no `Approved-By:` meta data.
131 lines
4.0 KiB
JavaScript
131 lines
4.0 KiB
JavaScript
// Copyright Joyent, Inc. and other Node contributors.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
// copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
// following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included
|
|
// in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
'use strict';
|
|
/*
|
|
* Tests to verify we're reading in doubles correctly
|
|
*/
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
/*
|
|
* Test (64 bit) double
|
|
*/
|
|
function test(clazz) {
|
|
const buffer = new clazz(8);
|
|
|
|
buffer[0] = 0x55;
|
|
buffer[1] = 0x55;
|
|
buffer[2] = 0x55;
|
|
buffer[3] = 0x55;
|
|
buffer[4] = 0x55;
|
|
buffer[5] = 0x55;
|
|
buffer[6] = 0xd5;
|
|
buffer[7] = 0x3f;
|
|
assert.strictEqual(1.1945305291680097e+103, buffer.readDoubleBE(0));
|
|
assert.strictEqual(0.3333333333333333, buffer.readDoubleLE(0));
|
|
|
|
buffer[0] = 1;
|
|
buffer[1] = 0;
|
|
buffer[2] = 0;
|
|
buffer[3] = 0;
|
|
buffer[4] = 0;
|
|
buffer[5] = 0;
|
|
buffer[6] = 0xf0;
|
|
buffer[7] = 0x3f;
|
|
assert.strictEqual(7.291122019655968e-304, buffer.readDoubleBE(0));
|
|
assert.strictEqual(1.0000000000000002, buffer.readDoubleLE(0));
|
|
|
|
buffer[0] = 2;
|
|
assert.strictEqual(4.778309726801735e-299, buffer.readDoubleBE(0));
|
|
assert.strictEqual(1.0000000000000004, buffer.readDoubleLE(0));
|
|
|
|
buffer[0] = 1;
|
|
buffer[6] = 0;
|
|
buffer[7] = 0;
|
|
assert.strictEqual(7.291122019556398e-304, buffer.readDoubleBE(0));
|
|
assert.strictEqual(5e-324, buffer.readDoubleLE(0));
|
|
|
|
buffer[0] = 0xff;
|
|
buffer[1] = 0xff;
|
|
buffer[2] = 0xff;
|
|
buffer[3] = 0xff;
|
|
buffer[4] = 0xff;
|
|
buffer[5] = 0xff;
|
|
buffer[6] = 0x0f;
|
|
buffer[7] = 0x00;
|
|
assert.ok(isNaN(buffer.readDoubleBE(0)));
|
|
assert.strictEqual(2.225073858507201e-308, buffer.readDoubleLE(0));
|
|
|
|
buffer[6] = 0xef;
|
|
buffer[7] = 0x7f;
|
|
assert.ok(isNaN(buffer.readDoubleBE(0)));
|
|
assert.strictEqual(1.7976931348623157e+308, buffer.readDoubleLE(0));
|
|
|
|
buffer[0] = 0;
|
|
buffer[1] = 0;
|
|
buffer[2] = 0;
|
|
buffer[3] = 0;
|
|
buffer[4] = 0;
|
|
buffer[5] = 0;
|
|
buffer[6] = 0xf0;
|
|
buffer[7] = 0x3f;
|
|
assert.strictEqual(3.03865e-319, buffer.readDoubleBE(0));
|
|
assert.strictEqual(1, buffer.readDoubleLE(0));
|
|
|
|
buffer[6] = 0;
|
|
buffer[7] = 0x40;
|
|
assert.strictEqual(3.16e-322, buffer.readDoubleBE(0));
|
|
assert.strictEqual(2, buffer.readDoubleLE(0));
|
|
|
|
buffer[7] = 0xc0;
|
|
assert.strictEqual(9.5e-322, buffer.readDoubleBE(0));
|
|
assert.strictEqual(-2, buffer.readDoubleLE(0));
|
|
|
|
buffer[6] = 0x10;
|
|
buffer[7] = 0;
|
|
assert.strictEqual(2.0237e-320, buffer.readDoubleBE(0));
|
|
assert.strictEqual(2.2250738585072014e-308, buffer.readDoubleLE(0));
|
|
|
|
buffer[6] = 0;
|
|
assert.strictEqual(0, buffer.readDoubleBE(0));
|
|
assert.strictEqual(0, buffer.readDoubleLE(0));
|
|
assert.strictEqual(false, 1 / buffer.readDoubleLE(0) < 0);
|
|
|
|
buffer[7] = 0x80;
|
|
assert.strictEqual(6.3e-322, buffer.readDoubleBE(0));
|
|
assert.strictEqual(0, buffer.readDoubleLE(0));
|
|
assert.strictEqual(true, 1 / buffer.readDoubleLE(0) < 0);
|
|
|
|
buffer[6] = 0xf0;
|
|
buffer[7] = 0x7f;
|
|
assert.strictEqual(3.0418e-319, buffer.readDoubleBE(0));
|
|
assert.strictEqual(Infinity, buffer.readDoubleLE(0));
|
|
|
|
buffer[6] = 0xf0;
|
|
buffer[7] = 0xff;
|
|
assert.strictEqual(3.04814e-319, buffer.readDoubleBE(0));
|
|
assert.strictEqual(-Infinity, buffer.readDoubleLE(0));
|
|
}
|
|
|
|
|
|
test(Buffer);
|