Skip to content

Commit

Permalink
test: fix tests on firefox 83 (#1004)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey authored Nov 24, 2020
1 parent fe57e60 commit 00d9b1d
Show file tree
Hide file tree
Showing 7 changed files with 145 additions and 104 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
shell: bash
id: nvm

- name: update apt cache on linux w/o browserstack
run: sudo apt-get update
if: ${{ startsWith(matrix.os, 'ubuntu') && !env.BROWSER_STACK_USERNAME }}

- name: Install ffmpeg/pulseaudio for firefox on linux w/o browserstack
run: sudo apt-get install ffmpeg pulseaudio
if: ${{ startsWith(matrix.os, 'ubuntu') && !env.BROWSER_STACK_USERNAME }}
Expand All @@ -44,6 +48,11 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
# turn off the default setup-node problem watchers...
- run: echo "::remove-matcher owner=eslint-compact::"
- run: echo "::remove-matcher owner=eslint-stylish::"
- run: echo "::remove-matcher owner=tsc::"

- run: npm i --prefer-offline --no-audit

# run safari on macos
Expand Down
9 changes: 9 additions & 0 deletions src/ad-cue-tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ import window from 'global/window';

/**
* Searches for an ad cue that overlaps with the given mediaTime
*
* @param {Object} track
* the track to find the cue for
*
* @param {number} mediaTime
* the time to find the cue at
*
* @return {Object|null}
* the found cue or null
*/
export const findAdCue = function(track, mediaTime) {
const cues = track.cues;
Expand Down
15 changes: 15 additions & 0 deletions src/bin-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*
* @param {TimeRange} range the timerange to use for conversion
* @param {number} i the iterator on the range to convert
* @return {string} the range in string format
*/
const textRange = function(range, i) {
return range.start(i) + '-' + range.end(i);
Expand All @@ -17,6 +18,7 @@ const textRange = function(range, i) {
*
* @param {number} e The number
* @param {number} i the iterator
* @return {string} the hex formatted number as a string
*/
const formatHexString = function(e, i) {
const value = e.toString(16);
Expand Down Expand Up @@ -63,6 +65,11 @@ export const createTransferableMessage = function(message) {
/**
* Returns a unique string identifier for a media initialization
* segment.
*
* @param {Object} initSegment
* the init segment object.
*
* @return {string} the generated init segment id
*/
export const initSegmentId = function(initSegment) {
const byterange = initSegment.byterange || {
Expand All @@ -77,13 +84,21 @@ export const initSegmentId = function(initSegment) {

/**
* Returns a unique string identifier for a media segment key.
*
* @param {Object} key the encryption key
* @return {string} the unique id for the media segment key.
*/
export const segmentKeyId = function(key) {
return key.resolvedUri;
};

/**
* utils to help dump binary data to the console
*
* @param {Array|TypedArray} data
* data to dump to a string
*
* @return {string} the data as a hex string.
*/
export const hexDump = (data) => {
const bytes = Array.prototype.slice.call(data);
Expand Down
5 changes: 3 additions & 2 deletions src/source-updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,9 @@ export default class SourceUpdater extends videojs.EventTarget {
canRemoveSourceBuffer() {
// IE reports that it supports removeSourceBuffer, but often throws
// errors when attempting to use the function. So we report that it
// does not support removeSourceBuffer.
return !videojs.browser.IE_VERSION && window.MediaSource &&
// does not support removeSourceBuffer. As of Firefox 83 removeSourceBuffer
// throws errors, so we report that it does not support this as well.
return !videojs.browser.IE_VERSION && !videojs.browser.IS_FIREFOX && window.MediaSource &&
window.MediaSource.prototype &&
typeof window.MediaSource.prototype.removeSourceBuffer === 'function';
}
Expand Down
162 changes: 84 additions & 78 deletions test/playback.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,6 @@ import '../src/videojs-http-streaming';
import 'videojs-contrib-eme';

const playFor = function(player, time, cb) {
if (player.paused()) {
const playPromise = player.play();

// Catch/silence error when a pause interrupts a play request
// on browsers which return a promise
if (typeof playPromise !== 'undefined' && typeof playPromise.then === 'function') {
playPromise.then(null, (e) => {});
}
}
const targetTime = player.currentTime() + time;

const checkPlayerTime = function() {
Expand All @@ -23,9 +14,21 @@ const playFor = function(player, time, cb) {
return checkPlayerTime();
}
cb();
}, 10);
}, 100);
};

if (player.paused()) {
const playPromise = player.play();

// assert an error on playback failure or check player time after play has started.
if (typeof playPromise !== 'undefined' && typeof playPromise.then === 'function') {
playPromise.then(checkPlayerTime).catch((e) => {
QUnit.assert.notOk(true, 'play promise failed with error', e);
});
return;
}
}

checkPlayerTime();
};

Expand Down Expand Up @@ -218,7 +221,7 @@ QUnit[testFn]('Big Buck Bunny', function(assert) {
});
});

QUnit[testFn]('Big Buck Bunny audio only, groups & renditions same uri', function(assert) {
QUnit[testFn]('Live DASH', function(assert) {
const done = assert.async();

assert.expect(2);
Expand All @@ -232,101 +235,104 @@ QUnit[testFn]('Big Buck Bunny audio only, groups & renditions same uri', functio
});

player.src({
src: 'https://d2zihajmogu5jn.cloudfront.net/audio-only-dupe-groups/prog_index.m3u8',
type: 'application/x-mpegURL'
src: 'https://livesim.dashif.org/livesim/mup_30/testpic_2s/Manifest.mpd',
type: 'application/dash+xml'
});
});

QUnit[testFn]('Big Buck Bunny Demuxed av, audio only rendition same as group', function(assert) {
const done = assert.async();
// These videos don't work on firefox consistenly. Seems like
// firefox has lower performance or more aggressive throttling than chrome
// which causes a variety of issues.
if (!videojs.browser.IS_FIREFOX) {
QUnit[testFn]('Big Buck Bunny audio only, groups & renditions same uri', function(assert) {
const done = assert.async();

assert.expect(2);
const player = this.player;
assert.expect(2);
const player = this.player;

playFor(player, 25, function() {
assert.ok(true, 'played for at least 25 seconds');
assert.equal(player.error(), null, 'has no player errors');
playFor(player, 2, function() {
assert.ok(true, 'played for at least two seconds');
assert.equal(player.error(), null, 'has no player errors');

done();
});
done();
});

player.src({
src: 'https://d2zihajmogu5jn.cloudfront.net/demuxed-ts-with-audio-only-rendition/master.m3u8',
type: 'application/x-mpegURL'
player.src({
src: 'https://d2zihajmogu5jn.cloudfront.net/audio-only-dupe-groups/prog_index.m3u8',
type: 'application/x-mpegURL'
});
});
});

QUnit[testFn]('Live DASH', function(assert) {
const done = assert.async();
QUnit[testFn]('Big Buck Bunny Demuxed av, audio only rendition same as group', function(assert) {
const done = assert.async();

assert.expect(2);
const player = this.player;
assert.expect(2);
const player = this.player;

playFor(player, 2, function() {
assert.ok(true, 'played for at least two seconds');
assert.equal(player.error(), null, 'has no player errors');
playFor(player, 25, function() {
assert.ok(true, 'played for at least 25 seconds');
assert.equal(player.error(), null, 'has no player errors');

done();
});
done();
});

player.src({
src: 'https://livesim.dashif.org/livesim/mup_30/testpic_2s/Manifest.mpd',
type: 'application/dash+xml'
player.src({
src: 'https://d2zihajmogu5jn.cloudfront.net/demuxed-ts-with-audio-only-rendition/master.m3u8',
type: 'application/x-mpegURL'
});
});
});

QUnit[testFn]('DASH sidx', function(assert) {
const done = assert.async();
const player = this.player;
QUnit[testFn]('DASH sidx', function(assert) {
const done = assert.async();
const player = this.player;

playFor(player, 2, function() {
assert.ok(true, 'played for at least two seconds');
assert.equal(player.error(), null, 'no errors');
playFor(player, 2, function() {
assert.ok(true, 'played for at least two seconds');
assert.equal(player.error(), null, 'no errors');

player.one('ended', () => {
assert.ok(true, 'triggered ended event');
done();
});
player.one('ended', () => {
assert.ok(true, 'triggered ended event');
done();
});

// Firefox sometimes won't loop if seeking directly to the duration, or to too close
// to the duration (e.g., 10ms from duration). 100ms seems to work.
player.currentTime(player.duration() - 0.5);
});
// Firefox sometimes won't loop if seeking directly to the duration, or to too close
// to the duration (e.g., 10ms from duration). 100ms seems to work.
player.currentTime(player.duration() - 0.5);
});

player.src({
src: 'https://dash.akamaized.net/dash264/TestCases/10a/1/iis_forest_short_poem_multi_lang_480p_single_adapt_aaclc_sidx.mpd',
type: 'application/dash+xml'
player.src({
src: 'https://dash.akamaized.net/dash264/TestCases/10a/1/iis_forest_short_poem_multi_lang_480p_single_adapt_aaclc_sidx.mpd',
type: 'application/dash+xml'
});
});
});

QUnit[testFn]('DASH sidx with alt audio should end', function(assert) {
const done = assert.async();
const player = this.player;

player.one('ended', () => {
assert.ok(true, 'triggered ended');
assert.equal(player.error(), null, 'no errors');
done();
});
QUnit[testFn]('DASH sidx with alt audio should end', function(assert) {
const done = assert.async();
const player = this.player;

/* eslint-disable max-nested-callbacks */
playFor(player, 1, () => {
// switch audio playlist
player.audioTracks()[1].enabled = true;
player.one('ended', () => {
assert.ok(true, 'triggered ended');
assert.equal(player.error(), null, 'no errors');
done();
});

/* eslint-disable max-nested-callbacks */
playFor(player, 1, () => {
player.currentTime(player.duration() - 5);
// switch audio playlist
player.audioTracks()[1].enabled = true;

playFor(player, 1, () => {
player.currentTime(player.duration() - 5);
});
});
});
/* eslint-enable max-nested-callbacks */
/* eslint-enable max-nested-callbacks */

player.src({
src: 'https://dash.akamaized.net/dash264/TestCases/10a/1/iis_forest_short_poem_multi_lang_480p_single_adapt_aaclc_sidx.mpd',
type: 'application/dash+xml'
player.src({
src: 'https://dash.akamaized.net/dash264/TestCases/10a/1/iis_forest_short_poem_multi_lang_480p_single_adapt_aaclc_sidx.mpd',
type: 'application/dash+xml'
});
});
});

if (!videojs.browser.IS_FIREFOX) {
QUnit[testFn]('DRM Dash', function(assert) {
const done = assert.async();
const player = this.player;
Expand Down
9 changes: 7 additions & 2 deletions test/source-updater.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ const mp4AudioTotal = () => concatSegments(mp4AudioInit(), mp4Audio());

QUnit.module('Source Updater', {
beforeEach() {
const video = document.createElement('video');
this.fixture = document.getElementById('qunit-fixture');
this.video = document.createElement('video');

this.fixture.appendChild(this.video);

this.mediaSource = new window.MediaSource();

// need to attach the real media source to a video element for the media source to
// change to an open ready state
video.src = URL.createObjectURL(this.mediaSource);
this.video.src = URL.createObjectURL(this.mediaSource);
this.sourceUpdater = new SourceUpdater(this.mediaSource);

// wait for the source to open (or error) before running through tests
Expand All @@ -62,6 +65,8 @@ QUnit.module('Source Updater', {

afterEach() {
this.sourceUpdater.dispose();
this.video.src = '';
this.fixture.removeChild(this.video);
}
});

Expand Down
Loading

0 comments on commit 00d9b1d

Please sign in to comment.