OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stdio.h> | 5 #include <stdio.h> |
6 #include <string> | 6 #include <string> |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #if defined(OS_LINUX) || defined(OS_MACOSX) | 10 #if defined(OS_LINUX) || defined(OS_MACOSX) |
11 #include "base/file_descriptor_posix.h" | 11 #include "base/file_descriptor_posix.h" |
12 #endif // defined(OS_LINUX) || defined(OS_MACOSX) | 12 #endif // defined(OS_LINUX) || defined(OS_MACOSX) |
13 #include "base/platform_thread.h" | 13 #include "base/platform_thread.h" |
14 #include "base/process_util.h" | 14 #include "base/process_util.h" |
15 #include "base/sync_socket.h" | 15 #include "base/sync_socket.h" |
16 #include "ipc/ipc_channel.h" | 16 #include "ipc/ipc_channel.h" |
17 #include "ipc/ipc_channel_proxy.h" | 17 #include "ipc/ipc_channel_proxy.h" |
18 #include "ipc/ipc_message_utils.h" | 18 #include "ipc/ipc_message_utils.h" |
19 #include "ipc/ipc_message_utils_impl.h" | 19 #include "ipc/ipc_message_utils_impl.h" |
20 #include "ipc/ipc_tests.h" | 20 #include "ipc/ipc_tests.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 #include "testing/multiprocess_func_list.h" | 22 #include "testing/multiprocess_func_list.h" |
23 | 23 |
24 | 24 |
25 // We don't actually use the messages defined in this file, but we do this | 25 // We don't actually use the messages defined in this file, but we do this |
26 // to get to the IPC macros. | 26 // to get to the IPC macros. |
27 #define MESSAGES_INTERNAL_FILE "ipc/ipc_sync_message_unittest.h" | 27 #include "ipc/ipc_sync_message_unittest.h" |
28 #include "ipc/ipc_message_macros.h" | |
29 | 28 |
30 enum IPCMessageIds { | 29 enum IPCMessageIds { |
31 UNUSED_IPC_TYPE, | 30 UNUSED_IPC_TYPE, |
32 SERVER_FIRST_IPC_TYPE, // SetHandle message sent to server. | 31 SERVER_FIRST_IPC_TYPE, // SetHandle message sent to server. |
33 SERVER_SECOND_IPC_TYPE, // Shutdown message sent to server. | 32 SERVER_SECOND_IPC_TYPE, // Shutdown message sent to server. |
34 CLIENT_FIRST_IPC_TYPE // Response message sent to client. | 33 CLIENT_FIRST_IPC_TYPE // Response message sent to client. |
35 }; | 34 }; |
36 | 35 |
37 namespace { | 36 namespace { |
38 const char kHelloString[] = "Hello, SyncSocket Client"; | 37 const char kHelloString[] = "Hello, SyncSocket Client"; |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 #endif // defined(OS_WIN) | 241 #endif // defined(OS_WIN) |
243 EXPECT_TRUE(chan.Send(msg)); | 242 EXPECT_TRUE(chan.Send(msg)); |
244 // Use the current thread as the I/O thread. | 243 // Use the current thread as the I/O thread. |
245 MessageLoop::current()->Run(); | 244 MessageLoop::current()->Run(); |
246 // Shut down. | 245 // Shut down. |
247 delete pair[0]; | 246 delete pair[0]; |
248 delete pair[1]; | 247 delete pair[1]; |
249 EXPECT_TRUE(base::WaitForSingleProcess(server_process, 5000)); | 248 EXPECT_TRUE(base::WaitForSingleProcess(server_process, 5000)); |
250 base::CloseProcessHandle(server_process); | 249 base::CloseProcessHandle(server_process); |
251 } | 250 } |
OLD | NEW |