Implement attachment detection in ValidatePDF

Updated PHASENPLAN.md and ROADMAP.md to reflect a complete restructuring of the development plan and added a "Bugfix: Attachment Detection" entry.

Implemented attachment detection in DevExpressPdfProcessor.cs using the new `DetectEmbeddedFiles` method, which scans raw PDF data for the `/EmbeddedFiles` keyword. Updated the `hasAttachments` property to use this method and set `attachmentCount` to `-1` when attachments are detected.

Added a new test, `ValidateAsync_PdfWithoutAttachments_ReturnsNoAttachments`, in DevExpressPdfProcessorTests.cs to verify that PDFs without attachments are correctly identified. Included a note about future testing for PDFs with attachments using ZUGFeRD files.

All related tests are passing (12/12 green).
This commit is contained in:
OlgunR
2026-06-25 16:25:16 +02:00
parent 930b76ecb5
commit 1b38d5a729
4 changed files with 59 additions and 6 deletions

View File

@@ -143,4 +143,27 @@ public class DevExpressPdfProcessorTests
}
#endregion
}
#region Attachment Detection Tests
[Fact]
public async Task ValidateAsync_PdfWithoutAttachments_ReturnsNoAttachments()
{
// Arrange
byte[] pdfBytes = LoadTestPdf("valid.pdf");
// Act
var metadata = await _sut.ValidateAsync(pdfBytes);
// Assert
metadata.HasAttachments.Should().BeFalse("valid.pdf has no attachments");
metadata.AttachmentCount.Should().Be(0, "valid.pdf has no attachments");
}
// Note: Testing PDF with attachments requires a real ZUGFeRD PDF file
// as DevExpress PdfDocumentProcessor doesn't expose a simple API to create attachments.
// This test will be added when a ZUGFeRD test PDF is available.
// For now, we verify that attachment detection works (returns false for PDFs without attachments).
#endregion
}