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

Side by Side Diff: ppapi/tests/test_pdf.cc

Issue 1125113002: Remove the unused parts of PPB_PDF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pdf-delete-pdf
Patch Set: Created 5 years, 7 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 | « ppapi/tests/test_pdf.h ('k') | 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium 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 "ppapi/tests/test_pdf.h" 5 #include "ppapi/tests/test_pdf.h"
6 6
7 #include "ppapi/c/private/ppb_pdf.h" 7 #include "ppapi/c/private/ppb_pdf.h"
8 #include "ppapi/cpp/image_data.h" 8 #include "ppapi/cpp/image_data.h"
9 #include "ppapi/cpp/point.h" 9 #include "ppapi/cpp/point.h"
10 #include "ppapi/cpp/private/pdf.h" 10 #include "ppapi/cpp/private/pdf.h"
11 #include "ppapi/cpp/var.h" 11 #include "ppapi/cpp/var.h"
12 #include "ppapi/tests/testing_instance.h" 12 #include "ppapi/tests/testing_instance.h"
13 13
14 REGISTER_TEST_CASE(PDF); 14 REGISTER_TEST_CASE(PDF);
15 15
16 TestPDF::TestPDF(TestingInstance* instance) 16 TestPDF::TestPDF(TestingInstance* instance)
17 : TestCase(instance) { 17 : TestCase(instance) {
18 } 18 }
19 19
20 void TestPDF::RunTests(const std::string& filter) { 20 void TestPDF::RunTests(const std::string& filter) {
21 RUN_TEST(GetLocalizedString, filter); 21 RUN_TEST(GetLocalizedString, filter);
22 RUN_TEST(GetResourceImage, filter);
23 RUN_TEST(GetV8ExternalSnapshotData, filter); 22 RUN_TEST(GetV8ExternalSnapshotData, filter);
24 } 23 }
25 24
26 std::string TestPDF::TestGetLocalizedString() { 25 std::string TestPDF::TestGetLocalizedString() {
27 pp::Var string = pp::PDF::GetLocalizedString(instance_, 26 pp::Var string = pp::PDF::GetLocalizedString(instance_,
28 PP_RESOURCESTRING_PDFGETPASSWORD); 27 PP_RESOURCESTRING_PDFGETPASSWORD);
29 ASSERT_TRUE(string.is_string()); 28 ASSERT_TRUE(string.is_string());
30 ASSERT_EQ("This document is password protected. Please enter a password.", 29 ASSERT_EQ("This document is password protected. Please enter a password.",
31 string.AsString()); 30 string.AsString());
32 PASS(); 31 PASS();
33 } 32 }
34 33
35 std::string TestPDF::TestGetResourceImage() {
36 pp::ImageData data =
37 pp::PDF::GetResourceImage(instance_, PP_RESOURCEIMAGE_PDF_BUTTON_ZOOMIN);
38 ASSERT_EQ(43, data.size().width());
39 ASSERT_EQ(42, data.size().height());
40 for (int i = 0; i < data.size().width(); ++i) {
41 for (int j = 0; j < data.size().height(); ++j) {
42 pp::Point point(i, j);
43 ASSERT_NE(0, *data.GetAddr32(point));
44 }
45 }
46 PASS();
47 }
48
49 std::string TestPDF::TestGetV8ExternalSnapshotData() { 34 std::string TestPDF::TestGetV8ExternalSnapshotData() {
50 const char* natives_data; 35 const char* natives_data;
51 const char* snapshot_data; 36 const char* snapshot_data;
52 int natives_size; 37 int natives_size;
53 int snapshot_size; 38 int snapshot_size;
54 39
55 pp::PDF::GetV8ExternalSnapshotData(instance_, &natives_data, &natives_size, 40 pp::PDF::GetV8ExternalSnapshotData(instance_, &natives_data, &natives_size,
56 &snapshot_data, &snapshot_size); 41 &snapshot_data, &snapshot_size);
57 #ifdef V8_USE_EXTERNAL_STARTUP_DATA 42 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
58 ASSERT_NE(natives_data, (char*) (NULL)); 43 ASSERT_NE(natives_data, (char*) (NULL));
59 ASSERT_NE(natives_size, 0); 44 ASSERT_NE(natives_size, 0);
60 ASSERT_NE(snapshot_data, (char*) (NULL)); 45 ASSERT_NE(snapshot_data, (char*) (NULL));
61 ASSERT_NE(snapshot_size, 0); 46 ASSERT_NE(snapshot_size, 0);
62 #else 47 #else
63 ASSERT_EQ(natives_data, (char*) (NULL)); 48 ASSERT_EQ(natives_data, (char*) (NULL));
64 ASSERT_EQ(natives_size, 0); 49 ASSERT_EQ(natives_size, 0);
65 ASSERT_EQ(snapshot_data, (char*) (NULL)); 50 ASSERT_EQ(snapshot_data, (char*) (NULL));
66 ASSERT_EQ(snapshot_size, 0); 51 ASSERT_EQ(snapshot_size, 0);
67 #endif 52 #endif
68 PASS(); 53 PASS();
69 } 54 }
OLDNEW
« no previous file with comments | « ppapi/tests/test_pdf.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698