mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
211 lines
4.6 KiB
211 lines
4.6 KiB
// 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.
|
|
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
// first grab js api's
|
|
var smalloc = require('smalloc');
|
|
var alloc = smalloc.alloc;
|
|
var dispose = smalloc.dispose;
|
|
var copyOnto = smalloc.copyOnto;
|
|
var kMaxLength = smalloc.kMaxLength;
|
|
// sliceOnto is volatile and cannot be exposed to users.
|
|
var sliceOnto = process.binding('smalloc').sliceOnto;
|
|
|
|
|
|
// verify allocation
|
|
|
|
var b = alloc(5, {});
|
|
assert.ok(typeof b === 'object');
|
|
for (var i = 0; i < 5; i++)
|
|
assert.ok(b[i] !== undefined);
|
|
|
|
|
|
var b = {};
|
|
var c = alloc(5, b);
|
|
assert.equal(b, c);
|
|
assert.deepEqual(b, c);
|
|
|
|
|
|
var b = alloc(5, {});
|
|
var c = {};
|
|
c._data = sliceOnto(b, c, 0, 5);
|
|
assert.ok(typeof c._data === 'object');
|
|
assert.equal(b, c._data);
|
|
assert.deepEqual(b, c._data);
|
|
|
|
|
|
// verify writes
|
|
|
|
var b = alloc(5, {});
|
|
for (var i = 0; i < 5; i++)
|
|
b[i] = i;
|
|
for (var i = 0; i < 5; i++)
|
|
assert.equal(b[i], i);
|
|
|
|
|
|
var b = alloc(6, {});
|
|
var c0 = {};
|
|
var c1 = {};
|
|
c0._data = sliceOnto(b, c0, 0, 3);
|
|
c1._data = sliceOnto(b, c1, 3, 6);
|
|
for (var i = 0; i < 3; i++) {
|
|
c0[i] = i;
|
|
c1[i] = i + 3;
|
|
}
|
|
for (var i = 0; i < 3; i++)
|
|
assert.equal(b[i], i);
|
|
for (var i = 3; i < 6; i++)
|
|
assert.equal(b[i], i);
|
|
|
|
|
|
var a = alloc(6, {});
|
|
var b = alloc(6, {});
|
|
var c = alloc(12, {});
|
|
for (var i = 0; i < 6; i++) {
|
|
a[i] = i;
|
|
b[i] = i * 2;
|
|
}
|
|
copyOnto(a, 0, c, 0, 6);
|
|
copyOnto(b, 0, c, 6, 6);
|
|
for (var i = 0; i < 6; i++) {
|
|
assert.equal(c[i], i);
|
|
assert.equal(c[i + 6], i * 2);
|
|
}
|
|
|
|
|
|
// verify alloc throws properly
|
|
|
|
// arrays are not supported
|
|
assert.throws(function() {
|
|
alloc(0, []);
|
|
}, TypeError);
|
|
|
|
|
|
// no allocations larger than kMaxLength
|
|
assert.throws(function() {
|
|
alloc(kMaxLength + 1);
|
|
}, RangeError);
|
|
|
|
|
|
// properly convert to uint32 before checking overflow
|
|
assert.throws(function() {
|
|
alloc(-1);
|
|
}, RangeError);
|
|
|
|
|
|
// no allocating on what's been allocated
|
|
assert.throws(function() {
|
|
alloc(1, alloc(1));
|
|
}, TypeError);
|
|
|
|
|
|
// throw for values passed that are not objects
|
|
assert.throws(function() {
|
|
alloc(1, 'a');
|
|
}, TypeError);
|
|
assert.throws(function() {
|
|
alloc(1, 1);
|
|
}, TypeError);
|
|
assert.throws(function() {
|
|
alloc(1, true);
|
|
}, TypeError);
|
|
assert.throws(function() {
|
|
alloc(1, null);
|
|
}, TypeError);
|
|
|
|
|
|
// should not throw allocating to most objects
|
|
alloc(1, function() { });
|
|
alloc(1, /abc/);
|
|
alloc(1, new Date());
|
|
|
|
|
|
// very copyOnto throws properly
|
|
|
|
// source must have data
|
|
assert.throws(function() {
|
|
copyOnto({}, 0, alloc(1), 0, 0);
|
|
}, Error);
|
|
|
|
|
|
// dest must have data
|
|
assert.throws(function() {
|
|
copyOnto(alloc(1), 0, {}, 0, 0);
|
|
}, Error);
|
|
|
|
|
|
// copyLength <= sourceLength
|
|
assert.throws(function() {
|
|
copyOnto(alloc(1), 0, alloc(3), 0, 2);
|
|
}, RangeError);
|
|
|
|
|
|
// copyLength <= destLength
|
|
assert.throws(function() {
|
|
copyOnto(alloc(3), 0, alloc(1), 0, 2);
|
|
}, RangeError);
|
|
|
|
|
|
// sourceStart <= sourceLength
|
|
assert.throws(function() {
|
|
copyOnto(alloc(1), 3, alloc(1), 0, 1);
|
|
}, RangeError);
|
|
|
|
|
|
// destStart <= destLength
|
|
assert.throws(function() {
|
|
copyOnto(alloc(1), 0, alloc(1), 3, 1);
|
|
}, RangeError);
|
|
|
|
|
|
// sourceStart + copyLength <= sourceLength
|
|
assert.throws(function() {
|
|
copyOnto(alloc(3), 1, alloc(3), 0, 3);
|
|
}, RangeError);
|
|
|
|
|
|
// destStart + copyLength <= destLength
|
|
assert.throws(function() {
|
|
copyOnto(alloc(3), 0, alloc(3), 1, 3);
|
|
}, RangeError);
|
|
|
|
|
|
// test disposal
|
|
var b = alloc(5, {});
|
|
dispose(b);
|
|
for (var i = 0; i < 5; i++)
|
|
assert.equal(b[i], undefined);
|
|
|
|
|
|
// verify dispose throws properly
|
|
|
|
// only allow object to be passed to dispose
|
|
assert.throws(function() {
|
|
alloc.dispose(null);
|
|
});
|
|
|
|
|
|
// can't dispose a Buffer
|
|
assert.throws(function() {
|
|
alloc.dispose(new Buffer());
|
|
});
|
|
|