forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathipc_test_base.cc
135 lines (108 loc) · 3.75 KB
/
ipc_test_base.cc
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
// 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 "build/build_config.h"
#include "ipc/ipc_test_base.h"
#include "base/command_line.h"
#include "base/process/kill.h"
#include "base/threading/thread.h"
#include "base/time/time.h"
#include "ipc/ipc_descriptors.h"
#if defined(OS_POSIX)
#include "base/posix/global_descriptors.h"
#endif
// static
std::string IPCTestBase::GetChannelName(const std::string& test_client_name) {
DCHECK(!test_client_name.empty());
return test_client_name + "__Channel";
}
IPCTestBase::IPCTestBase()
: client_process_(base::kNullProcessHandle) {
}
IPCTestBase::~IPCTestBase() {
}
void IPCTestBase::SetUp() {
MultiProcessTest::SetUp();
// Construct a fresh IO Message loop for the duration of each test.
DCHECK(!message_loop_.get());
message_loop_.reset(new base::MessageLoopForIO());
}
void IPCTestBase::TearDown() {
DCHECK(message_loop_.get());
message_loop_.reset();
MultiProcessTest::TearDown();
}
void IPCTestBase::Init(const std::string& test_client_name) {
DCHECK(!test_client_name.empty());
DCHECK(test_client_name_.empty());
test_client_name_ = test_client_name;
}
void IPCTestBase::CreateChannel(IPC::Listener* listener) {
return CreateChannelFromChannelHandle(GetChannelName(test_client_name_),
listener);
}
bool IPCTestBase::ConnectChannel() {
CHECK(channel_.get());
return channel_->Connect();
}
scoped_ptr<IPC::Channel> IPCTestBase::ReleaseChannel() {
return channel_.Pass();
}
void IPCTestBase::SetChannel(scoped_ptr<IPC::Channel> channel) {
channel_ = channel.Pass();
}
void IPCTestBase::DestroyChannel() {
DCHECK(channel_.get());
channel_.reset();
}
void IPCTestBase::CreateChannelFromChannelHandle(
const IPC::ChannelHandle& channel_handle,
IPC::Listener* listener) {
CHECK(!channel_.get());
CHECK(!channel_proxy_.get());
channel_ = IPC::Channel::CreateServer(channel_handle, listener);
}
void IPCTestBase::CreateChannelProxy(
IPC::Listener* listener,
base::SingleThreadTaskRunner* ipc_task_runner) {
CHECK(!channel_.get());
CHECK(!channel_proxy_.get());
channel_proxy_ = IPC::ChannelProxy::Create(GetChannelName(test_client_name_),
IPC::Channel::MODE_SERVER,
listener,
ipc_task_runner);
}
void IPCTestBase::DestroyChannelProxy() {
CHECK(channel_proxy_.get());
channel_proxy_.reset();
}
bool IPCTestBase::StartClient() {
DCHECK(client_process_ == base::kNullProcessHandle);
std::string test_main = test_client_name_ + "TestClientMain";
#if defined(OS_WIN)
client_process_ = SpawnChild(test_main);
#elif defined(OS_POSIX)
base::FileHandleMappingVector fds_to_map;
const int ipcfd = channel_.get()
? channel_->GetClientFileDescriptor()
: channel_proxy_->GetClientFileDescriptor();
if (ipcfd > -1)
fds_to_map.push_back(std::pair<int, int>(ipcfd,
kPrimaryIPCChannel + base::GlobalDescriptors::kBaseDescriptor));
base::LaunchOptions options;
options.fds_to_remap = &fds_to_map;
client_process_ = SpawnChildWithOptions(test_main, options);
#endif
return client_process_ != base::kNullProcessHandle;
}
bool IPCTestBase::WaitForClientShutdown() {
DCHECK(client_process_ != base::kNullProcessHandle);
bool rv = base::WaitForSingleProcess(client_process_,
base::TimeDelta::FromSeconds(5));
base::CloseProcessHandle(client_process_);
client_process_ = base::kNullProcessHandle;
return rv;
}
scoped_refptr<base::TaskRunner> IPCTestBase::io_thread_task_runner() {
return message_loop_->message_loop_proxy();
}