segment-loader.test.js
35.2 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
import QUnit from 'qunit';
import SegmentLoader from '../src/segment-loader';
import videojs from 'video.js';
import xhrFactory from '../src/xhr';
import {useFakeEnvironment, useFakeMediaSource} from './test-helpers.js';
import Config from '../src/config';
const playlistWithDuration = function(time, conf) {
let result = {
targetDuration: 10,
mediaSequence: conf && conf.mediaSequence ? conf.mediaSequence : 0,
discontinuityStarts: [],
segments: [],
endList: true
};
let count = Math.floor(time / 10);
let remainder = time % 10;
let i;
let isEncrypted = conf && conf.isEncrypted;
for (i = 0; i < count; i++) {
result.segments.push({
uri: i + '.ts',
resolvedUri: i + '.ts',
duration: 10
});
if (isEncrypted) {
result.segments[i].key = {
uri: i + '-key.php',
resolvedUri: i + '-key.php'
};
}
}
if (remainder) {
result.segments.push({
uri: i + '.ts',
duration: remainder
});
}
return result;
};
let currentTime;
let mediaSource;
let loader;
QUnit.module('Segment Loader', {
beforeEach() {
this.env = useFakeEnvironment();
this.clock = this.env.clock;
this.requests = this.env.requests;
this.mse = useFakeMediaSource();
this.seekable = {
length: 0
};
this.mimeType = 'video/mp2t';
this.fakeHls = {
xhr: xhrFactory()
};
currentTime = 0;
mediaSource = new videojs.MediaSource();
mediaSource.trigger('sourceopen');
loader = new SegmentLoader({
hls: this.fakeHls,
currentTime() {
return currentTime;
},
seekable: () => this.seekable,
seeking: () => false,
hasPlayed: () => true,
mediaSource
});
},
afterEach() {
this.env.restore();
this.mse.restore();
}
});
QUnit.test('fails without required initialization options', function() {
/* eslint-disable no-new */
QUnit.throws(function() {
new SegmentLoader();
}, 'requires options');
QUnit.throws(function() {
new SegmentLoader({});
}, 'requires a currentTime callback');
QUnit.throws(function() {
new SegmentLoader({
currentTime() {}
});
}, 'requires a media source');
/* eslint-enable */
});
QUnit.test('load waits until a playlist and mime type are specified to proceed',
function() {
loader.load();
QUnit.equal(loader.state, 'INIT', 'waiting in init');
QUnit.equal(loader.paused(), false, 'not paused');
loader.playlist(playlistWithDuration(10));
QUnit.equal(this.requests.length, 0, 'have not made a request yet');
loader.mimeType(this.mimeType);
QUnit.equal(this.requests.length, 1, 'made a request');
QUnit.equal(loader.state, 'WAITING', 'transitioned states');
});
QUnit.test('calling mime type and load begins buffering', function() {
QUnit.equal(loader.state, 'INIT', 'starts in the init state');
loader.playlist(playlistWithDuration(10));
QUnit.equal(loader.state, 'INIT', 'starts in the init state');
QUnit.ok(loader.paused(), 'starts paused');
loader.mimeType(this.mimeType);
QUnit.equal(loader.state, 'INIT', 'still in the init state');
loader.load();
QUnit.equal(loader.state, 'WAITING', 'moves to the ready state');
QUnit.ok(!loader.paused(), 'loading is not paused');
QUnit.equal(this.requests.length, 1, 'requested a segment');
});
QUnit.test('calling load is idempotent', function() {
loader.playlist(playlistWithDuration(20));
loader.mimeType(this.mimeType);
loader.load();
QUnit.equal(loader.state, 'WAITING', 'moves to the ready state');
QUnit.equal(this.requests.length, 1, 'made one request');
loader.load();
QUnit.equal(loader.state, 'WAITING', 'still in the ready state');
QUnit.equal(this.requests.length, 1, 'still one request');
// some time passes and a response is received
this.clock.tick(100);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
loader.load();
QUnit.equal(this.requests.length, 0, 'load has no effect');
});
QUnit.test('calling load should unpause', function() {
let sourceBuffer;
loader.playlist(playlistWithDuration(20));
loader.pause();
loader.mimeType(this.mimeType);
sourceBuffer = mediaSource.sourceBuffers[0];
loader.load();
QUnit.equal(loader.paused(), false, 'loading unpauses');
loader.pause();
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
QUnit.equal(loader.paused(), true, 'stayed paused');
loader.load();
QUnit.equal(loader.paused(), false, 'unpaused during processing');
loader.pause();
sourceBuffer.trigger('updateend');
QUnit.equal(loader.state, 'READY', 'finished processing');
QUnit.ok(loader.paused(), 'stayed paused');
loader.load();
QUnit.equal(loader.paused(), false, 'unpaused');
});
QUnit.test('regularly checks the buffer while unpaused', function() {
let sourceBuffer;
loader.playlist(playlistWithDuration(90));
loader.mimeType(this.mimeType);
loader.load();
sourceBuffer = mediaSource.sourceBuffers[0];
// fill the buffer
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
sourceBuffer.buffered = videojs.createTimeRanges([[
0, Config.GOAL_BUFFER_LENGTH
]]);
sourceBuffer.trigger('updateend');
QUnit.equal(this.requests.length, 0, 'no outstanding requests');
// play some video to drain the buffer
currentTime = Config.GOAL_BUFFER_LENGTH;
this.clock.tick(10 * 1000);
QUnit.equal(this.requests.length, 1, 'requested another segment');
});
QUnit.test('does not check the buffer while paused', function() {
let sourceBuffer;
loader.playlist(playlistWithDuration(90));
loader.mimeType(this.mimeType);
loader.load();
sourceBuffer = mediaSource.sourceBuffers[0];
loader.pause();
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
sourceBuffer.trigger('updateend');
this.clock.tick(10 * 1000);
QUnit.equal(this.requests.length, 0, 'did not make a request');
});
QUnit.test('calculates bandwidth after downloading a segment', function() {
loader.playlist(playlistWithDuration(10));
loader.mimeType(this.mimeType);
loader.load();
// some time passes and a response is received
this.clock.tick(100);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
QUnit.equal(loader.bandwidth, (10 / 100) * 8 * 1000, 'calculated bandwidth');
QUnit.equal(loader.roundTrip, 100, 'saves request round trip time');
QUnit.equal(loader.bytesReceived, 10, 'saves bytes received');
});
QUnit.test('segment request timeouts reset bandwidth', function() {
loader.playlist(playlistWithDuration(10));
loader.mimeType(this.mimeType);
loader.load();
// a lot of time passes so the request times out
this.requests[0].timedout = true;
this.clock.tick(100 * 1000);
QUnit.equal(loader.bandwidth, 1, 'reset bandwidth');
QUnit.ok(isNaN(loader.roundTrip), 'reset round trip time');
});
QUnit.test('appending a segment triggers progress', function() {
let progresses = 0;
loader.on('progress', function() {
progresses++;
});
loader.playlist(playlistWithDuration(10));
loader.mimeType(this.mimeType);
loader.load();
// some time passes and a response is received
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
mediaSource.sourceBuffers[0].trigger('updateend');
QUnit.equal(progresses, 1, 'fired progress');
});
QUnit.test('only requests one segment at a time', function() {
loader.playlist(playlistWithDuration(10));
loader.mimeType(this.mimeType);
loader.load();
// a bunch of time passes without recieving a response
this.clock.tick(20 * 1000);
QUnit.equal(this.requests.length, 1, 'only one request was made');
});
QUnit.test('only appends one segment at a time', function() {
loader.playlist(playlistWithDuration(10));
loader.mimeType(this.mimeType);
loader.load();
// some time passes and a segment is received
this.clock.tick(100);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
// a lot of time goes by without "updateend"
this.clock.tick(20 * 1000);
QUnit.equal(mediaSource.sourceBuffers[0].updates_.filter(
update => update.append).length, 1, 'only one append');
QUnit.equal(this.requests.length, 0, 'only made one request');
});
QUnit.test('adjusts the playlist offset if no buffering progress is made', function() {
let sourceBuffer;
let playlist;
playlist = playlistWithDuration(40);
playlist.endList = false;
loader.playlist(playlist);
loader.mimeType(this.mimeType);
loader.load();
sourceBuffer = mediaSource.sourceBuffers[0];
// buffer some content and switch playlists on progress
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
loader.on('progress', function f() {
loader.off('progress', f);
// switch playlists
playlist = playlistWithDuration(40);
playlist.uri = 'alternate.m3u8';
playlist.endList = false;
loader.playlist(playlist);
});
sourceBuffer.buffered = videojs.createTimeRanges([[0, 5]]);
sourceBuffer.trigger('updateend');
// the next segment doesn't increase the buffer at all
QUnit.equal(this.requests[0].url, '0.ts', 'requested the same segment');
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
sourceBuffer.trigger('updateend');
// so the loader should try the next segment
QUnit.equal(this.requests[0].url, '1.ts', 'moved ahead a segment');
});
QUnit.test('never attempt to load a segment that ' +
'is greater than 90% buffered', function() {
let sourceBuffer;
let playlist;
playlist = playlistWithDuration(40);
playlist.endList = false;
loader.playlist(playlist);
loader.mimeType(this.mimeType);
loader.load();
sourceBuffer = mediaSource.sourceBuffers[0];
// buffer some content and switch playlists on progress
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
loader.on('progress', function f() {
loader.off('progress', f);
// switch playlists
playlist = playlistWithDuration(40);
playlist.uri = 'alternate.m3u8';
playlist.endList = false;
loader.playlist(playlist);
});
sourceBuffer.buffered = videojs.createTimeRanges([[0, 9.2]]);
sourceBuffer.trigger('updateend');
// the loader should move on to the next segment
QUnit.equal(this.requests[0].url, '1.ts', 'moved ahead a segment');
});
QUnit.test('adjusts the playlist offset if no buffering progress is made', function() {
let sourceBuffer;
let playlist;
playlist = playlistWithDuration(40);
playlist.endList = false;
loader.playlist(playlist);
loader.mimeType(this.mimeType);
loader.load();
sourceBuffer = mediaSource.sourceBuffers[0];
// buffer some content and switch playlists on progress
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
loader.on('progress', function f() {
loader.off('progress', f);
// switch playlists
playlist = playlistWithDuration(40);
playlist.uri = 'alternate.m3u8';
playlist.endList = false;
loader.playlist(playlist);
});
sourceBuffer.buffered = videojs.createTimeRanges([[0, 5]]);
sourceBuffer.trigger('updateend');
// the next segment doesn't increase the buffer at all
QUnit.equal(this.requests[0].url, '0.ts', 'requested the same segment');
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
sourceBuffer.trigger('updateend');
// so the loader should try the next segment
QUnit.equal(this.requests[0].url, '1.ts', 'moved ahead a segment');
});
QUnit.test('adjusts the playlist offset even when segment.end is set if no' +
' buffering progress is made', function() {
let sourceBuffer;
let playlist;
playlist = playlistWithDuration(40);
playlist.endList = false;
loader.playlist(playlist);
loader.mimeType(this.mimeType);
loader.load();
sourceBuffer = mediaSource.sourceBuffers[0];
// buffer some content and switch playlists on progress
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
sourceBuffer.buffered = videojs.createTimeRanges([[0, 5]]);
loader.one('progress', function f() {
QUnit.equal(playlist.segments[0].end, 5, 'segment.end was set based on the buffer');
playlist.segments[0].end = 10;
});
sourceBuffer.trigger('updateend');
// the next segment doesn't increase the buffer at all
QUnit.equal(this.requests[0].url, '0.ts', 'requested the same segment');
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
sourceBuffer.trigger('updateend');
// so the loader should try the next segment
QUnit.equal(this.requests[0].url, '1.ts', 'moved ahead a segment');
});
QUnit.test('adjusts the playlist offset if no buffering progress is made after' +
' five consecutive attempts', function() {
let sourceBuffer;
let playlist;
let errors = 0;
loader.on('error', () => {
errors++;
});
playlist = playlistWithDuration(120);
playlist.endList = false;
loader.playlist(playlist);
loader.mimeType(this.mimeType);
loader.load();
sourceBuffer = mediaSource.sourceBuffers[0];
// buffer some content
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
sourceBuffer.buffered = videojs.createTimeRanges([[0, 10]]);
sourceBuffer.trigger('updateend');
for (let i = 1; i <= 6; i++) {
// the next segment doesn't increase the buffer at all
QUnit.equal(this.requests[0].url, (i + '.ts'), 'requested the next segment');
this.clock.tick(1);
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
sourceBuffer.trigger('updateend');
}
// so the loader should try the next segment
QUnit.equal(errors, 1, 'emitted error');
QUnit.ok(loader.paused(), 'loader is paused');
});
QUnit.test('cancels outstanding requests on abort', function() {
loader.playlist(playlistWithDuration(20));
loader.mimeType(this.mimeType);
loader.load();
loader.xhr_.segmentXhr.onreadystatechange = function() {
throw new Error('onreadystatechange should not be called');
};
loader.abort();
QUnit.ok(this.requests[0].aborted, 'aborted the first request');
QUnit.equal(this.requests.length, 2, 'started a new request');
QUnit.equal(loader.state, 'WAITING', 'back to the waiting state');
});
QUnit.test('abort does not cancel segment processing in progress', function() {
loader.playlist(playlistWithDuration(20));
loader.mimeType(this.mimeType);
loader.load();
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
loader.abort();
QUnit.equal(loader.state, 'APPENDING', 'still appending');
});
QUnit.test('sets the timestampOffset on timeline change', function() {
let playlist = playlistWithDuration(40);
playlist.discontinuityStarts = [1];
playlist.segments[1].timeline = 1;
loader.playlist(playlist);
loader.mimeType(this.mimeType);
loader.load();
// segment 0
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
mediaSource.sourceBuffers[0].buffered = videojs.createTimeRanges([[0, 10]]);
mediaSource.sourceBuffers[0].trigger('updateend');
// segment 1, discontinuity
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
QUnit.equal(mediaSource.sourceBuffers[0].timestampOffset, 10, 'set timestampOffset');
});
QUnit.test('tracks segment end times as they are buffered', function() {
let playlist = playlistWithDuration(20);
loader.playlist(playlist);
loader.mimeType(this.mimeType);
loader.load();
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
mediaSource.sourceBuffers[0].buffered = videojs.createTimeRanges([
[0, 9.5]
]);
mediaSource.sourceBuffers[0].trigger('updateend');
QUnit.equal(playlist.segments[0].end, 9.5, 'updated duration');
});
QUnit.test('segment 404s should trigger an error', function() {
let errors = [];
loader.playlist(playlistWithDuration(10));
loader.mimeType(this.mimeType);
loader.load();
loader.on('error', function(error) {
errors.push(error);
});
this.requests.shift().respond(404, null, '');
QUnit.equal(errors.length, 1, 'triggered an error');
QUnit.equal(loader.error().code, 2, 'triggered MEDIA_ERR_NETWORK');
QUnit.ok(loader.error().xhr, 'included the request object');
QUnit.ok(loader.paused(), 'paused the loader');
QUnit.equal(loader.state, 'READY', 'returned to the ready state');
});
QUnit.test('segment 5xx status codes trigger an error', function() {
let errors = [];
loader.playlist(playlistWithDuration(10));
loader.mimeType(this.mimeType);
loader.load();
loader.on('error', function(error) {
errors.push(error);
});
this.requests.shift().respond(500, null, '');
QUnit.equal(errors.length, 1, 'triggered an error');
QUnit.equal(loader.error().code, 2, 'triggered MEDIA_ERR_NETWORK');
QUnit.ok(loader.error().xhr, 'included the request object');
QUnit.ok(loader.paused(), 'paused the loader');
QUnit.equal(loader.state, 'READY', 'returned to the ready state');
});
QUnit.test('fires ended at the end of a playlist', function() {
let endOfStreams = 0;
loader.playlist(playlistWithDuration(10));
loader.mimeType(this.mimeType);
loader.load();
loader.mediaSource_ = {
readyState: 'open',
sourceBuffers: mediaSource.sourceBuffers,
endOfStream() {
endOfStreams++;
}
};
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
mediaSource.sourceBuffers[0].buffered = videojs.createTimeRanges([[0, 10]]);
mediaSource.sourceBuffers[0].trigger('updateend');
QUnit.equal(endOfStreams, 1, 'triggered ended');
});
QUnit.test('live playlists do not trigger ended', function() {
let endOfStreams = 0;
let playlist;
playlist = playlistWithDuration(10);
playlist.endList = false;
loader.playlist(playlist);
loader.mimeType(this.mimeType);
loader.load();
loader.mediaSource_ = {
readyState: 'open',
sourceBuffers: mediaSource.sourceBuffers,
endOfStream() {
endOfStreams++;
}
};
this.requests[0].response = new Uint8Array(10).buffer;
this.requests.shift().respond(200, null, '');
mediaSource.sourceBuffers[0].buffered = videojs.createTimeRanges([[0, 10]]);
mediaSource.sourceBuffers[0].trigger('updateend');
QUnit.equal(endOfStreams, 0, 'did not trigger ended');
});
QUnit.test('respects the global withCredentials option', function() {
let hlsOptions = videojs.options.hls;
videojs.options.hls = {
withCredentials: true
};
loader = new SegmentLoader({
hls: this.fakeHls,
currentTime() {
return currentTime;
},
seekable: () => this.seekable,
mediaSource
});
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
QUnit.equal(this.requests[0].url, '0-key.php', 'requested the first segment\'s key');
QUnit.ok(this.requests[0].withCredentials, 'key request used withCredentials');
QUnit.equal(this.requests[1].url, '0.ts', 'requested the first segment');
QUnit.ok(this.requests[1].withCredentials, 'segment request used withCredentials');
videojs.options.hls = hlsOptions;
});
QUnit.test('respects the withCredentials option', function() {
loader = new SegmentLoader({
hls: this.fakeHls,
currentTime() {
return currentTime;
},
seekable: () => this.seekable,
mediaSource,
withCredentials: true
});
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
QUnit.equal(this.requests[0].url, '0-key.php', 'requested the first segment\'s key');
QUnit.ok(this.requests[0].withCredentials, 'key request used withCredentials');
QUnit.equal(this.requests[1].url, '0.ts', 'requested the first segment');
QUnit.ok(this.requests[1].withCredentials, 'segment request used withCredentials');
});
QUnit.test('the withCredentials option overrides the global', function() {
let hlsOptions = videojs.options.hls;
videojs.options.hls = {
withCredentials: true
};
loader = new SegmentLoader({
hls: this.fakeHls,
currentTime() {
return currentTime;
},
mediaSource,
seekable: () => this.seekable,
withCredentials: false
});
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
QUnit.equal(this.requests[0].url, '0-key.php', 'requested the first segment\'s key');
QUnit.ok(!this.requests[0].withCredentials, 'overrode key request withCredentials');
QUnit.equal(this.requests[1].url, '0.ts', 'requested the first segment');
QUnit.ok(!this.requests[1].withCredentials, 'overrode segment request withCredentials');
videojs.options.hls = hlsOptions;
});
QUnit.test('remains ready if there are no segments', function() {
loader.playlist(playlistWithDuration(0));
loader.mimeType(this.mimeType);
loader.load();
QUnit.equal(loader.state, 'READY', 'in the ready state');
});
QUnit.test('dispose cleans up outstanding work', function() {
loader.playlist(playlistWithDuration(20));
loader.mimeType(this.mimeType);
loader.load();
loader.dispose();
QUnit.ok(this.requests[0].aborted, 'aborted segment request');
QUnit.equal(this.requests.length, 1, 'did not open another request');
mediaSource.sourceBuffers.forEach((sourceBuffer, i) => {
let lastOperation = sourceBuffer.updates_.slice(-1)[0];
QUnit.ok(lastOperation.abort, 'aborted source buffer ' + i);
});
});
// ----------
// Decryption
// ----------
QUnit.test('calling load with an encrypted segment requests key and segment', function() {
QUnit.equal(loader.state, 'INIT', 'starts in the init state');
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
QUnit.equal(loader.state, 'INIT', 'starts in the init state');
QUnit.ok(loader.paused(), 'starts paused');
loader.mimeType(this.mimeType);
loader.load();
QUnit.equal(loader.state, 'WAITING', 'moves to the ready state');
QUnit.ok(!loader.paused(), 'loading is not paused');
QUnit.equal(this.requests.length, 2, 'requested a segment and key');
QUnit.equal(this.requests[0].url, '0-key.php', 'requested the first segment\'s key');
QUnit.equal(this.requests[1].url, '0.ts', 'requested the first segment');
});
QUnit.test('cancels outstanding key request on abort', function() {
loader.playlist(playlistWithDuration(20, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
loader.xhr_.keyXhr.onreadystatechange = function() {
throw new Error('onreadystatechange should not be called');
};
QUnit.equal(this.requests.length, 2, 'requested a segment and key');
loader.abort();
QUnit.equal(this.requests[0].url, '0-key.php', 'requested the first segment\'s key');
QUnit.ok(this.requests[0].aborted, 'aborted the first key request');
QUnit.equal(this.requests.length, 4, 'started a new request');
QUnit.equal(loader.state, 'WAITING', 'back to the waiting state');
});
QUnit.test('dispose cleans up key requests for encrypted segments', function() {
loader.playlist(playlistWithDuration(20, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
loader.dispose();
QUnit.equal(this.requests.length, 2, 'requested a segment and key');
QUnit.equal(this.requests[0].url, '0-key.php', 'requested the first segment\'s key');
QUnit.ok(this.requests[0].aborted, 'aborted the first segment\s key request');
QUnit.equal(this.requests.length, 2, 'did not open another request');
});
QUnit.test('key 404s should trigger an error', function() {
let errors = [];
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
loader.on('error', function(error) {
errors.push(error);
});
this.requests.shift().respond(404, null, '');
QUnit.equal(errors.length, 1, 'triggered an error');
QUnit.equal(loader.error().code, 2, 'triggered MEDIA_ERR_NETWORK');
QUnit.equal(loader.error().message, 'HLS key request error at URL: 0-key.php',
'receieved a key error message');
QUnit.ok(loader.error().xhr, 'included the request object');
QUnit.ok(loader.paused(), 'paused the loader');
QUnit.equal(loader.state, 'READY', 'returned to the ready state');
});
QUnit.test('key 5xx status codes trigger an error', function() {
let errors = [];
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
loader.on('error', function(error) {
errors.push(error);
});
this.requests.shift().respond(500, null, '');
QUnit.equal(errors.length, 1, 'triggered an error');
QUnit.equal(loader.error().code, 2, 'triggered MEDIA_ERR_NETWORK');
QUnit.equal(loader.error().message, 'HLS key request error at URL: 0-key.php',
'receieved a key error message');
QUnit.ok(loader.error().xhr, 'included the request object');
QUnit.ok(loader.paused(), 'paused the loader');
QUnit.equal(loader.state, 'READY', 'returned to the ready state');
});
QUnit.test('the key is saved to the segment in the correct format', function() {
let keyRequest;
let segmentRequest;
let segment;
let segmentInfo;
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
// stop processing so we can examine segment info
loader.processResponse_ = function() {};
keyRequest = this.requests.shift();
keyRequest.response = new Uint32Array([0, 1, 2, 3]).buffer;
keyRequest.respond(200, null, '');
segmentRequest = this.requests.shift();
segmentRequest.response = new Uint8Array(10).buffer;
segmentRequest.respond(200, null, '');
segmentInfo = loader.pendingSegment_;
segment = segmentInfo.playlist.segments[segmentInfo.mediaIndex];
QUnit.deepEqual(segment.key.bytes,
new Uint32Array([0, 0x01000000, 0x02000000, 0x03000000]),
'passed the specified segment key');
});
QUnit.test('supplies media sequence of current segment as the IV by default, if no IV ' +
'is specified',
function() {
let keyRequest;
let segmentRequest;
let segment;
let segmentInfo;
loader.playlist(playlistWithDuration(10, {isEncrypted: true, mediaSequence: 5}));
loader.mimeType(this.mimeType);
loader.load();
// stop processing so we can examine segment info
loader.processResponse_ = function() {};
keyRequest = this.requests.shift();
keyRequest.response = new Uint32Array([0, 0, 0, 0]).buffer;
keyRequest.respond(200, null, '');
segmentRequest = this.requests.shift();
segmentRequest.response = new Uint8Array(10).buffer;
segmentRequest.respond(200, null, '');
segmentInfo = loader.pendingSegment_;
segment = segmentInfo.playlist.segments[segmentInfo.mediaIndex];
QUnit.deepEqual(segment.key.iv, new Uint32Array([0, 0, 0, 5]),
'the IV for the segment is the media sequence');
});
QUnit.test('segment with key has decrypted bytes appended during processing', function() {
let keyRequest;
let segmentRequest;
// stop processing so we can examine segment info
loader.handleSegment_ = function() {};
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
segmentRequest = this.requests.pop();
segmentRequest.response = new Uint8Array(8).buffer;
segmentRequest.respond(200, null, '');
QUnit.ok(loader.pendingSegment_.encryptedBytes, 'encrypted bytes in segment');
QUnit.ok(!loader.pendingSegment_.bytes, 'no decrypted bytes in segment');
keyRequest = this.requests.shift();
keyRequest.response = new Uint32Array([0, 0, 0, 0]).buffer;
keyRequest.respond(200, null, '');
// Allow the decrypter to decrypt
this.clock.tick(1);
// Allow the decrypter's async stream to run the callback
this.clock.tick(1);
QUnit.ok(loader.pendingSegment_.bytes, 'decrypted bytes in segment');
});
QUnit.test('calling load with an encrypted segment waits for both key and segment ' +
'before processing', function() {
let keyRequest;
let segmentRequest;
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
QUnit.equal(loader.state, 'WAITING', 'moves to waiting state');
QUnit.equal(this.requests.length, 2, 'requested a segment and key');
QUnit.equal(this.requests[0].url, '0-key.php', 'requested the first segment\'s key');
QUnit.equal(this.requests[1].url, '0.ts', 'requested the first segment');
// respond to the segment first
segmentRequest = this.requests.pop();
segmentRequest.response = new Uint8Array(10).buffer;
segmentRequest.respond(200, null, '');
QUnit.equal(loader.state, 'WAITING', 'still in waiting state');
// then respond to the key
keyRequest = this.requests.shift();
keyRequest.response = new Uint32Array([0, 0, 0, 0]).buffer;
keyRequest.respond(200, null, '');
QUnit.equal(loader.state, 'DECRYPTING', 'moves to decrypting state');
});
QUnit.test('key request timeouts reset bandwidth', function() {
loader.playlist(playlistWithDuration(10, {isEncrypted: true}));
loader.mimeType(this.mimeType);
loader.load();
QUnit.equal(this.requests[0].url, '0-key.php', 'requested the first segment\'s key');
QUnit.equal(this.requests[1].url, '0.ts', 'requested the first segment');
// a lot of time passes so the request times out
this.requests[0].timedout = true;
this.clock.tick(100 * 1000);
QUnit.equal(loader.bandwidth, 1, 'reset bandwidth');
QUnit.ok(isNaN(loader.roundTrip), 'reset round trip time');
});
QUnit.test('GOAL_BUFFER_LENGTH changes to 1 segment ' +
' which is already buffered, no new request is formed', function() {
Config.GOAL_BUFFER_LENGTH = 1;
loader.mimeType(this.mimeType);
let segmentInfo = loader.checkBuffer_(videojs.createTimeRanges([[0, 1]]),
playlistWithDuration(20),
0);
QUnit.ok(!segmentInfo, 'no request generated');
Config.GOAL_BUFFER_LENGTH = 30;
});
QUnit.module('Segment Loading Calculation', {
beforeEach() {
this.env = useFakeEnvironment();
this.mse = useFakeMediaSource();
this.hasPlayed = true;
this.clock = this.env.clock;
currentTime = 0;
loader = new SegmentLoader({
currentTime() {
return currentTime;
},
mediaSource: new videojs.MediaSource(),
hasPlayed: () => this.hasPlayed
});
},
afterEach() {
this.env.restore();
this.mse.restore();
}
});
QUnit.test('requests the first segment with an empty buffer', function() {
loader.mimeType(this.mimeType);
let segmentInfo = loader.checkBuffer_(videojs.createTimeRanges(),
playlistWithDuration(20),
0);
QUnit.ok(segmentInfo, 'generated a request');
QUnit.equal(segmentInfo.uri, '0.ts', 'requested the first segment');
});
QUnit.test('no request if video not played and 1 segment is buffered', function() {
this.hasPlayed = false;
loader.mimeType(this.mimeType);
let segmentInfo = loader.checkBuffer_(videojs.createTimeRanges([[0, 1]]),
playlistWithDuration(20),
0);
QUnit.ok(!segmentInfo, 'no request generated');
});
QUnit.test('does not download the next segment if the buffer is full', function() {
let buffered;
let segmentInfo;
loader.mimeType(this.mimeType);
buffered = videojs.createTimeRanges([
[0, 15 + Config.GOAL_BUFFER_LENGTH]
]);
segmentInfo = loader.checkBuffer_(buffered, playlistWithDuration(30), 15);
QUnit.ok(!segmentInfo, 'no segment request generated');
});
QUnit.test('downloads the next segment if the buffer is getting low', function() {
let buffered;
let segmentInfo;
let playlist = playlistWithDuration(30);
loader.mimeType(this.mimeType);
loader.playlist(playlist);
playlist.segments[1].end = 19.999;
buffered = videojs.createTimeRanges([[0, 19.999]]);
segmentInfo = loader.checkBuffer_(buffered, playlist, 15);
QUnit.ok(segmentInfo, 'made a request');
QUnit.equal(segmentInfo.uri, '2.ts', 'requested the third segment');
});
QUnit.test('buffers based on the correct TimeRange if multiple ranges exist', function() {
let buffered;
let segmentInfo;
loader.mimeType(this.mimeType);
buffered = videojs.createTimeRanges([[0, 10], [20, 30]]);
segmentInfo = loader.checkBuffer_(buffered, playlistWithDuration(40), 8);
QUnit.ok(segmentInfo, 'made a request');
QUnit.equal(segmentInfo.uri, '1.ts', 'requested the second segment');
segmentInfo = loader.checkBuffer_(buffered, playlistWithDuration(40), 20);
QUnit.ok(segmentInfo, 'made a request');
QUnit.equal(segmentInfo.uri, '3.ts', 'requested the fourth segment');
});
QUnit.test('stops downloading segments at the end of the playlist', function() {
let buffered;
let segmentInfo;
loader.mimeType(this.mimeType);
buffered = videojs.createTimeRanges([[0, 60]]);
segmentInfo = loader.checkBuffer_(buffered, playlistWithDuration(60), 0);
QUnit.ok(!segmentInfo, 'no request was made');
});
QUnit.test('stops downloading segments if buffered past reported end of the playlist',
function() {
let buffered;
let segmentInfo;
let playlist;
loader.mimeType(this.mimeType);
buffered = videojs.createTimeRanges([[0, 59.9]]);
playlist = playlistWithDuration(60);
playlist.segments[playlist.segments.length - 1].end = 59.9;
segmentInfo = loader.checkBuffer_(buffered, playlist, 50);
QUnit.ok(!segmentInfo, 'no request was made');
});
QUnit.test('calculates timestampOffset for discontinuities', function() {
let segmentInfo;
let playlist;
loader.mimeType(this.mimeType);
playlist = playlistWithDuration(60);
playlist.segments[3].end = 37.9;
playlist.discontinuityStarts = [4];
playlist.segments[4].discontinuity = true;
playlist.segments[4].timeline = 1;
segmentInfo = loader.checkBuffer_(videojs.createTimeRanges([[0, 37.9]]), playlist, 36);
QUnit.equal(segmentInfo.timestampOffset, 37.9, 'placed the discontinuous segment');
});
QUnit.test('adjusts calculations based on expired time', function() {
let buffered;
let playlist;
let segmentInfo;
loader.mimeType(this.mimeType);
buffered = videojs.createTimeRanges([[0, 30]]);
playlist = playlistWithDuration(50);
loader.expired(10);
segmentInfo = loader.checkBuffer_(buffered,
playlist,
40 - Config.GOAL_BUFFER_LENGTH);
QUnit.ok(segmentInfo, 'fetched a segment');
QUnit.equal(segmentInfo.uri, '2.ts', 'accounted for expired time');
});
QUnit.test('doesn\'t allow more than one monitor buffer timer to be set', function() {
let timeoutCount = this.clock.methods.length;
loader.mimeType(this.mimeType);
loader.monitorBuffer_();
QUnit.equal(this.clock.methods.length, timeoutCount, 'timeout count remains the same');
loader.monitorBuffer_();
QUnit.equal(this.clock.methods.length, timeoutCount, 'timeout count remains the same');
loader.monitorBuffer_();
loader.monitorBuffer_();
QUnit.equal(this.clock.methods.length, timeoutCount, 'timeout count remains the same');
});