diff options
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/src/fpdf_dataavail_embeddertest.cpp | 6 | ||||
-rw-r--r-- | fpdfsdk/src/fpdfview_embeddertest.cpp | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp b/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp index 292ff79d05..730a793d63 100644 --- a/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp +++ b/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp @@ -10,11 +10,13 @@ class FPDFDataAvailEmbeddertest : public EmbedderTest {}; TEST_F(FPDFDataAvailEmbeddertest, TrailerUnterminated) { - // Document doesn't even open under XFA but must not crash. + // Document must load without crashing but is too malformed to be available. EXPECT_FALSE(OpenDocument("testing/resources/trailer_unterminated.pdf")); + EXPECT_FALSE(FPDFAvail_IsDocAvail(avail_, &hints_)); } TEST_F(FPDFDataAvailEmbeddertest, TrailerAsHexstring) { - // Document doesn't even open under XFA but must not crash. + // Document must load without crashing but is too malformed to be available. EXPECT_FALSE(OpenDocument("testing/resources/trailer_as_hexstring.pdf")); + EXPECT_FALSE(FPDFAvail_IsDocAvail(avail_, &hints_)); } diff --git a/fpdfsdk/src/fpdfview_embeddertest.cpp b/fpdfsdk/src/fpdfview_embeddertest.cpp index e369ed8404..36e79d777a 100644 --- a/fpdfsdk/src/fpdfview_embeddertest.cpp +++ b/fpdfsdk/src/fpdfview_embeddertest.cpp @@ -184,7 +184,7 @@ TEST_F(FPDFViewEmbeddertest, Crasher_113) { } TEST_F(FPDFViewEmbeddertest, Crasher_451830) { - // XFA branch detects this document as bad. + // Document is damaged and can't be opened. EXPECT_FALSE(OpenDocument("testing/resources/bug_451830.pdf")); } @@ -196,6 +196,6 @@ TEST_F(FPDFViewEmbeddertest, Crasher_452455) { } TEST_F(FPDFViewEmbeddertest, Crasher_454695) { - // XFA branch detects this document as bad. + // Document is damanged and can't be opened. EXPECT_FALSE(OpenDocument("testing/resources/bug_454695.pdf")); } |