mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
[api-minor] Only support the Fetch API for "remote" PDF documents in Node.js environments
The Fetch API has been supported since Node.js version 18, see https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API#browser_compatibility
This commit is contained in:
parent
c7407230c1
commit
cbf0ca71bf
3 changed files with 57 additions and 226 deletions
|
@ -14,7 +14,6 @@
|
|||
*/
|
||||
|
||||
import { AbortException, isNodeJS } from "../../src/shared/util.js";
|
||||
import { createTemporaryNodeServer } from "./test_utils.js";
|
||||
import { PDFNodeStream } from "../../src/display/node_stream.js";
|
||||
|
||||
// Ensure that these tests only run in Node.js environments.
|
||||
|
@ -25,96 +24,48 @@ if (!isNodeJS) {
|
|||
}
|
||||
|
||||
describe("node_stream", function () {
|
||||
let tempServer = null;
|
||||
|
||||
const url = process.getBuiltinModule("url");
|
||||
const cwdURL = url.pathToFileURL(process.cwd()) + "/";
|
||||
const pdf = new URL("./test/pdfs/tracemonkey.pdf", cwdURL).href;
|
||||
const pdfLength = 1016315;
|
||||
|
||||
beforeAll(function () {
|
||||
tempServer = createTemporaryNodeServer();
|
||||
});
|
||||
|
||||
afterAll(function () {
|
||||
// Close the server from accepting new connections after all test finishes.
|
||||
const { server } = tempServer;
|
||||
server.close();
|
||||
|
||||
tempServer = null;
|
||||
});
|
||||
|
||||
it("read both http(s) and filesystem pdf files", async function () {
|
||||
const stream1 = new PDFNodeStream({
|
||||
url: `http://127.0.0.1:${tempServer.port}/tracemonkey.pdf`,
|
||||
rangeChunkSize: 65536,
|
||||
disableStream: true,
|
||||
disableRange: true,
|
||||
});
|
||||
|
||||
const stream2 = new PDFNodeStream({
|
||||
it("read filesystem pdf files", async function () {
|
||||
const stream = new PDFNodeStream({
|
||||
url: pdf,
|
||||
rangeChunkSize: 65536,
|
||||
disableStream: true,
|
||||
disableRange: true,
|
||||
});
|
||||
|
||||
const fullReader1 = stream1.getFullReader();
|
||||
const fullReader2 = stream2.getFullReader();
|
||||
const fullReader = stream.getFullReader();
|
||||
|
||||
let isStreamingSupported1, isRangeSupported1;
|
||||
const promise1 = fullReader1.headersReady.then(() => {
|
||||
isStreamingSupported1 = fullReader1.isStreamingSupported;
|
||||
isRangeSupported1 = fullReader1.isRangeSupported;
|
||||
let isStreamingSupported, isRangeSupported;
|
||||
const promise = fullReader.headersReady.then(() => {
|
||||
isStreamingSupported = fullReader.isStreamingSupported;
|
||||
isRangeSupported = fullReader.isRangeSupported;
|
||||
});
|
||||
|
||||
let isStreamingSupported2, isRangeSupported2;
|
||||
const promise2 = fullReader2.headersReady.then(() => {
|
||||
isStreamingSupported2 = fullReader2.isStreamingSupported;
|
||||
isRangeSupported2 = fullReader2.isRangeSupported;
|
||||
});
|
||||
|
||||
let len1 = 0,
|
||||
len2 = 0;
|
||||
const read1 = function () {
|
||||
return fullReader1.read().then(function (result) {
|
||||
let len = 0;
|
||||
const read = function () {
|
||||
return fullReader.read().then(function (result) {
|
||||
if (result.done) {
|
||||
return undefined;
|
||||
}
|
||||
len1 += result.value.byteLength;
|
||||
return read1();
|
||||
});
|
||||
};
|
||||
const read2 = function () {
|
||||
return fullReader2.read().then(function (result) {
|
||||
if (result.done) {
|
||||
return undefined;
|
||||
}
|
||||
len2 += result.value.byteLength;
|
||||
return read2();
|
||||
len += result.value.byteLength;
|
||||
return read();
|
||||
});
|
||||
};
|
||||
|
||||
await Promise.all([read1(), read2(), promise1, promise2]);
|
||||
await Promise.all([read(), promise]);
|
||||
|
||||
expect(isStreamingSupported1).toEqual(false);
|
||||
expect(isRangeSupported1).toEqual(false);
|
||||
expect(isStreamingSupported2).toEqual(false);
|
||||
expect(isRangeSupported2).toEqual(false);
|
||||
expect(len1).toEqual(pdfLength);
|
||||
expect(len1).toEqual(len2);
|
||||
expect(isStreamingSupported).toEqual(false);
|
||||
expect(isRangeSupported).toEqual(false);
|
||||
expect(len).toEqual(pdfLength);
|
||||
});
|
||||
|
||||
it("read custom ranges for both http(s) and filesystem urls", async function () {
|
||||
it("read custom ranges for filesystem urls", async function () {
|
||||
const rangeSize = 32768;
|
||||
const stream1 = new PDFNodeStream({
|
||||
url: `http://127.0.0.1:${tempServer.port}/tracemonkey.pdf`,
|
||||
length: pdfLength,
|
||||
rangeChunkSize: rangeSize,
|
||||
disableStream: true,
|
||||
disableRange: false,
|
||||
});
|
||||
const stream2 = new PDFNodeStream({
|
||||
const stream = new PDFNodeStream({
|
||||
url: pdf,
|
||||
length: pdfLength,
|
||||
rangeChunkSize: rangeSize,
|
||||
|
@ -122,53 +73,28 @@ describe("node_stream", function () {
|
|||
disableRange: false,
|
||||
});
|
||||
|
||||
const fullReader1 = stream1.getFullReader();
|
||||
const fullReader2 = stream2.getFullReader();
|
||||
const fullReader = stream.getFullReader();
|
||||
|
||||
let isStreamingSupported1, isRangeSupported1, fullReaderCancelled1;
|
||||
let isStreamingSupported2, isRangeSupported2, fullReaderCancelled2;
|
||||
|
||||
const promise1 = fullReader1.headersReady.then(function () {
|
||||
isStreamingSupported1 = fullReader1.isStreamingSupported;
|
||||
isRangeSupported1 = fullReader1.isRangeSupported;
|
||||
let isStreamingSupported, isRangeSupported, fullReaderCancelled;
|
||||
const promise = fullReader.headersReady.then(function () {
|
||||
isStreamingSupported = fullReader.isStreamingSupported;
|
||||
isRangeSupported = fullReader.isRangeSupported;
|
||||
// we shall be able to close the full reader without issues
|
||||
fullReader1.cancel(new AbortException("Don't need fullReader1."));
|
||||
fullReaderCancelled1 = true;
|
||||
});
|
||||
|
||||
const promise2 = fullReader2.headersReady.then(function () {
|
||||
isStreamingSupported2 = fullReader2.isStreamingSupported;
|
||||
isRangeSupported2 = fullReader2.isRangeSupported;
|
||||
fullReader2.cancel(new AbortException("Don't need fullReader2."));
|
||||
fullReaderCancelled2 = true;
|
||||
fullReader.cancel(new AbortException("Don't need fullReader."));
|
||||
fullReaderCancelled = true;
|
||||
});
|
||||
|
||||
// Skipping fullReader results, requesting something from the PDF end.
|
||||
const tailSize = pdfLength % rangeSize || rangeSize;
|
||||
|
||||
const range11Reader = stream1.getRangeReader(
|
||||
const range1Reader = stream.getRangeReader(
|
||||
pdfLength - tailSize - rangeSize,
|
||||
pdfLength - tailSize
|
||||
);
|
||||
const range12Reader = stream1.getRangeReader(
|
||||
pdfLength - tailSize,
|
||||
pdfLength
|
||||
);
|
||||
|
||||
const range21Reader = stream2.getRangeReader(
|
||||
pdfLength - tailSize - rangeSize,
|
||||
pdfLength - tailSize
|
||||
);
|
||||
const range22Reader = stream2.getRangeReader(
|
||||
pdfLength - tailSize,
|
||||
pdfLength
|
||||
);
|
||||
|
||||
const result11 = { value: 0 },
|
||||
result12 = { value: 0 };
|
||||
const result21 = { value: 0 },
|
||||
result22 = { value: 0 };
|
||||
const range2Reader = stream.getRangeReader(pdfLength - tailSize, pdfLength);
|
||||
|
||||
const result1 = { value: 0 },
|
||||
result2 = { value: 0 };
|
||||
const read = function (reader, lenResult) {
|
||||
return reader.read().then(function (result) {
|
||||
if (result.done) {
|
||||
|
@ -180,23 +106,15 @@ describe("node_stream", function () {
|
|||
};
|
||||
|
||||
await Promise.all([
|
||||
read(range11Reader, result11),
|
||||
read(range12Reader, result12),
|
||||
read(range21Reader, result21),
|
||||
read(range22Reader, result22),
|
||||
promise1,
|
||||
promise2,
|
||||
read(range1Reader, result1),
|
||||
read(range2Reader, result2),
|
||||
promise,
|
||||
]);
|
||||
|
||||
expect(result11.value).toEqual(rangeSize);
|
||||
expect(result12.value).toEqual(tailSize);
|
||||
expect(result21.value).toEqual(rangeSize);
|
||||
expect(result22.value).toEqual(tailSize);
|
||||
expect(isStreamingSupported1).toEqual(false);
|
||||
expect(isRangeSupported1).toEqual(true);
|
||||
expect(fullReaderCancelled1).toEqual(true);
|
||||
expect(isStreamingSupported2).toEqual(false);
|
||||
expect(isRangeSupported2).toEqual(true);
|
||||
expect(fullReaderCancelled2).toEqual(true);
|
||||
expect(result1.value).toEqual(rangeSize);
|
||||
expect(result2.value).toEqual(tailSize);
|
||||
expect(isStreamingSupported).toEqual(false);
|
||||
expect(isRangeSupported).toEqual(true);
|
||||
expect(fullReaderCancelled).toEqual(true);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue