diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2015-10-28 13:58:49 -0400 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2015-10-28 13:58:49 -0400 |
commit | 6be2aab35a6e605b3a884c558528efa3ac9231c6 (patch) | |
tree | 43e5bd09f8f114e7526aef0abbd2235e75970ce4 /fpdfsdk/src/fpdfview_embeddertest.cpp | |
parent | 90c90059131c0412ebefddb6a97084c4776a3c4e (diff) | |
download | pdfium-6be2aab35a6e605b3a884c558528efa3ac9231c6.tar.xz |
Merge to XFA: 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 .
(cherry picked from commit dd4cd523ef4546b43d68e8ca6ec0a97fbe8954e9)
Review URL: https://codereview.chromium.org/1418563010 .
Diffstat (limited to 'fpdfsdk/src/fpdfview_embeddertest.cpp')
-rw-r--r-- | fpdfsdk/src/fpdfview_embeddertest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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")); } |