shaka-player
Version:
DASH/EME video player library
253 lines (206 loc) • 7.67 kB
JavaScript
/**
* @license
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
describe('OfflineManifestParser', function() {
// The offline manifest parser does not need the player interface, so
// this is a work around to avoid creating one.
const playerInterface =
/** @type {shaka.extern.ManifestParser.PlayerInterface} */({});
// A session id that will be found in the manifest created by |makeManifest|.
const sessionId = 'session-id';
/** @type {!shaka.offline.OfflineManifestParser} */
let parser;
beforeEach(checkAndRun(async function() {
// Make sure we start with a clean slate.
await clearStorage();
parser = new shaka.offline.OfflineManifestParser();
}));
afterEach(checkAndRun(async function() {
parser.stop();
// Make sure that we don't waste storage by leaving stuff in storage.
await clearStorage();
}));
it('returns manifest from storage', checkAndRun(async function() {
let inputManifest = makeManifest();
/** @type {!shaka.offline.OfflineUri} */
let uri;
/** @type {!shaka.offline.StorageMuxer} */
const muxer = new shaka.offline.StorageMuxer();
try {
await muxer.init();
let handle = await muxer.getActive();
let keys = await handle.cell.addManifests([inputManifest]);
uri = shaka.offline.OfflineUri.manifest(
handle.path.mechanism, handle.path.cell, keys[0]);
} finally {
await muxer.destroy();
}
let outputManifest = await parser.start(uri.toString(), playerInterface);
expect(outputManifest).toBeTruthy();
}));
it('updates expiration', checkAndRun(async function() {
const newExpiration = 1000;
let inputManifest = makeManifest();
// Make sure that the expiration is different from the new expiration
// so that when we check that they are the same later, it actually
// means that it changed.
expect(inputManifest.expiration).not.toBe(newExpiration);
/** @type {!shaka.offline.StorageMuxer} */
const muxer = new shaka.offline.StorageMuxer();
try {
await muxer.init();
let handle = await muxer.getActive();
let keys = await handle.cell.addManifests([inputManifest]);
/** @type {!shaka.offline.OfflineUri} */
let uri = shaka.offline.OfflineUri.manifest(
handle.path.mechanism, handle.path.cell, keys[0]);
await parser.start(uri.toString(), playerInterface);
await parser.onExpirationUpdated(sessionId, newExpiration);
let found = await handle.cell.getManifests(keys);
expect(found[0].expiration).toBe(newExpiration);
} finally {
await muxer.destroy();
}
}));
it('fails if manifest was not found', checkAndRun(async function() {
let inputManifest = makeManifest();
/** @type {!shaka.offline.OfflineUri} */
let uri;
/** @type {!shaka.offline.StorageMuxer} */
const muxer = new shaka.offline.StorageMuxer();
try {
await muxer.init();
let handle = await muxer.getActive();
let keys = await handle.cell.addManifests([inputManifest]);
uri = shaka.offline.OfflineUri.manifest(
handle.path.mechanism, handle.path.cell, keys[0]);
// Remove the manifest so that the uri will point to nothing.
const noop = () => {};
await handle.cell.removeManifests(keys, noop);
} finally {
await muxer.destroy();
}
try {
await parser.start(uri.toString(), playerInterface);
} catch (e) {
expect(e.code).toBe(shaka.util.Error.Code.KEY_NOT_FOUND);
}
}));
it('fails for invalid URI', checkAndRun(async function() {
const uri = 'this-is-an-invalid-uri';
try {
await parser.start(uri, playerInterface);
fail();
} catch (e) {
expect(e.code).toBe(shaka.util.Error.Code.MALFORMED_OFFLINE_URI);
}
}));
it('ignores update expiration when data is deleted',
checkAndRun(async function() {
const newExpiration = 1000;
let inputManifest = makeManifest();
/** @type {!shaka.offline.StorageMuxer} */
const muxer = new shaka.offline.StorageMuxer();
try {
await muxer.init();
let handle = await muxer.getActive();
let keys = await handle.cell.addManifests([inputManifest]);
let uri = shaka.offline.OfflineUri.manifest(
handle.path.mechanism, handle.path.cell, keys[0]);
await parser.start(uri.toString(), playerInterface);
// Remove the manifest after we have parsed it so that the
// update won't find it. Oh, we are sneaky.
const noop = () => {};
await handle.cell.removeManifests(keys, noop);
await parser.onExpirationUpdated(sessionId, newExpiration);
} finally {
await muxer.destroy();
}
}));
it('ignores update expiration with unknown session',
checkAndRun(async function() {
const wrongSession = 'this-session-wont-be-found';
const newExpiration = 1000;
let inputManifest = makeManifest();
let oldExpiration = inputManifest.expiration;
// Make sure that the expirations are not the same.
expect(oldExpiration).not.toBe(newExpiration);
/** @type {!shaka.offline.StorageMuxer} */
const muxer = new shaka.offline.StorageMuxer();
try {
await muxer.init();
let handle = await muxer.getActive();
let keys = await handle.cell.addManifests([inputManifest]);
let uri = shaka.offline.OfflineUri.manifest(
handle.path.mechanism, handle.path.cell, keys[0]);
await parser.start(uri.toString(), playerInterface);
await parser.onExpirationUpdated(wrongSession, newExpiration);
// Make sure that the expiration was not updated.
let found = await handle.cell.getManifests(keys);
expect(found[0].expiration).toBe(oldExpiration);
} finally {
await muxer.destroy();
}
}));
/**
* @return {!shaka.extern.ManifestDB}
*/
function makeManifest() {
const mb = 1024 * 1024;
const seconds = 1.0;
/** @type {shaka.extern.ManifestDB} */
let manifest = {
originalManifestUri: '',
duration: 600 * seconds,
size: 100 * mb,
expiration: Infinity,
periods: [],
sessionIds: [sessionId],
drmInfo: null,
appMetadata: {},
};
return manifest;
}
/**
* @return {!Promise}
*/
async function clearStorage() {
/** @type {!shaka.offline.StorageMuxer} */
const muxer = new shaka.offline.StorageMuxer();
try {
await muxer.erase();
} finally {
await muxer.destroy();
}
}
/**
* Before running the test, check if storage is supported on this
* platform.
*
* @param {function():!Promise} test
* @return {function():!Promise}
*/
function checkAndRun(test) {
return async () => {
let hasSupport = shaka.offline.StorageMuxer.support();
if (hasSupport) {
await test();
} else {
pending('Storage is not supported on this platform.');
}
};
}
});