// Copyright 2016 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 "core/fpdfapi/parser/cpdf_document.h" #include #include #include "core/fpdfapi/cpdf_modulemgr.h" #include "core/fpdfapi/parser/cpdf_array.h" #include "core/fpdfapi/parser/cpdf_boolean.h" #include "core/fpdfapi/parser/cpdf_dictionary.h" #include "core/fpdfapi/parser/cpdf_linearized_header.h" #include "core/fpdfapi/parser/cpdf_name.h" #include "core/fpdfapi/parser/cpdf_number.h" #include "core/fpdfapi/parser/cpdf_parser.h" #include "core/fpdfapi/parser/cpdf_reference.h" #include "core/fpdfapi/parser/cpdf_string.h" #include "core/fxcrt/fx_memory.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/base/ptr_util.h" namespace { const int kNumTestPages = 7; CPDF_Dictionary* CreatePageTreeNode(std::unique_ptr kids, CPDF_Document* pDoc, int count) { CPDF_Array* pUnowned = pDoc->AddIndirectObject(std::move(kids))->AsArray(); CPDF_Dictionary* pageNode = pDoc->NewIndirect(); pageNode->SetNewFor("Type", "Pages", false); pageNode->SetNewFor("Kids", pDoc, pUnowned->GetObjNum()); pageNode->SetNewFor("Count", count); for (size_t i = 0; i < pUnowned->GetCount(); i++) { pUnowned->GetDictAt(i)->SetNewFor("Parent", pDoc, pageNode->GetObjNum()); } return pageNode; } std::unique_ptr CreateNumberedPage(size_t number) { auto page = pdfium::MakeUnique(); page->SetNewFor("Type", "Page", false); page->SetNewFor("PageNumbering", static_cast(number)); return page; } class CPDF_TestDocumentForPages : public CPDF_Document { public: CPDF_TestDocumentForPages() : CPDF_Document(nullptr) { // Set up test auto zeroToTwo = pdfium::MakeUnique(); zeroToTwo->AddNew( this, AddIndirectObject(CreateNumberedPage(0))->GetObjNum()); zeroToTwo->AddNew( this, AddIndirectObject(CreateNumberedPage(1))->GetObjNum()); zeroToTwo->AddNew( this, AddIndirectObject(CreateNumberedPage(2))->GetObjNum()); CPDF_Dictionary* branch1 = CreatePageTreeNode(std::move(zeroToTwo), this, 3); auto zeroToThree = pdfium::MakeUnique(); zeroToThree->AddNew(this, branch1->GetObjNum()); zeroToThree->AddNew( this, AddIndirectObject(CreateNumberedPage(3))->GetObjNum()); CPDF_Dictionary* branch2 = CreatePageTreeNode(std::move(zeroToThree), this, 4); auto fourFive = pdfium::MakeUnique(); fourFive->AddNew( this, AddIndirectObject(CreateNumberedPage(4))->GetObjNum()); fourFive->AddNew( this, AddIndirectObject(CreateNumberedPage(5))->GetObjNum()); CPDF_Dictionary* branch3 = CreatePageTreeNode(std::move(fourFive), this, 2); auto justSix = pdfium::MakeUnique(); justSix->AddNew( this, AddIndirectObject(CreateNumberedPage(6))->GetObjNum()); CPDF_Dictionary* branch4 = CreatePageTreeNode(std::move(justSix), this, 1); auto allPages = pdfium::MakeUnique(); allPages->AddNew(this, branch2->GetObjNum()); allPages->AddNew(this, branch3->GetObjNum()); allPages->AddNew(this, branch4->GetObjNum()); CPDF_Dictionary* pagesDict = CreatePageTreeNode(std::move(allPages), this, kNumTestPages); m_pOwnedRootDict = pdfium::MakeUnique(); m_pOwnedRootDict->SetNewFor("Pages", this, pagesDict->GetObjNum()); m_pRootDict = m_pOwnedRootDict.get(); m_PageList.resize(kNumTestPages); } void SetTreeSize(int size) { m_pOwnedRootDict->SetNewFor("Count", size); m_PageList.resize(size); } private: std::unique_ptr m_pOwnedRootDict; }; class CPDF_TestDocumentWithPageWithoutPageNum : public CPDF_Document { public: CPDF_TestDocumentWithPageWithoutPageNum() : CPDF_Document(nullptr) { // Set up test auto allPages = pdfium::MakeUnique(); allPages->AddNew( this, AddIndirectObject(CreateNumberedPage(0))->GetObjNum()); allPages->AddNew( this, AddIndirectObject(CreateNumberedPage(1))->GetObjNum()); // Page without pageNum. allPages->Add(CreateNumberedPage(2)); CPDF_Dictionary* pagesDict = CreatePageTreeNode(std::move(allPages), this, 3); m_pOwnedRootDict = pdfium::MakeUnique(); m_pOwnedRootDict->SetNewFor("Pages", this, pagesDict->GetObjNum()); m_pRootDict = m_pOwnedRootDict.get(); m_PageList.resize(3); } private: std::unique_ptr m_pOwnedRootDict; }; class TestLinearized : public CPDF_LinearizedHeader { public: explicit TestLinearized(CPDF_Dictionary* dict) : CPDF_LinearizedHeader(dict) {} }; class CPDF_TestDocPagesWithoutKids : public CPDF_Document { public: CPDF_TestDocPagesWithoutKids() : CPDF_Document(nullptr) { CPDF_Dictionary* pagesDict = NewIndirect(); pagesDict->SetNewFor("Type", "Pages"); pagesDict->SetNewFor("Count", 3); m_PageList.resize(10); m_pOwnedRootDict = pdfium::MakeUnique(); m_pOwnedRootDict->SetNewFor("Pages", this, pagesDict->GetObjNum()); m_pRootDict = m_pOwnedRootDict.get(); } private: std::unique_ptr m_pOwnedRootDict; }; } // namespace class cpdf_document_test : public testing::Test { public: void SetUp() override { CPDF_ModuleMgr::Get()->Init(); } void TearDown() override { CPDF_ModuleMgr::Destroy(); } }; TEST_F(cpdf_document_test, GetPages) { std::unique_ptr document = pdfium::MakeUnique(); for (int i = 0; i < kNumTestPages; i++) { CPDF_Dictionary* page = document->GetPage(i); ASSERT_TRUE(page); ASSERT_TRUE(page->KeyExist("PageNumbering")); EXPECT_EQ(i, page->GetIntegerFor("PageNumbering")); } CPDF_Dictionary* page = document->GetPage(kNumTestPages); EXPECT_FALSE(page); } TEST_F(cpdf_document_test, GetPageWithoutObjNumTwice) { std::unique_ptr document = pdfium::MakeUnique(); const CPDF_Dictionary* page = document->GetPage(2); ASSERT_TRUE(page); // This is page without obj num. ASSERT_EQ(0ul, page->GetObjNum()); const CPDF_Dictionary* second_call_page = document->GetPage(2); EXPECT_TRUE(second_call_page); EXPECT_EQ(page, second_call_page); } TEST_F(cpdf_document_test, GetPagesReverseOrder) { std::unique_ptr document = pdfium::MakeUnique(); for (int i = 6; i >= 0; i--) { CPDF_Dictionary* page = document->GetPage(i); ASSERT_TRUE(page); ASSERT_TRUE(page->KeyExist("PageNumbering")); EXPECT_EQ(i, page->GetIntegerFor("PageNumbering")); } CPDF_Dictionary* page = document->GetPage(kNumTestPages); EXPECT_FALSE(page); } TEST_F(cpdf_document_test, GetPagesInDisorder) { std::unique_ptr document = pdfium::MakeUnique(); CPDF_Dictionary* page = document->GetPage(1); ASSERT_TRUE(page); ASSERT_TRUE(page->KeyExist("PageNumbering")); EXPECT_EQ(1, page->GetIntegerFor("PageNumbering")); page = document->GetPage(3); ASSERT_TRUE(page); ASSERT_TRUE(page->KeyExist("PageNumbering")); EXPECT_EQ(3, page->GetIntegerFor("PageNumbering")); page = document->GetPage(kNumTestPages); EXPECT_FALSE(page); page = document->GetPage(6); ASSERT_TRUE(page); ASSERT_TRUE(page->KeyExist("PageNumbering")); EXPECT_EQ(6, page->GetIntegerFor("PageNumbering")); } TEST_F(cpdf_document_test, UseCachedPageObjNumIfHaveNotPagesDict) { // ObjNum can be added in CPDF_DataAvail::IsPageAvail, and PagesDict // can be not exists in this case. // (case, when hint table is used to page check in CPDF_DataAvail). CPDF_Document document(pdfium::MakeUnique()); auto dict = pdfium::MakeUnique(); dict->SetNewFor("Linearized", true); const int page_count = 100; dict->SetNewFor("N", page_count); TestLinearized linearized(dict.get()); document.LoadLinearizedDoc(&linearized); ASSERT_EQ(page_count, document.GetPageCount()); CPDF_Object* page_stub = document.NewIndirect(); const uint32_t obj_num = page_stub->GetObjNum(); const int test_page_num = 33; EXPECT_FALSE(document.IsPageLoaded(test_page_num)); EXPECT_EQ(nullptr, document.GetPage(test_page_num)); document.SetPageObjNum(test_page_num, obj_num); EXPECT_TRUE(document.IsPageLoaded(test_page_num)); EXPECT_EQ(page_stub, document.GetPage(test_page_num)); } TEST_F(cpdf_document_test, CountGreaterThanPageTree) { std::unique_ptr document = pdfium::MakeUnique(); document->SetTreeSize(kNumTestPages + 3); for (int i = 0; i < kNumTestPages; i++) EXPECT_TRUE(document->GetPage(i)); for (int i = kNumTestPages; i < kNumTestPages + 4; i++) EXPECT_FALSE(document->GetPage(i)); EXPECT_TRUE(document->GetPage(kNumTestPages - 1)); } TEST_F(cpdf_document_test, PagesWithoutKids) { // Set up a document with Pages dict without kids, and Count = 3 auto pDoc = pdfium::MakeUnique(); EXPECT_TRUE(pDoc->GetPage(0)); // Test GetPage does not fetch pages out of range for (int i = 1; i < 5; i++) EXPECT_FALSE(pDoc->GetPage(i)); EXPECT_TRUE(pDoc->GetPage(0)); }