From 5acacd361b15b82a8b30cdd5cb92abb8a2104ecf Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Thu, 25 May 2017 14:04:59 -0400 Subject: Break apart the pageint.h file. This CL separates pageint.h and the supporting cpp files into indivudal class files. Change-Id: Idcadce41976a8cd5f0d916e6a5ebbc283fd36527 Reviewed-on: https://pdfium-review.googlesource.com/5930 Commit-Queue: dsinclair Reviewed-by: Tom Sepez --- core/fpdfapi/page/cpdf_stitchfunc_embeddertest.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 core/fpdfapi/page/cpdf_stitchfunc_embeddertest.cpp (limited to 'core/fpdfapi/page/cpdf_stitchfunc_embeddertest.cpp') diff --git a/core/fpdfapi/page/cpdf_stitchfunc_embeddertest.cpp b/core/fpdfapi/page/cpdf_stitchfunc_embeddertest.cpp new file mode 100644 index 0000000000..6a1b87b570 --- /dev/null +++ b/core/fpdfapi/page/cpdf_stitchfunc_embeddertest.cpp @@ -0,0 +1,21 @@ +// Copyright 2015 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "testing/embedder_test.h" +#include "testing/gtest/include/gtest/gtest.h" + +class FPDFPageFuncEmbeddertest : public EmbedderTest {}; + +TEST_F(FPDFPageFuncEmbeddertest, Bug_551460) { + // Should not crash under ASan. + // Tests that the number of inputs is not simply calculated from the domain + // and trusted. The number of inputs has to be 1. + EXPECT_TRUE(OpenDocument("bug_551460.pdf")); + FPDF_PAGE page = LoadPage(0); + EXPECT_NE(nullptr, page); + FPDF_BITMAP bitmap = RenderPage(page); + CompareBitmap(bitmap, 612, 792, "1940568c9ba33bac5d0b1ee9558c76b3"); + FPDFBitmap_Destroy(bitmap); + UnloadPage(page); +} -- cgit v1.2.3