From dd4cd523ef4546b43d68e8ca6ec0a97fbe8954e9 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 28 Oct 2015 13:32:35 -0400 Subject: Check if document was opened during testing. When we call OpenDocument we fail to check if the document was actually opened. Currently we return true in all cases (assuming we read the file). This CL updates the code to check if the document was opened and return false if not. I've updated several tests to check for FALSE instead of TRUE. I verified the documents in fact don't open with my local (non-PDFium) PDF reader. BUG=pdfium:223 R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1417893007 . --- fpdfsdk/src/fpdf_dataavail_embeddertest.cpp | 8 ++++---- fpdfsdk/src/fpdfview_embeddertest.cpp | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) (limited to 'fpdfsdk') diff --git a/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp b/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp index 65e9348f55..730a793d63 100644 --- a/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp +++ b/fpdfsdk/src/fpdf_dataavail_embeddertest.cpp @@ -10,13 +10,13 @@ class FPDFDataAvailEmbeddertest : public EmbedderTest {}; TEST_F(FPDFDataAvailEmbeddertest, TrailerUnterminated) { - // Document must open without crashing but is too malformed to be available. - EXPECT_TRUE(OpenDocument("testing/resources/trailer_unterminated.pdf")); + // 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 must open without crashing but is too malformed to be available. - EXPECT_TRUE(OpenDocument("testing/resources/trailer_as_hexstring.pdf")); + // 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 896a196fb7..c06adb4102 100644 --- a/fpdfsdk/src/fpdfview_embeddertest.cpp +++ b/fpdfsdk/src/fpdfview_embeddertest.cpp @@ -184,7 +184,8 @@ TEST_F(FPDFViewEmbeddertest, Crasher_113) { } TEST_F(FPDFViewEmbeddertest, Crasher_451830) { - EXPECT_TRUE(OpenDocument("testing/resources/bug_451830.pdf")); + // Document is damaged and can't be opened. + EXPECT_FALSE(OpenDocument("testing/resources/bug_451830.pdf")); } TEST_F(FPDFViewEmbeddertest, Crasher_452455) { @@ -195,5 +196,6 @@ TEST_F(FPDFViewEmbeddertest, Crasher_452455) { } TEST_F(FPDFViewEmbeddertest, Crasher3) { - EXPECT_TRUE(OpenDocument("testing/resources/bug_454695.pdf")); + // Document is damanged and can't be opened. + EXPECT_FALSE(OpenDocument("testing/resources/bug_454695.pdf")); } -- cgit v1.2.3