1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
// 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 "base/files/file_path.h"
#include "base/strings/utf_string_conversions.h"
#include "content/common/view_messages.h"
#include "content/public/common/file_chooser_params.h"
#include "content/public/test/render_view_test.h"
#include "content/renderer/pepper/mock_renderer_ppapi_host.h"
#include "content/renderer/pepper/pepper_file_chooser_host.h"
#include "content/renderer/render_view_impl.h"
#include "content/test/test_content_client.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/host/host_message_context.h"
#include "ppapi/host/ppapi_host.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/proxy/resource_message_params.h"
#include "ppapi/proxy/resource_message_test_sink.h"
#include "ppapi/shared_impl/ppapi_permissions.h"
#include "ppapi/shared_impl/ppb_file_ref_shared.h"
#include "ppapi/shared_impl/resource_tracker.h"
#include "ppapi/shared_impl/test_globals.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/shell_dialogs/selected_file_info.h"
namespace content {
namespace {
class PepperFileChooserHostTest : public RenderViewTest {
public:
PepperFileChooserHostTest()
: pp_instance_(123456) {}
virtual void SetUp() {
SetContentClient(&client_);
RenderViewTest::SetUp();
globals_.GetResourceTracker()->DidCreateInstance(pp_instance_);
}
virtual void TearDown() {
globals_.GetResourceTracker()->DidDeleteInstance(pp_instance_);
RenderViewTest::TearDown();
}
PP_Instance pp_instance() const { return pp_instance_; }
private:
PP_Instance pp_instance_;
ppapi::TestGlobals globals_;
TestContentClient client_;
};
// For testing to convert our hardcoded file paths to 8-bit.
std::string FilePathToUTF8(const base::FilePath::StringType& path) {
#if defined(OS_WIN)
return UTF16ToUTF8(path);
#else
return path;
#endif
}
} // namespace
TEST_F(PepperFileChooserHostTest, Show) {
PP_Resource pp_resource = 123;
MockRendererPpapiHost host(view_, pp_instance());
PepperFileChooserHost chooser(&host, pp_instance(), pp_resource);
// Say there's a user gesture.
host.set_has_user_gesture(true);
std::vector<std::string> accept;
accept.push_back("text/plain");
PpapiHostMsg_FileChooser_Show show_msg(false, false, std::string(), accept);
ppapi::proxy::ResourceMessageCallParams call_params(pp_resource, 0);
ppapi::host::HostMessageContext context(call_params);
int32 result = chooser.OnResourceMessageReceived(show_msg, &context);
EXPECT_EQ(PP_OK_COMPLETIONPENDING, result);
// The render view should have sent a chooser request to the browser
// (caught by the render thread's test message sink).
const IPC::Message* msg = render_thread_->sink().GetUniqueMessageMatching(
ViewHostMsg_RunFileChooser::ID);
ASSERT_TRUE(msg);
ViewHostMsg_RunFileChooser::Schema::Param call_msg_param;
ASSERT_TRUE(ViewHostMsg_RunFileChooser::Read(msg, &call_msg_param));
const FileChooserParams& chooser_params = call_msg_param.a;
// Basic validation of request.
EXPECT_EQ(FileChooserParams::Open, chooser_params.mode);
ASSERT_EQ(1u, chooser_params.accept_types.size());
EXPECT_EQ(accept[0], UTF16ToUTF8(chooser_params.accept_types[0]));
// Send a chooser reply to the render view. Note our reply path has to have a
// path separator so we include both a Unix and a Windows one.
ui::SelectedFileInfo selected_info;
selected_info.display_name = FILE_PATH_LITERAL("Hello, world");
selected_info.local_path = base::FilePath(FILE_PATH_LITERAL("myp\\ath/foo"));
std::vector<ui::SelectedFileInfo> selected_info_vector;
selected_info_vector.push_back(selected_info);
RenderViewImpl* view_impl = static_cast<RenderViewImpl*>(view_);
ViewMsg_RunFileChooserResponse response(view_impl->routing_id(),
selected_info_vector);
EXPECT_TRUE(view_impl->OnMessageReceived(response));
// This should have sent the Pepper reply to our test sink.
ppapi::proxy::ResourceMessageReplyParams reply_params;
IPC::Message reply_msg;
ASSERT_TRUE(host.sink().GetFirstResourceReplyMatching(
PpapiPluginMsg_FileChooser_ShowReply::ID, &reply_params, &reply_msg));
// Basic validation of reply.
EXPECT_EQ(call_params.sequence(), reply_params.sequence());
EXPECT_EQ(PP_OK, reply_params.result());
PpapiPluginMsg_FileChooser_ShowReply::Schema::Param reply_msg_param;
ASSERT_TRUE(PpapiPluginMsg_FileChooser_ShowReply::Read(&reply_msg,
&reply_msg_param));
const std::vector<ppapi::PPB_FileRef_CreateInfo>& chooser_results =
reply_msg_param.a;
ASSERT_EQ(1u, chooser_results.size());
// Note path is empty because this is an external filesystem.
EXPECT_EQ(std::string(), chooser_results[0].path);
EXPECT_EQ(FilePathToUTF8(selected_info.display_name),
chooser_results[0].name);
}
TEST_F(PepperFileChooserHostTest, NoUserGesture) {
PP_Resource pp_resource = 123;
MockRendererPpapiHost host(view_, pp_instance());
PepperFileChooserHost chooser(&host, pp_instance(), pp_resource);
// Say there's no user gesture.
host.set_has_user_gesture(false);
std::vector<std::string> accept;
accept.push_back("text/plain");
PpapiHostMsg_FileChooser_Show show_msg(false, false, std::string(), accept);
ppapi::proxy::ResourceMessageCallParams call_params(pp_resource, 0);
ppapi::host::HostMessageContext context(call_params);
int32 result = chooser.OnResourceMessageReceived(show_msg, &context);
EXPECT_EQ(PP_ERROR_NO_USER_GESTURE, result);
}
} // namespace content
|