OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #include "base/platform_thread.h" | 10 #include "base/platform_thread.h" |
11 #include "base/process_util.h" | 11 #include "base/process_util.h" |
12 #include "ipc/ipc_channel.h" | 12 #include "ipc/ipc_channel.h" |
13 #include "ipc/ipc_channel_proxy.h" | 13 #include "ipc/ipc_channel_proxy.h" |
14 #include "ipc/ipc_message_utils.h" | 14 #include "ipc/ipc_message_utils.h" |
| 15 #include "ipc/ipc_message_utils_impl.h" |
15 #include "ipc/ipc_tests.h" | 16 #include "ipc/ipc_tests.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
17 #include "testing/multiprocess_func_list.h" | 18 #include "testing/multiprocess_func_list.h" |
18 | 19 |
19 TEST(IPCMessageIntegrity, ReadBeyondBufferStr) { | 20 TEST(IPCMessageIntegrity, ReadBeyondBufferStr) { |
20 //This was BUG 984408. | 21 //This was BUG 984408. |
21 uint32 v1 = kuint32max - 1; | 22 uint32 v1 = kuint32max - 1; |
22 int v2 = 666; | 23 int v2 = 666; |
23 IPC::Message m(0, 1, IPC::Message::PRIORITY_NORMAL); | 24 IPC::Message m(0, 1, IPC::Message::PRIORITY_NORMAL); |
24 EXPECT_TRUE(m.WriteInt(v1)); | 25 EXPECT_TRUE(m.WriteInt(v1)); |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 msg = new IPC::Message(MSG_ROUTING_CONTROL, MsgClassIS::ID, | 423 msg = new IPC::Message(MSG_ROUTING_CONTROL, MsgClassIS::ID, |
423 IPC::Message::PRIORITY_NORMAL); | 424 IPC::Message::PRIORITY_NORMAL); |
424 msg->WriteInt(0x64); | 425 msg->WriteInt(0x64); |
425 msg->WriteInt(0x32); | 426 msg->WriteInt(0x32); |
426 EXPECT_FALSE(server.OnMessageReceived(*msg)); | 427 EXPECT_FALSE(server.OnMessageReceived(*msg)); |
427 delete msg; | 428 delete msg; |
428 | 429 |
429 EXPECT_EQ(0, server.unhandled_msgs()); | 430 EXPECT_EQ(0, server.unhandled_msgs()); |
430 #endif | 431 #endif |
431 } | 432 } |
OLD | NEW |