m3u8_test.js
26 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
(function(window) {
var
Handlebars = this.Handlebars,
manifestController = this.manifestController,
m3u8parser;
module('environment');
test('is sane', function() {
expect(1);
ok(true);
});
/*
Manfiest controller
*/
module('manifest controller', {
setup: function() {
manifestController = new window.videojs.hls.ManifestController();
this.vjsget = window.videojs.get;
window.videojs.get = function(url, success) {
success(window.brightcove_playlist_data);
};
},
teardown: function() {
window.videojs.get = this.vjsget;
}
});
test('should create', function() {
ok(manifestController);
});
test('should return a parsed object', function() {
var data = manifestController.parseManifest(window.brightcove_playlist_data);
ok(data);
equal(data.playlistItems.length, 4, 'Has correct rendition count');
equal(data.playlistItems[0].bandwidth, 240000, 'First rendition index bandwidth is correct');
equal(data.playlistItems[0]["program-id"], 1, 'First rendition index program-id is correct');
equal(data.playlistItems[0].resolution.width, 396, 'First rendition index resolution width is correct');
equal(data.playlistItems[0].resolution.height, 224, 'First rendition index resolution height is correct');
});
test('should get a manifest from hermes', function() {
manifestController.loadManifest('http://example.com/16x9-master.m3u8',
function(responseData) {
ok(responseData);
},
function() {
ok(false, 'does not error');
},
function() {});
});
/*
M3U8 Test Suite
*/
module('m3u8 parser', {
setup: function() {
m3u8parser = new window.videojs.hls.M3U8Parser();
}
});
test('should create my parser', function() {
ok(m3u8parser !== undefined);
});
test('should successfully parse manifest data', function() {
var parsedData = m3u8parser.parse(window.playlistData);
ok(parsedData);
});
test('valid manifest should populate the manifest data object', function() {
var data = m3u8parser.parse(window.playlistData);
notEqual(data, null, 'data is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.hasValidM3UTag, true, 'data has valid EXTM3U');
equal(data.targetDuration, 10, 'data has correct TARGET DURATION');
equal(data.allowCache, "NO", 'acceptable ALLOW CACHE');
equal(data.isPlaylist, false, 'data is parsed as a PLAYLIST as expected');
equal(data.playlistType, "VOD", 'acceptable PLAYLIST TYPE');
equal(data.mediaItems.length, 16, 'acceptable mediaItem count');
equal(data.mediaSequence, 0, 'MEDIA SEQUENCE is correct');
equal(data.totalDuration, -1, "ZEN TOTAL DURATION is unknown as expected");
equal(data.hasEndTag, true, 'should have ENDLIST tag');
});
/*3.4.7. EXT-X-PLAYLIST-TYPE
The EXT-X-PLAYLIST-TYPE tag provides mutability information about the
Playlist file. It applies to the entire Playlist file. It is
OPTIONAL. Its format is:
#EXT-X-PLAYLIST-TYPE:<EVENT|VOD>
Section 6.2.1 defines the implications of the EXT-X-PLAYLIST-TYPE
tag.
The EXT-X-PLAYLIST-TYPE tag MUST NOT appear in a Master Playlist.
*/
test('should have parsed VOD playlist type', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_type_template),
testData = {playlistType: 'VOD'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.playlistType, "VOD", 'acceptable PLAYLIST TYPE');
});
test('should have parsed EVENT playlist type', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_type_template),
testData = {playlistType: 'EVENT'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.playlistType, "EVENT", 'acceptable PLAYLIST TYPE');
});
test('should have assumed VOD playlist type if not defined', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_type_template),
testData = {},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.warnings, 'EXT-X-PLAYLIST-TYPE was empty or missing. Assuming VOD');
equal(data.playlistType, "VOD", 'acceptable PLAYLIST TYPE');
});
test('should have an invalid reason due to invalid playlist type', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_type_template),
testData = {playlistType: 'baklsdhfajsdf'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Playlist Type Value: \'baklsdhfajsdf\'');
});
test('should have assumed VOD playlist type is empty', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_type_template),
testData = {playlistType: ''},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.warnings, 'EXT-X-PLAYLIST-TYPE was empty or missing. Assuming VOD');
equal(data.playlistType, "VOD", 'acceptable PLAYLIST TYPE');
});
/*3.4.2. EXT-X-TARGETDURATION
The EXT-X-TARGETDURATION tag specifies the maximum media segment
duration. The EXTINF duration of each media segment in the Playlist
file, when rounded to the nearest integer, MUST be less than or equal
to the target duration. This tag MUST appear once in a Media
Playlist file. It applies to the entire Playlist file. Its format
is:
#EXT-X-TARGETDURATION:<s>
where s is a decimal-integer indicating the target duration in
seconds.
The EXT-X-TARGETDURATION tag MUST NOT appear in a Master Playlist.
*/
test('valid target duration', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_target_duration_template),
testData = {targetDuration: '10'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
equal(data.targetDuration, 10, 'data has correct TARGET DURATION');
equal(data.invalidReasons.length, 0, 'data has 1 invalid reasons');
});
test('NaN target duration', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_target_duration_template),
testData = {targetDuration: 'string'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
console.log(playlistData);
console.log(data.targetDuration);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 0 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Target Duration Value: \'NaN\'');
});
test('empty target duration', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_target_duration_template),
testData = {targetDuration: '\'\''},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
console.log(playlistData);
console.log(data.targetDuration);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Target Duration Value: \'NaN\'');
});
test('undefined target duration', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_target_duration_template),
testData = {},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
console.log(playlistData);
console.log(data.targetDuration);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Target Duration Value: \'undefined\'');
});
test('target duration lower than segment', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_target_duration_template),
testData = {targetDuration: '4'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Target Duration Value: 4 is lower than segments');
});
/*3.4.3. EXT-X-MEDIA-SEQUENCE
Each media segment in a Playlist has a unique integer sequence
number. The sequence number of a segment is equal to the sequence
number of the segment that preceded it plus one. The EXT-X-MEDIA-
SEQUENCE tag indicates the sequence number of the first segment that
appears in a Playlist file. Its format is:
#EXT-X-MEDIA-SEQUENCE:<number>
where number is a decimal-integer. The sequence number MUST NOT
decrease.
A Media Playlist file MUST NOT contain more than one EXT-X-MEDIA-
SEQUENCE tag. If the Media Playlist file does not contain an EXT-X-
MEDIA-SEQUENCE tag then the sequence number of the first segment in
the playlist SHALL be considered to be 0. A client MUST NOT assume
that segments with the same sequence number in different Media
Playlists contain matching content.
A media URI is not required to contain its sequence number.
*/
test('media sequence is valid in the playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_media_sequence_template),
testData = {mediaSequence: '0'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.mediaSequence, 0, 'MEDIA SEQUENCE is correct');
});
test('media sequence is encountered twice in the playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_media_sequence_template),
testData = {mediaSequence: '0', mediaSequence1: '1'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.mediaSequence, 0, 'MEDIA SEQUENCE tags after the first should be ignored');
});
test('media sequence is undefined in the playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_media_sequence_template),
testData = {mediaSequence: ''},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.mediaSequence, 0, 'MEDIA SEQUENCE should default to 0 when not present.');
});
test('media sequence is empty in the playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_media_sequence_template),
testData = {mediaSequence: ''},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.mediaSequence, 0, 'Invalid Media Sequence Value: \'\'');
});
test('media sequence is high (non-zero in first file) in the playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_media_sequence_template),
testData = {mediaSequence: '1'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Media Sequence Value: \'1\'');
});
test('media sequence (-1) in the playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_media_sequence_template),
testData = {mediaSequence: '-1'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Media Sequence Value: \'-1\'');
});
test('media sequence invalid (string) in the playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_media_sequence_template),
testData = {mediaSequence: 'asdfkasdkfl'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Media Sequence Value: \'asdfkasdkfl\'');
});
module('brightcove playlist', {
setup: function() {
m3u8parser = new window.videojs.hls.M3U8Parser();
}
});
test('should parse a brightcove manifest data', function() {
var data = m3u8parser.parse(window.brightcove_playlist_data);
ok(data);
equal(data.playlistItems.length, 4, 'Has correct rendition count');
equal(data.isPlaylist, true, 'data is parsed as a PLAYLIST as expected');
equal(data.playlistItems[0].bandwidth, 240000, 'First rendition index bandwidth is correct');
equal(data.playlistItems[0]["program-id"], 1, 'First rendition index program-id is correct');
equal(data.playlistItems[0].resolution.width, 396, 'First rendition index resolution width is correct');
equal(data.playlistItems[0].resolution.height, 224, 'First rendition index resolution height is correct');
});
/*3.3.2. EXTINF
The EXTINF tag specifies the duration of a media segment. It applies
only to the media segment that follows it, and MUST be followed by a
media segment URI. Each media segment MUST be preceded by an EXTINF
tag. Its format is:
#EXTINF:<duration>,<title>
where duration is an decimal-integer or decimal-floating-point number
that specifies the duration of the media segment in seconds.
Durations that are reported as integers SHOULD be rounded to the
nearest integer. Durations MUST be integers if the protocol version
of the Playlist file is less than 3. Durations SHOULD be floating-
point if the version is equal to or greater than 3. The remainder of
the line following the comma is an optional human-readable
informative title of the media segment.
The EXTINF duration of each media segment in the Playlist
file, when rounded to the nearest integer, MUST be less than or equal
to the target duration.
*/
test('test valid extinf values in playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_extinf_template),
testData = {version: 4, extInf: '10', extInf1: '10', extInf2: '10', segment: 'hls_450k_video.ts'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
});
test('test valid extinf without associated segment in playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_extinf_template),
testData = {version: 4, extInf: '10', extInf1: '10', extInf2: '10'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
//equal(data.invalidReasons[0], 'Invalid Segment Data: \'#EXTINF missing segment\'');
});
//
test('test invalid extinf values in playlist', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_extinf_template),
testData = {version: 4, extInf: 'asdf', extInf1: '10', extInf2: '10', segment: 'hls_450k_video.ts'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
});
//its best practice that every extinf have the same value, but its not required
test('test inconsistent extinf values in playlist below target duration', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_extinf_template),
testData = {version: 4, extInf: '10', extInf1: '7', extInf2: '10', segment: 'hls_450k_video.ts'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
});
//extinf values must be below the target duration
test('test inconsistent extinf values in playlist above target duration', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_extinf_template),
testData = {version: 4, extInf: '10', extInf1: '7', extInf2: '10', segment: 'hls_450k_video.ts'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Segment Data: \'#EXTINF value higher than #TARGETDURATION\'');
});
//extinf values must be below the target duration
test('test floating-point values not accepted with version 3', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_extinf_template),
testData = {version: 3, extInf: '10.5', extInf1: '10.5', extInf2: '10.5', segment: 'hls_450k_video.ts'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Segment Data: \'#EXTINF value not an integer\'');
});
//extinf values must be below the target duration
test('test floating-point values accepted with version 4', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_extinf_template),
testData = {version: 4, extInf: '10.5', extInf1: '10.5', extInf2: '10.5', segment: 'hls_450k_video.ts'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
});
//extinf values must be below the target duration
test('test empty EXTINF values', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_extinf_template),
testData = {version: 4, extInf: '', extInf1: '10.5', extInf2: '10.5', segment: 'hls_450k_video.ts'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid Segment Data: \'#EXTINF value empty\'');
});
/*
3.3.6. EXT-X-ALLOW-CACHE
The EXT-X-ALLOW-CACHE tag indicates whether the client MAY or MUST
NOT cache downloaded media segments for later replay. It MAY occur
anywhere in the Playlist file; it MUST NOT occur more than once. The
EXT-X-ALLOW-CACHE tag applies to all segments in the playlist. Its
format is:
#EXT-X-ALLOW-CACHE:<YES|NO>
*/
test('test EXT-X-ALLOW-CACHE YES', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_allow_cache),
testData = {version: 4, allowCache: 'YES'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.allowCache, 'YES', 'EXT-X-ALLOW-CACHE should be YES');
});
test('test EXT-X-ALLOW-CACHE NO', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_allow_cache),
testData = {version: 4, allowCache: 'NO'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should not be empty.');
equal(data.allowCache, 'NO', 'EXT-X-ALLOW-CACHE should be NO');
});
test('test EXT-X-ALLOW-CACHE invalid, default to YES', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_allow_cache),
testData = {version: 4, allowCache: 'YESTERDAYNO'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid EXT-X-ALLOW-CACHE value: \'YESTERDAYNO\'');
equal(data.allowCache, 'YES', 'EXT-X-ALLOW-CACHE should default to YES.');
});
test('test EXT-X-ALLOW-CACHE empty, default to YES', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_allow_cache),
testData = {version: 4, allowCache: ''},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'data has 1 invalid reasons');
equal(data.invalidReasons[0], 'Invalid EXT-X-ALLOW-CACHE value: \'\'');
equal(data.allowCache, 'YES', 'EXT-X-ALLOW-CACHE should default to YES.');
});
test('test EXT-X-ALLOW-CACHE missing, default to YES', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_allow_cache),
testData = {version: 4},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 1, 'No EXT-X-ALLOW-CACHE specified. Default: YES.');
equal(data.allowCache, 'YES', 'EXT-X-ALLOW-CACHE should default to YES');
});
test('test EXT-X-BYTERANGE valid', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_byte_range),
testData = {version: 4, byteRange: '522828,0', byteRange1: '587500,522828', byteRange2: '44556,8353216'},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
notEqual(data.invalidReasons, null, 'invalidReasons is not NULL');
equal(data.invalidReasons.length, 0, 'Errors object should be empty.');
//TODO: Validate the byteRange info
equal(data.mediaItems.length, 16, '16 segments should have been parsed.');
equal(data.mediaItems[0].byterange, testData.byteRange, 'byteRange incorrect.');
equal(data.mediaItems[1].byterange, testData.byteRange1, 'byteRange1 incorrect.');
equal(data.mediaItems[15].byterange, testData.byteRange2, 'byteRange2 incorrect.');
});
test('test EXT-X-BYTERANGE used but version is < 4', function() {
var
playlistTemplate = Handlebars.compile(window.playlist_byte_range),
testData = {version: 3, byteRange: ['522828,0'], byteRange1: ['587500,522828'], byteRange2: ['44556,8353216']},
playlistData = playlistTemplate(testData),
data = m3u8parser.parse(playlistData);
notEqual(data, null, 'data is not NULL');
equal(data.mediaItems.length, 16, '16 segments should have been parsed.');
notEqual(data.invalidReasons, null, 'there should be an error');
equal(data.invalidReasons.length, 1, 'there should be 1 error');
//TODO: Validate the byteRange info
equal(data.invalidReasons[0], 'EXT-X-BYTERANGE used but version is < 4.')
});
})(this);