2020-03-30 23:09:36 +00:00
|
|
|
import { expect } from 'chai';
|
|
|
|
|
2020-03-31 13:29:47 +00:00
|
|
|
import { concat, encode } from '../../src/Buffer';
|
2020-03-30 23:09:36 +00:00
|
|
|
|
2020-06-30 13:14:30 +00:00
|
|
|
describe('buffer utils', async () => {
|
|
|
|
describe('concat', async () => {
|
|
|
|
it('should append chunk buffers', async () => {
|
2020-03-30 23:09:36 +00:00
|
|
|
expect(concat([
|
|
|
|
Buffer.from('hello'),
|
|
|
|
Buffer.from('world'),
|
|
|
|
])).to.deep.equal(Buffer.from('helloworld'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-06-30 13:14:30 +00:00
|
|
|
describe('encode', async () => {
|
|
|
|
it('should encode chunk buffers', async () => {
|
2020-03-30 23:09:36 +00:00
|
|
|
expect(encode([
|
|
|
|
Buffer.from('hello world'),
|
|
|
|
], 'utf-8')).to.equal('hello world');
|
|
|
|
});
|
|
|
|
|
2020-06-30 13:14:30 +00:00
|
|
|
it('should encode no buffers', async () => {
|
2020-03-30 23:09:36 +00:00
|
|
|
expect(encode([], 'utf-8')).to.equal('');
|
|
|
|
});
|
|
|
|
|
2020-06-30 13:14:30 +00:00
|
|
|
it('should encode empty buffers', async () => {
|
2020-03-30 23:09:36 +00:00
|
|
|
expect(encode([
|
|
|
|
new Buffer(0),
|
|
|
|
], 'utf-8')).to.equal('');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|