123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- /*
- * This file is part of the storage node for the Joystream project.
- * Copyright (C) 2019 Joystream Contributors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- 'use strict';
- const mocha = require('mocha');
- const expect = require('chai').expect;
- const mock_http = require('node-mocks-http');
- const stream_buffers = require('stream-buffers');
- const ranges = require('@joystream/storage-utils/ranges');
- describe('util/ranges', function()
- {
- describe('parse()', function()
- {
- it('should parse a full range', function()
- {
- // Range with unit
- var range = ranges.parse('bytes=0-100');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('0-100');
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(100);
- // Range without unit
- var range = ranges.parse('0-100');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('0-100');
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(100);
- // Range with custom unit
- //
- var range = ranges.parse('foo=0-100');
- expect(range.unit).to.equal('foo');
- expect(range.range_str).to.equal('0-100');
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(100);
- });
- it('should error out on malformed strings', function()
- {
- expect(() => ranges.parse('foo')).to.throw();
- expect(() => ranges.parse('foo=bar')).to.throw();
- expect(() => ranges.parse('foo=100')).to.throw();
- expect(() => ranges.parse('foo=100-0')).to.throw();
- });
- it('should parse a range without end', function()
- {
- var range = ranges.parse('0-');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('0-');
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.be.undefined;
- });
- it('should parse a range without start', function()
- {
- var range = ranges.parse('-100');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('-100');
- expect(range.ranges[0][0]).to.be.undefined;
- expect(range.ranges[0][1]).to.equal(100);
- });
- it('should parse multiple ranges', function()
- {
- var range = ranges.parse('0-10,30-40,60-80');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('0-10,30-40,60-80');
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(10);
- expect(range.ranges[1][0]).to.equal(30);
- expect(range.ranges[1][1]).to.equal(40);
- expect(range.ranges[2][0]).to.equal(60);
- expect(range.ranges[2][1]).to.equal(80);
- });
- it('should merge overlapping ranges', function()
- {
- // Two overlapping ranges
- var range = ranges.parse('0-20,10-30');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('0-20,10-30');
- expect(range.ranges).to.have.lengthOf(1);
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(30);
- // Three overlapping ranges
- var range = ranges.parse('0-15,10-25,20-30');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('0-15,10-25,20-30');
- expect(range.ranges).to.have.lengthOf(1);
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(30);
- // Three overlapping ranges, reverse order
- var range = ranges.parse('20-30,10-25,0-15');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('20-30,10-25,0-15');
- expect(range.ranges).to.have.lengthOf(1);
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(30);
- // Adjacent ranges
- var range = ranges.parse('0-10,11-20');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('0-10,11-20');
- expect(range.ranges).to.have.lengthOf(1);
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(20);
- });
- it('should sort ranges', function()
- {
- var range = ranges.parse('10-30,0-5');
- expect(range.unit).to.equal('bytes');
- expect(range.range_str).to.equal('10-30,0-5');
- expect(range.ranges).to.have.lengthOf(2);
- expect(range.ranges[0][0]).to.equal(0);
- expect(range.ranges[0][1]).to.equal(5);
- expect(range.ranges[1][0]).to.equal(10);
- expect(range.ranges[1][1]).to.equal(30);
- });
- });
- describe('send()', function()
- {
- it('should send full files on request', function(done)
- {
- var res = mock_http.createResponse({});
- var in_stream = new stream_buffers.ReadableStreamBuffer({});
- // End-of-stream callback
- var opts = {
- name: 'test.file',
- type: 'application/test',
- };
- ranges.send(res, in_stream, opts, function(err) {
- expect(err).to.not.exist;
- // HTTP handling
- expect(res.statusCode).to.equal(200);
- expect(res.getHeader('content-type')).to.equal('application/test');
- expect(res.getHeader('content-disposition')).to.equal('inline');
- // Data/stream handling
- expect(res._isEndCalled()).to.be.true;
- expect(res._getBuffer().toString()).to.equal('Hello, world!');
- // Notify mocha that we're done.
- done();
- });
- // Simulate file stream
- in_stream.emit('open');
- in_stream.put('Hello, world!');
- in_stream.stop();
- });
- it('should send a range spanning the entire file on request', function(done)
- {
- var res = mock_http.createResponse({});
- var in_stream = new stream_buffers.ReadableStreamBuffer({});
- // End-of-stream callback
- var opts = {
- name: 'test.file',
- type: 'application/test',
- ranges: {
- ranges: [[0, 12]],
- }
- };
- ranges.send(res, in_stream, opts, function(err) {
- expect(err).to.not.exist;
- // HTTP handling
- expect(res.statusCode).to.equal(206);
- expect(res.getHeader('content-type')).to.equal('application/test');
- expect(res.getHeader('content-disposition')).to.equal('inline');
- expect(res.getHeader('content-range')).to.equal('bytes 0-12/*');
- expect(res.getHeader('content-length')).to.equal('13');
- // Data/stream handling
- expect(res._isEndCalled()).to.be.true;
- expect(res._getBuffer().toString()).to.equal('Hello, world!');
- // Notify mocha that we're done.
- done();
- });
- // Simulate file stream
- in_stream.emit('open');
- in_stream.put('Hello, world!');
- in_stream.stop();
- });
- it('should send a small range on request', function(done)
- {
- var res = mock_http.createResponse({});
- var in_stream = new stream_buffers.ReadableStreamBuffer({});
- // End-of-stream callback
- var opts = {
- name: 'test.file',
- type: 'application/test',
- ranges: {
- ranges: [[1, 11]], // Cut off first and last letter
- }
- };
- ranges.send(res, in_stream, opts, function(err) {
- expect(err).to.not.exist;
- // HTTP handling
- expect(res.statusCode).to.equal(206);
- expect(res.getHeader('content-type')).to.equal('application/test');
- expect(res.getHeader('content-disposition')).to.equal('inline');
- expect(res.getHeader('content-range')).to.equal('bytes 1-11/*');
- expect(res.getHeader('content-length')).to.equal('11');
- // Data/stream handling
- expect(res._isEndCalled()).to.be.true;
- expect(res._getBuffer().toString()).to.equal('ello, world');
- // Notify mocha that we're done.
- done();
- });
- // Simulate file stream
- in_stream.emit('open');
- in_stream.put('Hello, world!');
- in_stream.stop();
- });
- it('should send ranges crossing buffer boundaries', function(done)
- {
- var res = mock_http.createResponse({});
- var in_stream = new stream_buffers.ReadableStreamBuffer({
- chunkSize: 3, // Setting a chunk size smaller than the range should
- // not impact the test.
- });
- // End-of-stream callback
- var opts = {
- name: 'test.file',
- type: 'application/test',
- ranges: {
- ranges: [[1, 11]], // Cut off first and last letter
- }
- };
- ranges.send(res, in_stream, opts, function(err) {
- expect(err).to.not.exist;
- // HTTP handling
- expect(res.statusCode).to.equal(206);
- expect(res.getHeader('content-type')).to.equal('application/test');
- expect(res.getHeader('content-disposition')).to.equal('inline');
- expect(res.getHeader('content-range')).to.equal('bytes 1-11/*');
- expect(res.getHeader('content-length')).to.equal('11');
- // Data/stream handling
- expect(res._isEndCalled()).to.be.true;
- expect(res._getBuffer().toString()).to.equal('ello, world');
- // Notify mocha that we're done.
- done();
- });
- // Simulate file stream
- in_stream.emit('open');
- in_stream.put('Hello, world!');
- in_stream.stop();
- });
- it('should send multiple ranges', function(done)
- {
- var res = mock_http.createResponse({});
- var in_stream = new stream_buffers.ReadableStreamBuffer({});
- // End-of-stream callback
- var opts = {
- name: 'test.file',
- type: 'application/test',
- ranges: {
- ranges: [[1, 3], [5, 7]], // Slice two ranges out
- }
- };
- ranges.send(res, in_stream, opts, function(err) {
- expect(err).to.not.exist;
- // HTTP handling
- expect(res.statusCode).to.equal(206);
- expect(res.getHeader('content-type')).to.satisfy((str) => str.startsWith('multipart/byteranges'));
- expect(res.getHeader('content-disposition')).to.equal('inline');
- // Data/stream handling
- expect(res._isEndCalled()).to.be.true;
- // The buffer should contain both ranges, but with all the That would be
- // "ell" and ", w".
- // It's pretty elaborate having to parse the entire multipart response
- // body, so we'll restrict ourselves to finding lines within it.
- var body = res._getBuffer().toString();
- expect(body).to.contain('\r\nContent-Range: bytes 1-3/*\r\n');
- expect(body).to.contain('\r\nell\r\n');
- expect(body).to.contain('\r\nContent-Range: bytes 5-7/*\r\n');
- expect(body).to.contain('\r\n, w');
- // Notify mocha that we're done.
- done();
- });
- // Simulate file stream
- in_stream.emit('open');
- in_stream.put('Hello, world!');
- in_stream.stop();
- });
- it('should deal with ranges without end', function(done)
- {
- var res = mock_http.createResponse({});
- var in_stream = new stream_buffers.ReadableStreamBuffer({});
- // End-of-stream callback
- var opts = {
- name: 'test.file',
- type: 'application/test',
- ranges: {
- ranges: [[5, undefined]], // Skip the first part, but read until end
- }
- };
- ranges.send(res, in_stream, opts, function(err) {
- expect(err).to.not.exist;
- // HTTP handling
- expect(res.statusCode).to.equal(206);
- expect(res.getHeader('content-type')).to.equal('application/test');
- expect(res.getHeader('content-disposition')).to.equal('inline');
- expect(res.getHeader('content-range')).to.equal('bytes 5-/*');
- // Data/stream handling
- expect(res._isEndCalled()).to.be.true;
- expect(res._getBuffer().toString()).to.equal(', world!');
- // Notify mocha that we're done.
- done();
- });
- // Simulate file stream
- in_stream.emit('open');
- in_stream.put('Hello, world!');
- in_stream.stop();
- });
- it('should ignore ranges without start', function(done)
- {
- var res = mock_http.createResponse({});
- var in_stream = new stream_buffers.ReadableStreamBuffer({});
- // End-of-stream callback
- var opts = {
- name: 'test.file',
- type: 'application/test',
- ranges: {
- ranges: [[undefined, 5]], // Only last five
- }
- };
- ranges.send(res, in_stream, opts, function(err) {
- expect(err).to.not.exist;
- // HTTP handling
- expect(res.statusCode).to.equal(200);
- expect(res.getHeader('content-type')).to.equal('application/test');
- expect(res.getHeader('content-disposition')).to.equal('inline');
- // Data/stream handling
- expect(res._isEndCalled()).to.be.true;
- expect(res._getBuffer().toString()).to.equal('Hello, world!');
- // Notify mocha that we're done.
- done();
- });
- // Simulate file stream
- in_stream.emit('open');
- in_stream.put('Hello, world!');
- in_stream.stop();
- });
- });
- });
|