Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: fpdfsdk/src/fpdfdoc_embeddertest.cpp

Issue 1345883003: Fix typo from commit a9d4bc5. (Autocomplete fail) (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698