OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "public/fpdf_doc.h" | 5 #include "public/fpdf_doc.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 CPDF_IndirectObjectHolder* GetHolder() { return GetPDFDoc(); } | 41 CPDF_IndirectObjectHolder* GetHolder() { return GetPDFDoc(); } |
42 }; | 42 }; |
43 using CPDF_TestPdfDocument = CPDF_TestXFADocument; | 43 using CPDF_TestPdfDocument = CPDF_TestXFADocument; |
44 #else // PDF_ENABLE_XFA | 44 #else // PDF_ENABLE_XFA |
45 using CPDF_TestPdfDocument = CPDF_TestDocument; | 45 using CPDF_TestPdfDocument = CPDF_TestDocument; |
46 #endif // PDF_ENABLE_XFA | 46 #endif // PDF_ENABLE_XFA |
47 | 47 |
48 class PDFDocTest : public testing::Test { | 48 class PDFDocTest : public testing::Test { |
49 public: | 49 public: |
50 struct DictObjInfo { | 50 struct DictObjInfo { |
51 FX_DWORD num; | 51 uint32_t num; |
52 CPDF_Dictionary* obj; | 52 CPDF_Dictionary* obj; |
53 }; | 53 }; |
54 | 54 |
55 void SetUp() override { | 55 void SetUp() override { |
56 // We don't need page module or render module, but | 56 // We don't need page module or render module, but |
57 // initialize them to keep the code sane. | 57 // initialize them to keep the code sane. |
58 CPDF_ModuleMgr::Create(); | 58 CPDF_ModuleMgr::Create(); |
59 CPDF_ModuleMgr* module_mgr = CPDF_ModuleMgr::Get(); | 59 CPDF_ModuleMgr* module_mgr = CPDF_ModuleMgr::Get(); |
60 module_mgr->InitPageModule(); | 60 module_mgr->InitPageModule(); |
61 module_mgr->InitRenderModule(); | 61 module_mgr->InitRenderModule(); |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 // Title with no match. | 217 // Title with no match. |
218 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = | 218 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = |
219 GetFPDFWideString(L"Chapter 8"); | 219 GetFPDFWideString(L"Chapter 8"); |
220 EXPECT_EQ(nullptr, FPDFBookmark_Find(m_pDoc.get(), title.get())); | 220 EXPECT_EQ(nullptr, FPDFBookmark_Find(m_pDoc.get(), title.get())); |
221 | 221 |
222 // Title with a match. | 222 // Title with a match. |
223 title = GetFPDFWideString(L"Chapter 3"); | 223 title = GetFPDFWideString(L"Chapter 3"); |
224 EXPECT_EQ(bookmarks[3].obj, FPDFBookmark_Find(m_pDoc.get(), title.get())); | 224 EXPECT_EQ(bookmarks[3].obj, FPDFBookmark_Find(m_pDoc.get(), title.get())); |
225 } | 225 } |
226 } | 226 } |
OLD | NEW |