diff --git a/test/unit/document_spec.js b/test/unit/document_spec.js index ba9968de9..5224cbd16 100644 --- a/test/unit/document_spec.js +++ b/test/unit/document_spec.js @@ -52,8 +52,9 @@ describe("document", function () { }; const stream = new StringStream("Dummy_PDF_data"); - function getDocument(acroForm) { + function getDocument(acroForm, xref = new XRefMock()) { const pdfDocument = new PDFDocument(pdfManager, stream); + pdfDocument.xref = xref; pdfDocument.catalog = { acroForm }; return pdfDocument; } @@ -144,18 +145,18 @@ describe("document", function () { kidsDict.set("Kids", [annotationRef]); const kidsRef = Ref.get(10, 0); - pdfDocument.xref = new XRefMock([ + const xref = new XRefMock([ { ref: annotationRef, data: annotationDict }, { ref: kidsRef, data: kidsDict }, ]); acroForm.set("Fields", [kidsRef]); acroForm.set("SigFlags", 3); - pdfDocument = getDocument(acroForm); + pdfDocument = getDocument(acroForm, xref); expect(pdfDocument.formInfo).toEqual({ hasAcroForm: false, hasXfa: false, - fields: null, + fields: [kidsRef], }); }); }); diff --git a/test/unit/test_utils.js b/test/unit/test_utils.js index 9171dd5c6..635b78c93 100644 --- a/test/unit/test_utils.js +++ b/test/unit/test_utils.js @@ -93,8 +93,8 @@ class XRefMock { return this._map[ref.toString()]; } - fetchAsync(ref) { - return Promise.resolve(this.fetch(ref)); + async fetchAsync(ref) { + return this.fetch(ref); } fetchIfRef(obj) { @@ -104,8 +104,8 @@ class XRefMock { return this.fetch(obj); } - fetchIfRefAsync(obj) { - return Promise.resolve(this.fetchIfRef(obj)); + async fetchIfRefAsync(obj) { + return this.fetchIfRef(obj); } }