123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- import QUnit from 'qunit';
- import {
- segmentsFromBase,
- addSidxSegmentsToPlaylist
- } from '../../src/segment/segmentBase';
- import errors from '../../src/errors';
- import window from 'global/window';
- QUnit.module('segmentBase - segmentsFromBase');
- QUnit.test('sets segment to baseUrl', function(assert) {
- const inputAttributes = {
- baseUrl: 'http://www.example.com/i.fmp4',
- initialization: { sourceURL: 'http://www.example.com/init.fmp4' },
- periodStart: 0,
- type: 'static'
- };
- assert.deepEqual(segmentsFromBase(inputAttributes), [{
- map: {
- resolvedUri: 'http://www.example.com/init.fmp4',
- uri: 'http://www.example.com/init.fmp4'
- },
- resolvedUri: 'http://www.example.com/i.fmp4',
- uri: 'http://www.example.com/i.fmp4',
- presentationTime: 0,
- number: 0
- }]);
- });
- QUnit.test('sets duration based on sourceDuration', function(assert) {
- const inputAttributes = {
- baseUrl: 'http://www.example.com/i.fmp4',
- initialization: { sourceURL: 'http://www.example.com/init.fmp4' },
- sourceDuration: 10,
- periodStart: 0,
- type: 'static'
- };
- assert.deepEqual(segmentsFromBase(inputAttributes), [{
- duration: 10,
- timeline: 0,
- map: {
- resolvedUri: 'http://www.example.com/init.fmp4',
- uri: 'http://www.example.com/init.fmp4'
- },
- resolvedUri: 'http://www.example.com/i.fmp4',
- uri: 'http://www.example.com/i.fmp4',
- presentationTime: 0,
- number: 0
- }]);
- });
- // sourceDuration comes from mediaPresentationDuration. The DASH spec defines the type of
- // mediaPresentationDuration as xs:duration, which follows ISO 8601. It does not need to
- // be adjusted based on timescale.
- //
- // References:
- // https://www.w3.org/TR/xmlschema-2/#duration
- // https://en.wikipedia.org/wiki/ISO_8601
- QUnit.test('sets duration based on sourceDuration and not @timescale', function(assert) {
- const inputAttributes = {
- baseUrl: 'http://www.example.com/i.fmp4',
- initialization: { sourceURL: 'http://www.example.com/init.fmp4' },
- sourceDuration: 10,
- timescale: 2,
- periodStart: 0,
- type: 'static'
- };
- assert.deepEqual(segmentsFromBase(inputAttributes), [{
- duration: 10,
- timeline: 0,
- map: {
- resolvedUri: 'http://www.example.com/init.fmp4',
- uri: 'http://www.example.com/init.fmp4'
- },
- resolvedUri: 'http://www.example.com/i.fmp4',
- uri: 'http://www.example.com/i.fmp4',
- presentationTime: 0,
- number: 0
- }]);
- });
- QUnit.test('sets duration based on @duration', function(assert) {
- const inputAttributes = {
- duration: 10,
- sourceDuration: 20,
- baseUrl: 'http://www.example.com/i.fmp4',
- initialization: { sourceURL: 'http://www.example.com/init.fmp4' },
- periodStart: 0,
- type: 'static'
- };
- assert.deepEqual(segmentsFromBase(inputAttributes), [{
- duration: 10,
- timeline: 0,
- map: {
- resolvedUri: 'http://www.example.com/init.fmp4',
- uri: 'http://www.example.com/init.fmp4'
- },
- resolvedUri: 'http://www.example.com/i.fmp4',
- uri: 'http://www.example.com/i.fmp4',
- presentationTime: 0,
- number: 0
- }]);
- });
- QUnit.test('sets duration based on @duration and @timescale', function(assert) {
- const inputAttributes = {
- duration: 10,
- sourceDuration: 20,
- timescale: 5,
- baseUrl: 'http://www.example.com/i.fmp4',
- initialization: { sourceURL: 'http://www.example.com/init.fmp4' },
- periodStart: 0,
- type: 'static'
- };
- assert.deepEqual(segmentsFromBase(inputAttributes), [{
- duration: 2,
- timeline: 0,
- map: {
- resolvedUri: 'http://www.example.com/init.fmp4',
- uri: 'http://www.example.com/init.fmp4'
- },
- resolvedUri: 'http://www.example.com/i.fmp4',
- uri: 'http://www.example.com/i.fmp4',
- presentationTime: 0,
- number: 0
- }]);
- });
- QUnit.test('translates ranges in <Initialization> node', function(assert) {
- const inputAttributes = {
- duration: 10,
- sourceDuration: 20,
- timescale: 5,
- baseUrl: 'http://www.example.com/i.fmp4',
- initialization: {
- sourceURL: 'http://www.example.com/init.fmp4',
- range: '121-125'
- },
- periodStart: 0,
- type: 'static'
- };
- assert.deepEqual(segmentsFromBase(inputAttributes), [{
- duration: 2,
- timeline: 0,
- map: {
- resolvedUri: 'http://www.example.com/init.fmp4',
- uri: 'http://www.example.com/init.fmp4',
- byterange: {
- length: 5,
- offset: 121
- }
- },
- resolvedUri: 'http://www.example.com/i.fmp4',
- uri: 'http://www.example.com/i.fmp4',
- presentationTime: 0,
- number: 0
- }]);
- });
- QUnit.test('errors if no baseUrl exists', function(assert) {
- assert.throws(() => segmentsFromBase({}), new Error(errors.NO_BASE_URL));
- });
- QUnit.module('segmentBase - addSidxSegmentsToPlaylist');
- QUnit.test('generates playlist from sidx references', function(assert) {
- const baseUrl = 'http://www.example.com/i.fmp4';
- const playlist = {
- sidx: {
- map: {
- byterange: {
- offset: 0,
- length: 10
- }
- },
- duration: 10,
- byterange: {
- offset: 9,
- length: 11
- },
- timeline: 0
- },
- segments: [],
- endList: true
- };
- const sidx = {
- timescale: 1,
- firstOffset: 0,
- references: [{
- referenceType: 0,
- referencedSize: 5,
- subsegmentDuration: 2
- }]
- };
- assert.deepEqual(addSidxSegmentsToPlaylist(playlist, sidx, baseUrl).segments, [{
- map: {
- byterange: {
- offset: 0,
- length: 10
- }
- },
- uri: 'http://www.example.com/i.fmp4',
- resolvedUri: 'http://www.example.com/i.fmp4',
- byterange: {
- offset: 20,
- length: 5
- },
- duration: 2,
- timeline: 0,
- presentationTime: 0,
- number: 0
- }]);
- });
- if (window.BigInt) {
- const BigInt = window.BigInt;
- QUnit.test('generates playlist from sidx references with BigInt', function(assert) {
- const baseUrl = 'http://www.example.com/i.fmp4';
- const playlist = {
- sidx: {
- map: {
- byterange: {
- offset: 0,
- length: 10
- }
- },
- timeline: 0,
- duration: 10,
- byterange: {
- offset: 9,
- length: 11
- }
- },
- segments: []
- };
- const offset = BigInt(Number.MAX_SAFE_INTEGER) + BigInt(10);
- const sidx = {
- timescale: 1,
- firstOffset: offset,
- references: [{
- referenceType: 0,
- referencedSize: 5,
- subsegmentDuration: 2
- }]
- };
- const segments = addSidxSegmentsToPlaylist(playlist, sidx, baseUrl).segments;
- assert.equal(typeof segments[0].byterange.offset, 'bigint', 'bigint offset');
- segments[0].byterange.offset = segments[0].byterange.offset.toString();
- assert.deepEqual(segments, [{
- map: {
- byterange: {
- offset: 0,
- length: 10
- }
- },
- uri: 'http://www.example.com/i.fmp4',
- resolvedUri: 'http://www.example.com/i.fmp4',
- byterange: {
- // sidx byterange offset + length = 20
- offset: (window.BigInt(20) + offset).toString(),
- length: 5
- },
- number: 0,
- presentationTime: 0
- }]);
- });
- }
|