forked from videojs/http-streaming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsegment-loader.test.js
More file actions
5064 lines (4311 loc) · 168 KB
/
segment-loader.test.js
File metadata and controls
5064 lines (4311 loc) · 168 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import QUnit from 'qunit';
import {
default as SegmentLoader,
illegalMediaSwitch,
safeBackBufferTrimTime,
timestampOffsetForSegment,
shouldWaitForTimelineChange,
segmentTooLong,
mediaDuration,
getTroublesomeSegmentDurationMessage,
getSyncSegmentCandidate,
segmentInfoString
} from '../src/segment-loader';
import mp4probe from 'mux.js/lib/mp4/probe';
import {
playlistWithDuration,
standardXHRResponse,
MockTextTrack
} from './test-helpers.js';
import {
LoaderCommonHooks,
LoaderCommonSettings,
LoaderCommonFactory
} from './loader-common.js';
import {
muxed as muxedSegment,
oneSecond as oneSecondSegment,
audio as audioSegment,
video as videoSegment,
videoDiffPtsDts as videoDiffPtsDtsSegment,
videoOneSecond as videoOneSecondSegment,
videoOneSecond1 as videoOneSecond1Segment,
videoOneSecond2 as videoOneSecond2Segment,
videoOneSecond3 as videoOneSecond3Segment,
videoLargeOffset as videoLargeOffsetSegment,
videoLargeOffset2 as videoLargeOffset2Segment,
videoMaxOffset as videoMaxOffsetSegment,
videoMinOffset as videoMinOffsetSegment,
audioLargeOffset as audioLargeOffsetSegment,
audioLargeOffset2 as audioLargeOffset2Segment,
audioMaxOffset as audioMaxOffsetSegment,
audioMinOffset as audioMinOffsetSegment,
mp4Video as mp4VideoSegment,
mp4VideoInit as mp4VideoInitSegment,
mp4Audio as mp4AudioSegment,
mp4AudioInit as mp4AudioInitSegment,
zeroLength as zeroLengthSegment,
encrypted as encryptedSegment,
encryptionKey
} from 'create-test-data!segments';
import sinon from 'sinon';
import { timeRangesEqual } from './custom-assertions.js';
import { QUOTA_EXCEEDED_ERR } from '../src/error-codes';
import window from 'global/window';
import document from 'global/document';
import {merge, createTimeRanges} from '../src/util/vjs-compat';
const newEvent = function(name) {
let event;
if (typeof window.Event === 'function') {
event = new window.Event(name);
} else {
event = document.createEvent('Event');
event.initEvent(name, true, true);
}
return event;
};
/* TODO
// noop addSegmentMetadataCue_ since most test segments dont have real timing information
// save the original function to a variable to patch it back in for the metadata cue
// specific tests
const ogAddSegmentMetadataCue_ = SegmentLoader.prototype.addSegmentMetadataCue_;
SegmentLoader.prototype.addSegmentMetadataCue_ = function() {};
*/
QUnit.module('SegmentLoader Isolated Functions');
QUnit.test('getSyncSegmentCandidate works as expected', function(assert) {
let segments = [];
assert.equal(getSyncSegmentCandidate(-1, segments, 0), 0, '-1 timeline, no segments, 0 target');
assert.equal(getSyncSegmentCandidate(0, segments, 0), 0, '0 timeline, no segments, 0 target');
segments = [
{timeline: 0, duration: 4},
{timeline: 0, duration: 4},
{timeline: 0, duration: 4},
{timeline: 0, duration: 4}
];
assert.equal(getSyncSegmentCandidate(-1, segments, 0), 0, '-1 timeline, 4x 0 segments, 0 target');
assert.equal(getSyncSegmentCandidate(0, segments, 1), 0, '0 timeline, 4x 0 segments, 1 target');
assert.equal(getSyncSegmentCandidate(0, segments, 4), 1, '0 timeline, 4x 0 segments, 4 target');
assert.equal(getSyncSegmentCandidate(-1, segments, 8), 0, '-1 timeline, 4x 0 segments, 8 target');
assert.equal(getSyncSegmentCandidate(0, segments, 8), 2, '0 timeline, 4x 0 segments, 8 target');
assert.equal(getSyncSegmentCandidate(0, segments, 20), 3, '0 timeline, 4x 0 segments, 20 target');
segments = [
{timeline: 1, duration: 4},
{timeline: 0, duration: 4},
{timeline: 1, duration: 4},
{timeline: 0, duration: 4},
{timeline: 2, duration: 4},
{timeline: 1, duration: 4},
{timeline: 0, duration: 4}
];
assert.equal(getSyncSegmentCandidate(1, segments, 8), 5, '1 timeline, mixed timeline segments, 8 target');
assert.equal(getSyncSegmentCandidate(0, segments, 8), 6, '0 timeline, mixed timeline segments, 8 target');
assert.equal(getSyncSegmentCandidate(2, segments, 8), 4, '2 timeline, mixed timeline segments, 8 target');
});
QUnit.test('illegalMediaSwitch detects illegal media switches', function(assert) {
let startingMedia = { hasAudio: true, hasVideo: true };
let newSegmentMedia = { hasAudio: true, hasVideo: true };
assert.notOk(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'no error when muxed to muxed'
);
startingMedia = { hasAudio: true, hasVideo: true };
newSegmentMedia = { hasAudio: false, hasVideo: false };
assert.notOk(
illegalMediaSwitch('audio', startingMedia, newSegmentMedia),
'no error when not main loader type'
);
startingMedia = { hasAudio: true, hasVideo: false };
newSegmentMedia = { hasAudio: true, hasVideo: false };
assert.notOk(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'no error when audio only to audio only'
);
startingMedia = { hasAudio: false, hasVideo: true };
newSegmentMedia = { hasAudio: false, hasVideo: true };
assert.notOk(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'no error when video only to video only'
);
startingMedia = { hasAudio: false, hasVideo: true };
newSegmentMedia = { hasAudio: true, hasVideo: true };
assert.notOk(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'no error when video only to muxed'
);
startingMedia = { hasAudio: true, hasVideo: true };
newSegmentMedia = { hasAudio: false, hasVideo: false };
assert.equal(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'Neither audio nor video found in segment.',
'error when neither audio nor video'
);
startingMedia = { hasAudio: true, hasVideo: false };
newSegmentMedia = { hasAudio: false, hasVideo: false };
assert.equal(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'Neither audio nor video found in segment.',
'error when audio only to neither audio nor video'
);
startingMedia = { hasAudio: false, hasVideo: true };
newSegmentMedia = { hasAudio: false, hasVideo: false };
assert.equal(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'Neither audio nor video found in segment.',
'error when video only to neither audio nor video'
);
startingMedia = { hasAudio: true, hasVideo: false };
newSegmentMedia = { hasAudio: true, hasVideo: true };
assert.equal(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'Video found in segment when we expected only audio.' +
' We can\'t switch to a stream with video from an audio only stream.' +
' To get rid of this message, please add codec information to the' +
' manifest.',
'error when audio only to muxed'
);
startingMedia = { hasAudio: true, hasVideo: true };
newSegmentMedia = { hasAudio: true, hasVideo: false };
assert.equal(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'Only audio found in segment when we expected video.' +
' We can\'t switch to audio only from a stream that had video.' +
' To get rid of this message, please add codec information to the' +
' manifest.',
'error when muxed to audio only'
);
startingMedia = { hasAudio: true, hasVideo: false };
newSegmentMedia = { hasAudio: false, hasVideo: true };
assert.equal(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'Video found in segment when we expected only audio.' +
' We can\'t switch to a stream with video from an audio only stream.' +
' To get rid of this message, please add codec information to the' +
' manifest.',
'error when audio only to video only'
);
startingMedia = { hasAudio: false, hasVideo: true };
newSegmentMedia = { hasAudio: true, hasVideo: false };
assert.equal(
illegalMediaSwitch('main', startingMedia, newSegmentMedia),
'Only audio found in segment when we expected video.' +
' We can\'t switch to audio only from a stream that had video.' +
' To get rid of this message, please add codec information to the' +
' manifest.',
'error when video only to audio only'
);
});
QUnit.module('timestampOffsetForSegment');
QUnit.test('returns startOfSegment when timeline changes and the buffer is empty', function(assert) {
assert.equal(
timestampOffsetForSegment({
segmentTimeline: 1,
currentTimeline: 0,
startOfSegment: 3,
buffered: createTimeRanges()
}),
3,
'returned startOfSegment'
);
});
QUnit.test('returns buffered end when timeline changes and there exists buffered content', function(assert) {
assert.equal(
timestampOffsetForSegment({
segmentTimeline: 1,
currentTimeline: 0,
startOfSegment: 3,
buffered: createTimeRanges([[1, 5], [7, 8]])
}),
8,
'returned buffered end'
);
});
QUnit.test('returns null when timeline does not change', function(assert) {
assert.ok(
timestampOffsetForSegment({
segmentTimeline: 0,
currentTimeline: 0,
startOfSegment: 3,
buffered: createTimeRanges([[1, 5], [7, 8]])
}) === null,
'returned null'
);
assert.ok(
timestampOffsetForSegment({
segmentTimeline: 1,
currentTimeline: 1,
startOfSegment: 3,
buffered: createTimeRanges([[1, 5], [7, 8]])
}) === null,
'returned null'
);
});
QUnit.test('returns value when overrideCheck is true', function(assert) {
assert.equal(
timestampOffsetForSegment({
segmentTimeline: 0,
currentTimeline: 0,
startOfSegment: 3,
buffered: createTimeRanges([[1, 5], [7, 8]]),
overrideCheck: true
}),
8,
'returned buffered end'
);
});
QUnit.test('uses startOfSegment when timeline is before current', function(assert) {
assert.equal(
timestampOffsetForSegment({
segmentTimeline: 0,
currentTimeline: 1,
startOfSegment: 3,
buffered: createTimeRanges([[1, 5], [7, 8]]),
overrideCheck: true
}),
3,
'returned startOfSegment'
);
});
QUnit.module('shouldWaitForTimelineChange');
QUnit.test('should not wait if timelines are the same', function(assert) {
assert.notOk(
shouldWaitForTimelineChange({ currentTimeline: 1, segmentTimeline: 1 }),
'should not wait'
);
});
QUnit.test('audio loader waits if no main timeline change', function(assert) {
assert.ok(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'audio',
timelineChangeController: {
lastTimelineChange({ type }) {
return void 0;
}
}
}),
'should wait'
);
});
QUnit.test('audio loader waits if last main timeline change not on audio segment\'s timeline', function(assert) {
assert.ok(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'audio',
timelineChangeController: {
lastTimelineChange({ type }) {
if (type === 'main') {
return { from: 0, to: 1 };
}
}
}
}),
'should wait'
);
});
QUnit.test('audio loader does not wait if last main timeline matches audio segment\'s timeline', function(assert) {
assert.notOk(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'audio',
timelineChangeController: {
lastTimelineChange({ type }) {
if (type === 'main') {
return { from: 1, to: 2 };
}
}
}
}),
'should not wait'
);
});
QUnit.test('audio loader does not wait if last main timeline matches audio segment\'s timeline', function(assert) {
assert.notOk(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'audio',
timelineChangeController: {
lastTimelineChange({ type }) {
if (type === 'main') {
return { from: 1, to: 2 };
}
}
}
}),
'should not wait'
);
});
QUnit.test('main loader does not wait if audio enabled', function(assert) {
assert.notOk(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'main'
}),
'should not wait'
);
});
QUnit.test('main loader does not wait if no audio timeline change', function(assert) {
assert.notOk(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'main',
timelineChangeController: {
lastTimelineChange({ type }) {
return void 0;
}
}
}),
'should not wait'
);
});
QUnit.test('main loader waits if no pending audio timeline change', function(assert) {
assert.notOk(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'main',
timelineChangeController: {
pendingTimelineChange({ type }) {
return void 0;
},
lastTimelineChange({ type }) {
return void 0;
}
}
}),
'should wait'
);
});
QUnit.test('main loader waits if pending audio timeline change doesn\'t match segment timeline', function(assert) {
assert.notOk(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'main',
timelineChangeController: {
pendingTimelineChange({ type }) {
if (type === 'audio') {
return { from: 0, to: 1 };
}
},
lastTimelineChange({ type }) {
return void 0;
}
}
}),
'should wait'
);
});
QUnit.test('main loader does not wait if pending audio timeline change matches segment timeline', function(assert) {
assert.notOk(
shouldWaitForTimelineChange({
currentTimeline: 1,
segmentTimeline: 2,
loaderType: 'main',
timelineChangeController: {
pendingTimelineChange({ type }) {
if (type === 'audio') {
return { from: 1, to: 2 };
}
},
lastTimelineChange({ type }) {
return void 0;
}
}
}),
'should not wait'
);
});
QUnit.module('safeBackBufferTrimTime');
QUnit.test('uses 30s before playhead when seekable start is 0', function(assert) {
const seekable = createTimeRanges([[0, 120]]);
const targetDuration = 10;
const currentTime = 70;
assert.equal(
safeBackBufferTrimTime(seekable, currentTime, targetDuration),
40,
'returned 30 seconds before playhead'
);
});
QUnit.test('uses 30s before playhead when seekable start is earlier', function(assert) {
const seekable = createTimeRanges([[30, 120]]);
const targetDuration = 10;
const currentTime = 70;
assert.equal(
safeBackBufferTrimTime(seekable, currentTime, targetDuration),
40,
'returned 30 seconds before playhead'
);
});
QUnit.test('uses seekable start when within 30s of playhead', function(assert) {
const seekable = createTimeRanges([[41, 120]]);
const targetDuration = 10;
const currentTime = 70;
assert.equal(
safeBackBufferTrimTime(seekable, currentTime, targetDuration),
41,
'returned 29 seconds before playhead'
);
});
QUnit.test('uses target duration when seekable range is within target duration', function(assert) {
let seekable = createTimeRanges([[0, 120]]);
const targetDuration = 10;
let currentTime = 9;
assert.equal(
safeBackBufferTrimTime(seekable, currentTime, targetDuration),
-1,
'returned 10 seconds before playhead'
);
seekable = createTimeRanges([[40, 120]]);
currentTime = 41;
assert.equal(
safeBackBufferTrimTime(seekable, currentTime, targetDuration),
31,
'returned 10 seconds before playhead'
);
});
QUnit.test('uses target duration when seekable range is after current time', function(assert) {
const seekable = createTimeRanges([[110, 120]]);
const targetDuration = 10;
const currentTime = 80;
assert.equal(
safeBackBufferTrimTime(seekable, currentTime, targetDuration),
70,
'returned 10 seconds before playhead'
);
});
QUnit.test('uses current time when seekable range is well before current time', function(assert) {
const seekable = createTimeRanges([[10, 20]]);
const targetDuration = 10;
const currentTime = 140;
assert.equal(
safeBackBufferTrimTime(seekable, currentTime, targetDuration),
110,
'returned 30 seconds before playhead'
);
});
QUnit.module('mediaDuration');
QUnit.test('0 when no timing info', function(assert) {
assert.equal(mediaDuration({}), 0, '0 when no timing info');
assert.equal(
mediaDuration({audioTimingInfo: {start: 1}, videoTimingInfo: {start: 1}}),
0,
'0 when no end times'
);
assert.equal(
mediaDuration({audioTimingInfo: {end: 1}, videoTimingInfo: {end: 1}}),
0,
'0 when no start times'
);
});
QUnit.test('reports audio duration', function(assert) {
assert.equal(
mediaDuration({audioTimingInfo: {start: 1, end: 2}}),
1,
'audio duration when no video info'
);
assert.equal(
mediaDuration({audioTimingInfo: {start: 1, end: 2}, videoTimingInfo: {start: 1}}),
1,
'audio duration when not enough video info'
);
assert.equal(
mediaDuration({audioTimingInfo: {start: 1, end: 2}, videoTimingInfo: {end: 3}}),
1,
'audio duration when not enough video info'
);
assert.equal(
mediaDuration({audioTimingInfo: {start: 1, end: 3}, videoTimingInfo: {start: 1, end: 2}}),
2,
'audio duration when audio duration > video duration'
);
});
QUnit.test('reports video duration', function(assert) {
assert.equal(
mediaDuration({videoTimingInfo: {start: 1, end: 2}}),
1,
'video duration when no audio info'
);
assert.equal(
mediaDuration({audioTimingInfo: {start: 1}, videoTimingInfo: {start: 1, end: 2}}),
1,
'video duration when not enough audio info'
);
assert.equal(
mediaDuration({audioTimingInfo: {end: 3}, videoTimingInfo: {start: 1, end: 2}}),
1,
'video duration when not enough audio info'
);
assert.equal(
mediaDuration({audioTimingInfo: {start: 1, end: 2}, videoTimingInfo: {start: 1, end: 3}}),
2,
'video duration when video duration > audio duration'
);
});
if (window.BigInt) {
QUnit.test('handles bigint', function(assert) {
assert.equal(
mediaDuration({audioTimingInfo: {start: window.BigInt(1), end: window.BigInt(2)}}),
1,
'audio duration when no video info'
);
assert.equal(
mediaDuration({videoTimingInfo: {start: window.BigInt(1), end: window.BigInt(2)}}),
1,
'video duration when no audio info'
);
});
}
QUnit.test('reports video duration', function(assert) {
assert.equal(
mediaDuration({videoTimingInfo: {start: 1, end: 2}}),
1,
'video duration when no audio info'
);
assert.equal(
mediaDuration({audioTimingInfo: {start: 1}, videoTimingInfo: {start: 1, end: 2}}),
1,
'video duration when not enough audio info'
);
assert.equal(
mediaDuration({audioTimingInfo: {end: 3}, videoTimingInfo: {start: 1, end: 2}}),
1,
'video duration when not enough audio info'
);
assert.equal(
mediaDuration({audioTimingInfo: {start: 1, end: 2}, videoTimingInfo: {start: 1, end: 3}}),
2,
'video duration when video duration > audio duration'
);
});
QUnit.module('segmentTooLong');
QUnit.test('false when no segment duration', function(assert) {
assert.notOk(segmentTooLong({ maxDuration: 9 }), 'false when no segment duration');
assert.notOk(
segmentTooLong({ segmentDuration: 0, maxDuration: 9 }),
'false when segment duration is 0'
);
});
QUnit.test('false when duration is within range', function(assert) {
assert.notOk(
segmentTooLong({
segmentDuration: 9,
maxDuration: 9
}),
'false when duration is same'
);
assert.notOk(
segmentTooLong({
segmentDuration: 9.49,
maxDuration: 9
}),
'false when duration rounds down to same'
);
});
QUnit.test('true when duration is too long', function(assert) {
assert.ok(
segmentTooLong({
segmentDuration: 9,
maxDuration: 8.9
}),
'true when duration is too long'
);
assert.ok(
segmentTooLong({
segmentDuration: 9.5,
maxDuration: 9
}),
'true when duration rounds up to be too long'
);
});
QUnit.module('getTroublesomeSegmentDurationMessage');
QUnit.test('falsey when dash', function(assert) {
assert.notOk(
getTroublesomeSegmentDurationMessage(
{
audioTimingInfo: { start: 0, end: 10 },
videoTimingInfo: { start: 0, end: 10 },
mediaIndex: 0,
playlist: {
id: 'id',
targetDuration: 4
}
},
'dash'
),
'falsey when dash'
);
});
QUnit.test('falsey when segment is within range', function(assert) {
assert.notOk(
getTroublesomeSegmentDurationMessage(
{
audioTimingInfo: { start: 0, end: 10 },
videoTimingInfo: { start: 0, end: 10 },
duration: 10,
mediaIndex: 0,
playlist: {
id: 'id',
targetDuration: 10
}
},
'hls'
),
'falsey when segment equal to target duration'
);
assert.notOk(
getTroublesomeSegmentDurationMessage(
{
audioTimingInfo: { start: 0, end: 10 },
videoTimingInfo: { start: 0, end: 5 },
duration: 10,
mediaIndex: 0,
playlist: {
id: 'id',
targetDuration: 10
}
},
'hls'
),
'falsey when segment less than target duration'
);
assert.notOk(
getTroublesomeSegmentDurationMessage(
{
audioTimingInfo: { start: 0, end: 5 },
videoTimingInfo: { start: 0, end: 5 },
mediaIndex: 0,
duration: 5,
playlist: {
id: 'id',
targetDuration: 10
}
},
'hls'
),
'falsey when segment less than target duration'
);
});
QUnit.test('warn when segment is way too long', function(assert) {
assert.deepEqual(
getTroublesomeSegmentDurationMessage(
{
audioTimingInfo: { start: 0, end: 10 },
videoTimingInfo: { start: 0, end: 10 },
mediaIndex: 0,
duration: 10,
playlist: {
targetDuration: 4,
id: 'id'
}
},
'hls'
),
{
severity: 'warn',
message:
'Segment with index 0 from playlist id has a duration of 10 when the reported ' +
'duration is 10 and the target duration is 4. For HLS content, a duration in ' +
'excess of the target duration may result in playback issues. See the HLS ' +
'specification section on EXT-X-TARGETDURATION for more details: ' +
'https://tools.ietf.org/html/draft-pantos-http-live-streaming-23#section-4.3.3.1'
},
'warn when segment way too long'
);
});
QUnit.test('info segment is bit too long', function(assert) {
assert.deepEqual(
getTroublesomeSegmentDurationMessage(
{
audioTimingInfo: { start: 0, end: 4.5 },
videoTimingInfo: { start: 0, end: 4.5 },
mediaIndex: 0,
duration: 4.5,
playlist: {
id: 'id',
targetDuration: 4
}
},
'hls'
),
{
severity: 'info',
message:
'Segment with index 0 from playlist id has a duration of 4.5 when the reported ' +
'duration is 4.5 and the target duration is 4. For HLS content, a duration in ' +
'excess of the target duration may result in playback issues. See the HLS ' +
'specification section on EXT-X-TARGETDURATION for more details: ' +
'https://tools.ietf.org/html/draft-pantos-http-live-streaming-23#section-4.3.3.1'
},
'info when segment is a bit too long'
);
});
QUnit.module('segmentInfoString');
QUnit.test('all possible information', function(assert) {
const segment = {
uri: 'foo',
parts: [
{start: 0, end: 1, duration: 1},
{start: 1, end: 2, duration: 1},
{start: 2, end: 3, duration: 1},
{start: 4, end: 5, duration: 1},
{start: 5, end: 6, duration: 1}
],
start: 0,
end: 6
};
const segmentInfo = {
startOfSegment: 1,
duration: 5,
segment,
part: segment.parts[0],
playlist: {
mediaSequence: 0,
id: 'playlist-id',
segments: [segment]
},
mediaIndex: 0,
partIndex: 0,
timeline: 0,
independent: 'previous part',
getMediaInfoForTime: 'bufferedEnd 0'
};
const expected =
'segment [0/0] ' +
'part [0/4] ' +
'segment start/end [0 => 6] ' +
'part start/end [0 => 1] ' +
'startOfSegment [1] ' +
'duration [5] ' +
'timeline [0] ' +
'selected by [getMediaInfoForTime (bufferedEnd 0) with independent previous part] ' +
'playlist [playlist-id]';
assert.equal(segmentInfoString(segmentInfo), expected, 'expected return value');
});
QUnit.test('mediaIndex selection', function(assert) {
const segment = {
uri: 'foo',
parts: [
{start: 0, end: 1, duration: 1},
{start: 1, end: 2, duration: 1},
{start: 2, end: 3, duration: 1},
{start: 4, end: 5, duration: 1},
{start: 5, end: 6, duration: 1}
],
start: 0,
end: 6
};
const segmentInfo = {
startOfSegment: 1,
duration: 5,
segment,
part: segment.parts[0],
playlist: {
mediaSequence: 0,
id: 'playlist-id',
segments: [segment]
},
mediaIndex: 0,
partIndex: 0,
timeline: 0
};
const expected =
'segment [0/0] ' +
'part [0/4] ' +
'segment start/end [0 => 6] ' +
'part start/end [0 => 1] ' +
'startOfSegment [1] ' +
'duration [5] ' +
'timeline [0] ' +
'selected by [mediaIndex/partIndex increment] ' +
'playlist [playlist-id]';
assert.equal(segmentInfoString(segmentInfo), expected, 'expected return value');
});
QUnit.test('sync request selection', function(assert) {
const segment = {
uri: 'foo',
parts: [
{start: 0, end: 1, duration: 1},
{start: 1, end: 2, duration: 1},
{start: 2, end: 3, duration: 1},
{start: 4, end: 5, duration: 1},
{start: 5, end: 6, duration: 1}
],
start: 0,
end: 6
};
const segmentInfo = {
startOfSegment: 1,
duration: 5,
segment,
part: segment.parts[0],
playlist: {
mediaSequence: 0,
id: 'playlist-id',
segments: [segment]
},
mediaIndex: 0,
partIndex: 0,
timeline: 0,
isSyncRequest: true
};
const expected =
'segment [0/0] ' +
'part [0/4] ' +
'segment start/end [0 => 6] ' +
'part start/end [0 => 1] ' +
'startOfSegment [1] ' +
'duration [5] ' +
'timeline [0] ' +
'selected by [getSyncSegmentCandidate (isSyncRequest)] ' +
'playlist [playlist-id]';
assert.equal(segmentInfoString(segmentInfo), expected, 'expected return value');
});
QUnit.test('preload segment', function(assert) {
const segment = {
parts: [
{start: 0, end: 1, duration: 1},
{start: 1, end: 2, duration: 1},
{start: 2, end: 3, duration: 1},
{start: 4, end: 5, duration: 1},
{start: 5, end: 6, duration: 1}
],
start: 0,
end: 6
};
const segmentInfo = {
startOfSegment: 1,
duration: 5,
segment,
part: segment.parts[0],
playlist: {
mediaSequence: 0,
id: 'playlist-id',
segments: [segment]
},
mediaIndex: 0,
partIndex: 0,
timeline: 0
};
const expected =
'pre-segment [0/0] ' +
'part [0/4] ' +
'segment start/end [0 => 6] ' +
'part start/end [0 => 1] ' +
'startOfSegment [1] ' +
'duration [5] ' +
'timeline [0] ' +