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.
27 lines
695 B
27 lines
695 B
// Flags: --expose_internals
|
|
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const BufferList = require('internal/streams/BufferList');
|
|
|
|
// Test empty buffer list.
|
|
const emptyList = new BufferList();
|
|
|
|
emptyList.shift();
|
|
assert.deepStrictEqual(emptyList, new BufferList());
|
|
|
|
assert.strictEqual(emptyList.join(','), '');
|
|
|
|
assert.deepStrictEqual(emptyList.concat(0), Buffer.alloc(0));
|
|
|
|
// Test buffer list with one element.
|
|
const list = new BufferList();
|
|
list.push('foo');
|
|
|
|
assert.strictEqual(list.concat(1), 'foo');
|
|
|
|
assert.strictEqual(list.join(','), 'foo');
|
|
|
|
const shifted = list.shift();
|
|
assert.strictEqual(shifted, 'foo');
|
|
assert.deepStrictEqual(list, new BufferList());
|
|
|