1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 14:48:08 +02:00
pdf.js/test/unit/fetch_stream_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

150 lines
4.7 KiB
JavaScript
Raw Permalink Normal View History

2019-04-07 02:21:46 +02:00
/* Copyright 2019 Mozilla Foundation
*
* 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.
*/
import { AbortException } from "../../src/shared/util.js";
import { PDFFetchStream } from "../../src/display/fetch_stream.js";
import { testCrossOriginRedirects } from "./common_pdfstream_tests.js";
import { TestPdfsServer } from "./test_utils.js";
2019-04-07 02:21:46 +02:00
describe("fetch_stream", function () {
function getPdfUrl() {
return TestPdfsServer.resolveURL("tracemonkey.pdf").href;
}
2019-04-07 02:21:46 +02:00
const pdfLength = 1016315;
beforeAll(async function () {
await TestPdfsServer.ensureStarted();
});
afterAll(async function () {
await TestPdfsServer.ensureStopped();
});
it("read with streaming", async function () {
2019-04-07 02:21:46 +02:00
const stream = new PDFFetchStream({
url: getPdfUrl(),
2019-04-07 02:21:46 +02:00
disableStream: false,
disableRange: true,
});
const fullReader = stream.getFullReader();
let isStreamingSupported, isRangeSupported;
await fullReader.headersReady.then(function () {
2019-04-07 02:21:46 +02:00
isStreamingSupported = fullReader.isStreamingSupported;
isRangeSupported = fullReader.isRangeSupported;
});
let len = 0;
const read = function () {
return fullReader.read().then(function (result) {
2019-04-07 02:21:46 +02:00
if (result.done) {
return undefined;
2019-04-07 02:21:46 +02:00
}
len += result.value.byteLength;
return read();
});
};
await read();
expect(len).toEqual(pdfLength);
expect(isStreamingSupported).toEqual(true);
expect(isRangeSupported).toEqual(false);
2019-04-07 02:21:46 +02:00
});
it("read ranges with streaming", async function () {
2019-04-07 02:21:46 +02:00
const rangeSize = 32768;
const stream = new PDFFetchStream({
url: getPdfUrl(),
2019-04-07 02:21:46 +02:00
rangeChunkSize: rangeSize,
disableStream: false,
disableRange: false,
});
const fullReader = stream.getFullReader();
let isStreamingSupported, isRangeSupported, fullReaderCancelled;
await fullReader.headersReady.then(function () {
2019-04-07 02:21:46 +02:00
isStreamingSupported = fullReader.isStreamingSupported;
isRangeSupported = fullReader.isRangeSupported;
// We shall be able to close full reader without any issue.
fullReader.cancel(new AbortException("Don't need fullReader."));
2019-04-07 02:21:46 +02:00
fullReaderCancelled = true;
});
const tailSize = pdfLength % rangeSize || rangeSize;
const rangeReader1 = stream.getRangeReader(
pdfLength - tailSize - rangeSize,
pdfLength - tailSize
);
const rangeReader2 = stream.getRangeReader(pdfLength - tailSize, pdfLength);
const result1 = { value: 0 },
2019-04-07 02:21:46 +02:00
result2 = { value: 0 };
const read = function (reader, lenResult) {
return reader.read().then(function (result) {
2019-04-07 02:21:46 +02:00
if (result.done) {
return undefined;
2019-04-07 02:21:46 +02:00
}
lenResult.value += result.value.byteLength;
return read(reader, lenResult);
});
};
await Promise.all([
2019-04-07 02:21:46 +02:00
read(rangeReader1, result1),
read(rangeReader2, result2),
]);
expect(isStreamingSupported).toEqual(true);
expect(isRangeSupported).toEqual(true);
expect(fullReaderCancelled).toEqual(true);
expect(result1.value).toEqual(rangeSize);
expect(result2.value).toEqual(tailSize);
2019-04-07 02:21:46 +02:00
});
describe("Redirects", function () {
it("redirects allowed if all responses are same-origin", async function () {
await testCrossOriginRedirects({
PDFStreamClass: PDFFetchStream,
redirectIfRange: false,
async testRangeReader(rangeReader) {
await expectAsync(rangeReader.read()).toBeResolved();
},
});
});
it("redirects blocked if any response is cross-origin", async function () {
await testCrossOriginRedirects({
PDFStreamClass: PDFFetchStream,
redirectIfRange: true,
async testRangeReader(rangeReader) {
// When read (sync), error should be reported.
await expectAsync(rangeReader.read()).toBeRejectedWithError(
/^Expected range response-origin "http:.*" to match "http:.*"\.$/
);
// When read again (async), error should be consistent.
await expectAsync(rangeReader.read()).toBeRejectedWithError(
/^Expected range response-origin "http:.*" to match "http:.*"\.$/
);
},
});
});
});
2019-04-07 02:21:46 +02:00
});