Autofill: Add WalletIntegrationAvailable() to components.
[chromium-blink-merge.git] / ppapi / tests / test_pdf.cc
blobd33ab595d6658d143badcbba3aaa880c2d7c8434
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
3 // found in the LICENSE file.
5 #include "ppapi/tests/test_pdf.h"
7 #include "ppapi/c/private/ppb_pdf.h"
8 #include "ppapi/cpp/image_data.h"
9 #include "ppapi/cpp/point.h"
10 #include "ppapi/cpp/private/pdf.h"
11 #include "ppapi/cpp/var.h"
12 #include "ppapi/tests/testing_instance.h"
14 REGISTER_TEST_CASE(PDF);
16 TestPDF::TestPDF(TestingInstance* instance)
17 : TestCase(instance) {
20 void TestPDF::RunTests(const std::string& filter) {
21 RUN_TEST(GetLocalizedString, filter);
22 RUN_TEST(GetV8ExternalSnapshotData, filter);
25 std::string TestPDF::TestGetLocalizedString() {
26 pp::Var string = pp::PDF::GetLocalizedString(instance_,
27 PP_RESOURCESTRING_PDFGETPASSWORD);
28 ASSERT_TRUE(string.is_string());
29 ASSERT_EQ("This document is password protected. Please enter a password.",
30 string.AsString());
31 PASS();
34 std::string TestPDF::TestGetV8ExternalSnapshotData() {
35 const char* natives_data;
36 const char* snapshot_data;
37 int natives_size;
38 int snapshot_size;
40 pp::PDF::GetV8ExternalSnapshotData(instance_, &natives_data, &natives_size,
41 &snapshot_data, &snapshot_size);
42 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
43 ASSERT_NE(natives_data, (char*) (NULL));
44 ASSERT_NE(natives_size, 0);
45 ASSERT_NE(snapshot_data, (char*) (NULL));
46 ASSERT_NE(snapshot_size, 0);
47 #else
48 ASSERT_EQ(natives_data, (char*) (NULL));
49 ASSERT_EQ(natives_size, 0);
50 ASSERT_EQ(snapshot_data, (char*) (NULL));
51 ASSERT_EQ(snapshot_size, 0);
52 #endif
53 PASS();