| OLD | NEW |
| 1 // Copyright 2015 PDFium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "../../public/fpdfview.h" | 6 #include "../../public/fpdfview.h" |
| 7 #include "../../testing/embedder_test.h" | 7 #include "../../testing/embedder_test.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 | 9 |
| 10 class FPDFDocEmbeddertest : public EmbedderTest {}; | 10 class FPDFDocEmbeddertest : public EmbedderTest {}; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 ASSERT_TRUE(page); | 43 ASSERT_TRUE(page); |
| 44 | 44 |
| 45 // The target action is nearly the size of the whole page. | 45 // The target action is nearly the size of the whole page. |
| 46 FPDF_LINK link = FPDFLink_GetLinkAtPoint(page, 100, 100); | 46 FPDF_LINK link = FPDFLink_GetLinkAtPoint(page, 100, 100); |
| 47 ASSERT_TRUE(link); | 47 ASSERT_TRUE(link); |
| 48 | 48 |
| 49 FPDF_ACTION action = FPDFLink_GetAction(link); | 49 FPDF_ACTION action = FPDFLink_GetAction(link); |
| 50 ASSERT_TRUE(action); | 50 ASSERT_TRUE(action); |
| 51 | 51 |
| 52 const char kExpectedResult[] = "test.pdf"; | 52 const char kExpectedResult[] = "test.pdf"; |
| 53 const unsigned long kExpectedLength = sizeof(kExpectedLength); | 53 const unsigned long kExpectedLength = sizeof(kExpectedResult); |
| 54 unsigned long bufsize = FPDFAction_GetFilePath(action, nullptr, 0); | 54 unsigned long bufsize = FPDFAction_GetFilePath(action, nullptr, 0); |
| 55 ASSERT_EQ(kExpectedLength, bufsize); | 55 ASSERT_EQ(kExpectedLength, bufsize); |
| 56 | 56 |
| 57 char buf[kExpectedLength]; | 57 char buf[kExpectedLength]; |
| 58 EXPECT_EQ(bufsize, FPDFAction_GetFilePath(action, buf, bufsize)); | 58 EXPECT_EQ(bufsize, FPDFAction_GetFilePath(action, buf, bufsize)); |
| 59 EXPECT_EQ(std::string(kExpectedResult), std::string(buf)); | 59 EXPECT_EQ(std::string(kExpectedResult), std::string(buf)); |
| 60 | 60 |
| 61 FPDF_ClosePage(page); | 61 FPDF_ClosePage(page); |
| 62 } | 62 } |
| OLD | NEW |