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

Unified Diff: ppapi/tests/test_pdf.cc

Issue 13004012: Implement the host side of the PPB_PDF proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/tests/test_pdf.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_pdf.cc
diff --git a/ppapi/tests/test_pdf.cc b/ppapi/tests/test_pdf.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dbfc8034705b08824dccacc8dbbfb27a2998e591
--- /dev/null
+++ b/ppapi/tests/test_pdf.cc
@@ -0,0 +1,46 @@
+// Copyright (c) 2012 The Chromium 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 "ppapi/tests/test_pdf.h"
+
+#include "ppapi/c/private/ppb_pdf.h"
+#include "ppapi/cpp/image_data.h"
+#include "ppapi/cpp/point.h"
+#include "ppapi/cpp/private/pdf.h"
+#include "ppapi/cpp/var.h"
+#include "ppapi/tests/testing_instance.h"
+
+REGISTER_TEST_CASE(PDF);
+
+TestPDF::TestPDF(TestingInstance* instance)
+ : TestCase(instance) {
+}
+
+void TestPDF::RunTests(const std::string& filter) {
+ RUN_TEST(GetLocalizedString, filter);
+ RUN_TEST(GetResourceImage, filter);
+}
+
+std::string TestPDF::TestGetLocalizedString() {
+ pp::Var string = pp::PDF::GetLocalizedString(instance_,
+ PP_RESOURCESTRING_PDFGETPASSWORD);
+ ASSERT_TRUE(string.is_string());
+ ASSERT_EQ("This document is password protected. Please enter a password.",
+ string.AsString());
+ PASS();
+}
+
+std::string TestPDF::TestGetResourceImage() {
+ pp::ImageData data =
+ pp::PDF::GetResourceImage(instance_, PP_RESOURCEIMAGE_PDF_BUTTON_ZOOMIN);
+ ASSERT_EQ(43, data.size().width());
+ ASSERT_EQ(42, data.size().height());
+ for (int i = 0; i < data.size().width(); ++i) {
+ for (int j = 0; j < data.size().height(); ++j) {
+ pp::Point point(i, j);
+ ASSERT_NE(*data.GetAddr32(point), 0);
+ }
+ }
+ PASS();
+}
« 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