blob: 24fe2b0cefa78b277cc2e5b0f61d0cc83f5a82c1 [file] [log] [blame]
tedvessenes@gmail.com56b33702012-03-07 13:41:40 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// These tests are POSIX only.
6
7#include "ipc/ipc_channel_posix.h"
8
9#include <fcntl.h>
10#include <sys/socket.h>
11#include <sys/un.h>
12#include <unistd.h>
13
14#include "base/basictypes.h"
15#include "base/eintr_wrapper.h"
16#include "base/file_path.h"
17#include "base/file_util.h"
levin@chromium.org5c528682011-03-28 10:54:15 +090018#include "base/memory/scoped_ptr.h"
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090019#include "base/message_loop.h"
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +090020#include "base/path_service.h"
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090021#include "base/test/multiprocess_test.h"
22#include "base/test/test_timeouts.h"
23#include "testing/multiprocess_func_list.h"
24
25namespace {
26
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +090027static const uint32 kQuitMessage = 47;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090028
29class IPCChannelPosixTestListener : public IPC::Channel::Listener {
30 public:
31 enum STATUS {
32 DISCONNECTED,
33 MESSAGE_RECEIVED,
34 CHANNEL_ERROR,
35 CONNECTED,
36 DENIED,
37 LISTEN_ERROR
38 };
39
40 IPCChannelPosixTestListener(bool quit_only_on_message)
41 : status_(DISCONNECTED), quit_only_on_message_(quit_only_on_message) {}
42
43 virtual ~IPCChannelPosixTestListener() {}
44
evan@chromium.orgecc3f072011-08-17 06:09:25 +090045 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE {
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +090046 EXPECT_EQ(message.type(), kQuitMessage);
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090047 status_ = MESSAGE_RECEIVED;
48 QuitRunLoop();
jam@chromium.org8a2c7842010-12-24 15:19:28 +090049 return true;
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090050 }
51
evan@chromium.orgecc3f072011-08-17 06:09:25 +090052 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090053 status_ = CONNECTED;
54 if (!quit_only_on_message_) {
55 QuitRunLoop();
56 }
57 }
58
evan@chromium.orgecc3f072011-08-17 06:09:25 +090059 virtual void OnChannelError() OVERRIDE {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090060 status_ = CHANNEL_ERROR;
61 if (!quit_only_on_message_) {
62 QuitRunLoop();
63 }
64 }
65
evan@chromium.orgecc3f072011-08-17 06:09:25 +090066 virtual void OnChannelDenied() OVERRIDE {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090067 status_ = DENIED;
68 if (!quit_only_on_message_) {
69 QuitRunLoop();
70 }
71 }
72
evan@chromium.orgecc3f072011-08-17 06:09:25 +090073 virtual void OnChannelListenError() OVERRIDE {
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090074 status_ = LISTEN_ERROR;
75 if (!quit_only_on_message_) {
76 QuitRunLoop();
77 }
78 }
79
80 STATUS status() { return status_; }
81
82 void QuitRunLoop() {
83 MessageLoopForIO::current()->QuitNow();
84 }
85
86 private:
87 // The current status of the listener.
88 STATUS status_;
89 // If |quit_only_on_message_| then the listener will only break out of
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +090090 // the run loop when kQuitMessage is received.
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090091 bool quit_only_on_message_;
92};
93
94} // namespace
95
96class IPCChannelPosixTest : public base::MultiProcessTest {
97 public:
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +090098 static void SetUpSocket(IPC::ChannelHandle *handle,
99 IPC::Channel::Mode mode);
100 static void SpinRunLoop(int milliseconds);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900101 static const std::string GetConnectionSocketName();
102 static const std::string GetChannelDirName();
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900103
104 protected:
105 virtual void SetUp();
106 virtual void TearDown();
107
108private:
109 scoped_ptr<MessageLoopForIO> message_loop_;
110};
111
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900112const std::string IPCChannelPosixTest::GetChannelDirName() {
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900113#if defined(OS_ANDROID)
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900114 FilePath tmp_dir;
115 PathService::Get(base::DIR_CACHE, &tmp_dir);
116 return tmp_dir.value();
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900117#else
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900118 return "/var/tmp";
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900119#endif
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900120}
121
122const std::string IPCChannelPosixTest::GetConnectionSocketName() {
123 return GetChannelDirName() + "/chrome_IPCChannelPosixTest__ConnectionSocket";
124}
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900125
126void IPCChannelPosixTest::SetUp() {
127 MultiProcessTest::SetUp();
128 // Construct a fresh IO Message loop for the duration of each test.
129 message_loop_.reset(new MessageLoopForIO());
130}
131
132void IPCChannelPosixTest::TearDown() {
133 message_loop_.reset(NULL);
134 MultiProcessTest::TearDown();
135}
136
137// Create up a socket and bind and listen to it, or connect it
138// depending on the |mode|.
139void IPCChannelPosixTest::SetUpSocket(IPC::ChannelHandle *handle,
140 IPC::Channel::Mode mode) {
141 const std::string& name = handle->name;
142
143 int socket_fd = socket(PF_UNIX, SOCK_STREAM, 0);
144 ASSERT_GE(socket_fd, 0) << name;
145 ASSERT_GE(fcntl(socket_fd, F_SETFL, O_NONBLOCK), 0);
146 struct sockaddr_un server_address = { 0 };
147 memset(&server_address, 0, sizeof(server_address));
148 server_address.sun_family = AF_UNIX;
149 int path_len = snprintf(server_address.sun_path, IPC::kMaxPipeNameLength,
150 "%s", name.c_str());
151 DCHECK_EQ(static_cast<int>(name.length()), path_len);
152 size_t server_address_len = offsetof(struct sockaddr_un,
153 sun_path) + path_len + 1;
154
155 if (mode == IPC::Channel::MODE_NAMED_SERVER) {
156 // Only one server at a time. Cleanup garbage if it exists.
157 unlink(name.c_str());
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +0900158 // Make sure the path we need exists.
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900159 FilePath path(name);
160 FilePath dir_path = path.DirName();
161 ASSERT_TRUE(file_util::CreateDirectory(dir_path));
162 ASSERT_GE(bind(socket_fd,
163 reinterpret_cast<struct sockaddr *>(&server_address),
164 server_address_len), 0) << server_address.sun_path
165 << ": " << strerror(errno)
166 << "(" << errno << ")";
167 ASSERT_GE(listen(socket_fd, SOMAXCONN), 0) << server_address.sun_path
168 << ": " << strerror(errno)
169 << "(" << errno << ")";
170 } else if (mode == IPC::Channel::MODE_NAMED_CLIENT) {
171 ASSERT_GE(connect(socket_fd,
172 reinterpret_cast<struct sockaddr *>(&server_address),
173 server_address_len), 0) << server_address.sun_path
174 << ": " << strerror(errno)
175 << "(" << errno << ")";
176 } else {
177 FAIL() << "Unknown mode " << mode;
178 }
179 handle->socket.fd = socket_fd;
180}
181
182void IPCChannelPosixTest::SpinRunLoop(int milliseconds) {
183 MessageLoopForIO *loop = MessageLoopForIO::current();
184 // Post a quit task so that this loop eventually ends and we don't hang
185 // in the case of a bad test. Usually, the run loop will quit sooner than
186 // that because all tests use a IPCChannelPosixTestListener which quits the
187 // current run loop on any channel activity.
tedvessenes@gmail.com56b33702012-03-07 13:41:40 +0900188 loop->PostDelayedTask(
189 FROM_HERE,
190 MessageLoop::QuitClosure(),
191 base::TimeDelta::FromMilliseconds(milliseconds));
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900192 loop->Run();
193}
194
195TEST_F(IPCChannelPosixTest, BasicListen) {
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900196 const std::string kChannelName =
197 GetChannelDirName() + "/IPCChannelPosixTest_BasicListen";
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900198
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900199 // Test creating a socket that is listening.
jrg@chromium.org2eb192e2011-11-04 09:14:16 +0900200 IPC::ChannelHandle handle(kChannelName);
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900201 SetUpSocket(&handle, IPC::Channel::MODE_NAMED_SERVER);
202 unlink(handle.name.c_str());
203 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_SERVER, NULL);
204 ASSERT_TRUE(channel.Connect());
205 ASSERT_TRUE(channel.AcceptsConnections());
206 ASSERT_FALSE(channel.HasAcceptedConnection());
207 channel.ResetToAcceptingConnectionState();
208 ASSERT_FALSE(channel.HasAcceptedConnection());
209}
210
211TEST_F(IPCChannelPosixTest, BasicConnected) {
212 // Test creating a socket that is connected.
213 int pipe_fds[2];
214 ASSERT_EQ(0, socketpair(AF_UNIX, SOCK_STREAM, 0, pipe_fds));
215 std::string socket_name("/var/tmp/IPCChannelPosixTest_BasicConnected");
216 ASSERT_GE(fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK), 0);
217
218 base::FileDescriptor fd(pipe_fds[0], false);
219 IPC::ChannelHandle handle(socket_name, fd);
220 IPC::Channel channel(handle, IPC::Channel::MODE_SERVER, NULL);
221 ASSERT_TRUE(channel.Connect());
222 ASSERT_FALSE(channel.AcceptsConnections());
223 channel.Close();
224 ASSERT_TRUE(HANDLE_EINTR(close(pipe_fds[1])) == 0);
225
226 // Make sure that we can use the socket that is created for us by
227 // a standard channel.
228 IPC::Channel channel2(socket_name, IPC::Channel::MODE_SERVER, NULL);
229 ASSERT_TRUE(channel2.Connect());
230 ASSERT_FALSE(channel2.AcceptsConnections());
231}
232
233TEST_F(IPCChannelPosixTest, AdvancedConnected) {
234 // Test creating a connection to an external process.
235 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900236 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900237 SetUpSocket(&chan_handle, IPC::Channel::MODE_NAMED_SERVER);
238 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NAMED_SERVER, &listener);
239 ASSERT_TRUE(channel.Connect());
240 ASSERT_TRUE(channel.AcceptsConnections());
241 ASSERT_FALSE(channel.HasAcceptedConnection());
242
243 base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
244 false);
245 ASSERT_TRUE(handle);
246 SpinRunLoop(TestTimeouts::action_max_timeout_ms());
247 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
248 ASSERT_TRUE(channel.HasAcceptedConnection());
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +0900249 IPC::Message* message = new IPC::Message(0, // routing_id
250 kQuitMessage, // message type
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900251 IPC::Message::PRIORITY_NORMAL);
252 channel.Send(message);
253 SpinRunLoop(TestTimeouts::action_timeout_ms());
254 int exit_code = 0;
255 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
256 EXPECT_EQ(0, exit_code);
257 ASSERT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
258 ASSERT_FALSE(channel.HasAcceptedConnection());
259}
260
261TEST_F(IPCChannelPosixTest, ResetState) {
262 // Test creating a connection to an external process. Close the connection,
263 // but continue to listen and make sure another external process can connect
264 // to us.
265 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900266 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900267 SetUpSocket(&chan_handle, IPC::Channel::MODE_NAMED_SERVER);
268 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NAMED_SERVER, &listener);
269 ASSERT_TRUE(channel.Connect());
270 ASSERT_TRUE(channel.AcceptsConnections());
271 ASSERT_FALSE(channel.HasAcceptedConnection());
272
273 base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
274 false);
275 ASSERT_TRUE(handle);
276 SpinRunLoop(TestTimeouts::action_max_timeout_ms());
277 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
278 ASSERT_TRUE(channel.HasAcceptedConnection());
279 channel.ResetToAcceptingConnectionState();
280 ASSERT_FALSE(channel.HasAcceptedConnection());
281
282 base::ProcessHandle handle2 = SpawnChild("IPCChannelPosixTestConnectionProc",
283 false);
284 ASSERT_TRUE(handle2);
285 SpinRunLoop(TestTimeouts::action_max_timeout_ms());
286 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
287 ASSERT_TRUE(channel.HasAcceptedConnection());
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +0900288 IPC::Message* message = new IPC::Message(0, // routing_id
289 kQuitMessage, // message type
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900290 IPC::Message::PRIORITY_NORMAL);
291 channel.Send(message);
292 SpinRunLoop(TestTimeouts::action_timeout_ms());
293 EXPECT_TRUE(base::KillProcess(handle, 0, false));
294 int exit_code = 0;
295 EXPECT_TRUE(base::WaitForExitCode(handle2, &exit_code));
296 EXPECT_EQ(0, exit_code);
297 ASSERT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
298 ASSERT_FALSE(channel.HasAcceptedConnection());
299}
300
dmaclach@chromium.org344a3d52011-08-25 23:14:05 +0900301TEST_F(IPCChannelPosixTest, BadChannelName) {
302 // Test empty name
303 IPC::ChannelHandle handle("");
304 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_SERVER, NULL);
305 ASSERT_FALSE(channel.Connect());
306
307 // Test name that is too long.
308 const char *kTooLongName = "This_is_a_very_long_name_to_proactively_implement"
309 "client-centered_synergy_through_top-line"
310 "platforms_Phosfluorescently_disintermediate_"
311 "clicks-and-mortar_best_practices_without_"
312 "future-proof_growth_strategies_Continually"
313 "pontificate_proactive_potentialities_before"
314 "leading-edge_processes";
315 EXPECT_GE(strlen(kTooLongName), IPC::kMaxPipeNameLength);
316 IPC::ChannelHandle handle2(kTooLongName);
317 IPC::Channel channel2(handle2, IPC::Channel::MODE_NAMED_SERVER, NULL);
318 EXPECT_FALSE(channel2.Connect());
319}
320
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900321TEST_F(IPCChannelPosixTest, MultiConnection) {
322 // Test setting up a connection to an external process, and then have
323 // another external process attempt to connect to us.
324 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900325 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900326 SetUpSocket(&chan_handle, IPC::Channel::MODE_NAMED_SERVER);
327 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NAMED_SERVER, &listener);
328 ASSERT_TRUE(channel.Connect());
329 ASSERT_TRUE(channel.AcceptsConnections());
330 ASSERT_FALSE(channel.HasAcceptedConnection());
331
332 base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
333 false);
334 ASSERT_TRUE(handle);
335 SpinRunLoop(TestTimeouts::action_max_timeout_ms());
336 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
337 ASSERT_TRUE(channel.HasAcceptedConnection());
338 base::ProcessHandle handle2 = SpawnChild("IPCChannelPosixFailConnectionProc",
339 false);
340 ASSERT_TRUE(handle2);
341 SpinRunLoop(TestTimeouts::action_max_timeout_ms());
342 int exit_code = 0;
343 EXPECT_TRUE(base::WaitForExitCode(handle2, &exit_code));
344 EXPECT_EQ(exit_code, 0);
345 ASSERT_EQ(IPCChannelPosixTestListener::DENIED, listener.status());
346 ASSERT_TRUE(channel.HasAcceptedConnection());
pkasting@chromium.orgc4f2de22011-09-01 09:46:33 +0900347 IPC::Message* message = new IPC::Message(0, // routing_id
348 kQuitMessage, // message type
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900349 IPC::Message::PRIORITY_NORMAL);
350 channel.Send(message);
351 SpinRunLoop(TestTimeouts::action_timeout_ms());
352 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
353 EXPECT_EQ(exit_code, 0);
354 ASSERT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
355 ASSERT_FALSE(channel.HasAcceptedConnection());
356}
357
dmaclach@chromium.org2812db62011-03-03 07:27:14 +0900358TEST_F(IPCChannelPosixTest, DoubleServer) {
359 // Test setting up two servers with the same name.
360 IPCChannelPosixTestListener listener(false);
361 IPCChannelPosixTestListener listener2(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900362 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.org2812db62011-03-03 07:27:14 +0900363 IPC::Channel channel(chan_handle, IPC::Channel::MODE_SERVER, &listener);
364 IPC::Channel channel2(chan_handle, IPC::Channel::MODE_SERVER, &listener2);
365 ASSERT_TRUE(channel.Connect());
366 ASSERT_FALSE(channel2.Connect());
367}
368
369TEST_F(IPCChannelPosixTest, BadMode) {
370 // Test setting up two servers with a bad mode.
371 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900372 IPC::ChannelHandle chan_handle(GetConnectionSocketName());
dmaclach@chromium.org2812db62011-03-03 07:27:14 +0900373 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NONE, &listener);
374 ASSERT_FALSE(channel.Connect());
375}
376
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900377TEST_F(IPCChannelPosixTest, IsNamedServerInitialized) {
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900378 const std::string& connection_socket_name = GetConnectionSocketName();
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900379 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900380 IPC::ChannelHandle chan_handle(connection_socket_name);
381 ASSERT_TRUE(file_util::Delete(FilePath(connection_socket_name), false));
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900382 ASSERT_FALSE(IPC::Channel::IsNamedServerInitialized(
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900383 connection_socket_name));
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900384 IPC::Channel channel(chan_handle, IPC::Channel::MODE_NAMED_SERVER, &listener);
385 ASSERT_TRUE(IPC::Channel::IsNamedServerInitialized(
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900386 connection_socket_name));
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900387 channel.Close();
388 ASSERT_FALSE(IPC::Channel::IsNamedServerInitialized(
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900389 connection_socket_name));
kkania@chromium.orgf37b4e52011-08-09 15:46:06 +0900390}
391
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900392// A long running process that connects to us
393MULTIPROCESS_TEST_MAIN(IPCChannelPosixTestConnectionProc) {
394 MessageLoopForIO message_loop;
395 IPCChannelPosixTestListener listener(true);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900396 IPC::ChannelHandle handle(IPCChannelPosixTest::GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900397 IPCChannelPosixTest::SetUpSocket(&handle, IPC::Channel::MODE_NAMED_CLIENT);
398 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_CLIENT, &listener);
399 EXPECT_TRUE(channel.Connect());
400 IPCChannelPosixTest::SpinRunLoop(TestTimeouts::action_max_timeout_ms());
401 EXPECT_EQ(IPCChannelPosixTestListener::MESSAGE_RECEIVED, listener.status());
402 return 0;
403}
404
405// Simple external process that shouldn't be able to connect to us.
406MULTIPROCESS_TEST_MAIN(IPCChannelPosixFailConnectionProc) {
407 MessageLoopForIO message_loop;
408 IPCChannelPosixTestListener listener(false);
nileshagrawal@chromium.org42a2e0d2012-05-25 11:56:25 +0900409 IPC::ChannelHandle handle(IPCChannelPosixTest::GetConnectionSocketName());
dmaclach@chromium.orgc1d3d422010-12-20 15:59:23 +0900410 IPCChannelPosixTest::SetUpSocket(&handle, IPC::Channel::MODE_NAMED_CLIENT);
411 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_CLIENT, &listener);
412
413 // In this case connect may succeed or fail depending on if the packet
414 // actually gets sent at sendmsg. Since we never delay on send, we may not
415 // see the error. However even if connect succeeds, eventually we will get an
416 // error back since the channel will be closed when we attempt to read from
417 // it.
418 bool connected = channel.Connect();
419 if (connected) {
420 IPCChannelPosixTest::SpinRunLoop(TestTimeouts::action_max_timeout_ms());
421 EXPECT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
422 } else {
423 EXPECT_EQ(IPCChannelPosixTestListener::DISCONNECTED, listener.status());
424 }
425 return 0;
426}