mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
78d9fc840a
Issue #1157 Change-Id: I30e39927c70d61f29d45698507b6ba809b33e2f3
100 lines
3.4 KiB
JavaScript
100 lines
3.4 KiB
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('DataUriPlugin', () => {
|
|
const retryParameters = shaka.net.NetworkingEngine.defaultRetryParameters();
|
|
|
|
it('supports MIME types', async () => {
|
|
await testSucceeds('data:text/plain,Hello', 'text/plain', 'Hello');
|
|
});
|
|
|
|
it('supports URI encoded text', async () => {
|
|
await testSucceeds(
|
|
'data:text/html,%3Ch1%3EHello%2C%20World!%3C%2Fh1%3E',
|
|
'text/html',
|
|
'<h1>Hello, World!</h1>');
|
|
});
|
|
|
|
it('supports base64 encoded text', async () => {
|
|
await testSucceeds(
|
|
'data:;base64,SGVsbG8sIFdvcmxkIQ%3D%3D', '', 'Hello, World!');
|
|
});
|
|
|
|
it('supports extra colin', async () => {
|
|
await testSucceeds('data:,Hello:', '', 'Hello:');
|
|
});
|
|
|
|
it('supports extra semi-colin', async () => {
|
|
await testSucceeds('data:,Hello;', '', 'Hello;');
|
|
});
|
|
|
|
it('supports extra comma', async () => {
|
|
await testSucceeds('data:,Hello,', '', 'Hello,');
|
|
});
|
|
|
|
it('fails for empty URI', async () => {
|
|
await testFails('', shaka.util.Error.Code.MALFORMED_DATA_URI);
|
|
});
|
|
|
|
it('fails for non-data URIs', async () => {
|
|
await testFails(
|
|
'http://google.com/', shaka.util.Error.Code.MALFORMED_DATA_URI);
|
|
});
|
|
|
|
it('fails for decoding errors', async () => {
|
|
await testFails('data:Bad%', shaka.util.Error.Code.MALFORMED_DATA_URI);
|
|
});
|
|
|
|
it('fails if missing comma', async () => {
|
|
await testFails('data:Bad', shaka.util.Error.Code.MALFORMED_DATA_URI);
|
|
});
|
|
|
|
async function testSucceeds(uri, contentType, text) {
|
|
// An arbitrary request type.
|
|
const requestType = shaka.net.NetworkingEngine.RequestType.SEGMENT;
|
|
// A dummy progress callback.
|
|
const progressUpdated = (elapsedMs, bytes, bytesRemaining) => {};
|
|
const request =
|
|
shaka.net.NetworkingEngine.makeRequest([uri], retryParameters);
|
|
const response = await shaka.net.DataUriPlugin.parse(
|
|
uri, request, requestType, progressUpdated).promise;
|
|
expect(response).toBeTruthy();
|
|
expect(response.uri).toBe(uri);
|
|
expect(response.data).toBeTruthy();
|
|
expect(response.headers['content-type']).toBe(contentType);
|
|
const data =
|
|
shaka.util.StringUtils.fromBytesAutoDetect(response.data);
|
|
expect(data).toBe(text);
|
|
}
|
|
|
|
async function testFails(uri, code) {
|
|
// An arbitrary request type.
|
|
const requestType = shaka.net.NetworkingEngine.RequestType.SEGMENT;
|
|
// A dummy progress callback.
|
|
const progressUpdated = (elapsedMs, bytes, bytesRemaining) => {};
|
|
const request =
|
|
shaka.net.NetworkingEngine.makeRequest([uri], retryParameters);
|
|
const expected = shaka.test.Util.jasmineError(new shaka.util.Error(
|
|
shaka.util.Error.Severity.CRITICAL, shaka.util.Error.Category.NETWORK,
|
|
code, uri));
|
|
await expectAsync(
|
|
shaka.net.DataUriPlugin.parse(
|
|
uri, request, requestType, progressUpdated).promise)
|
|
.toBeRejectedWith(expected);
|
|
}
|
|
});
|