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 #ifndef CHROME_COMMON_IPC_TEST_SINK_H_ | 5 #ifndef CHROME_COMMON_IPC_TEST_SINK_H_ |
6 #define CHROME_COMMON_IPC_TEST_SINK_H_ | 6 #define CHROME_COMMON_IPC_TEST_SINK_H_ |
7 | 7 |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "ipc/ipc_message.h" | 12 #include "ipc/ipc_message.h" |
13 #include "ipc/ipc_channel.h" | |
14 | 13 |
15 namespace IPC { | 14 namespace IPC { |
16 | 15 |
17 // This test sink provides a "sink" for IPC messages that are sent. It allows | 16 // This test sink provides a "sink" for IPC messages that are sent. It allows |
18 // the caller to query messages received in various different ways. It is | 17 // the caller to query messages received in various different ways. It is |
19 // designed for tests for objects that use the IPC system. | 18 // designed for tests for objects that use the IPC system. |
20 // | 19 // |
21 // Typical usage: | 20 // Typical usage: |
22 // | 21 // |
23 // test_sink.ClearMessages(); | 22 // test_sink.ClearMessages(); |
(...skipping 10 matching lines...) Expand all Loading... |
34 // ASSERT_TRUE(msg); | 33 // ASSERT_TRUE(msg); |
35 // bool first_param; | 34 // bool first_param; |
36 // int second_param; | 35 // int second_param; |
37 // ViewMsg_Foo::Read(msg, &first_param, &second_param); | 36 // ViewMsg_Foo::Read(msg, &first_param, &second_param); |
38 // | 37 // |
39 // // Go on to the next phase of the test. | 38 // // Go on to the next phase of the test. |
40 // test_sink.ClearMessages(); | 39 // test_sink.ClearMessages(); |
41 // | 40 // |
42 // To hook up the sink, all you need to do is call OnMessageReceived when a | 41 // To hook up the sink, all you need to do is call OnMessageReceived when a |
43 // message is received. | 42 // message is received. |
44 class TestSink : public IPC::Channel { | 43 class TestSink { |
45 public: | 44 public: |
46 TestSink(); | 45 TestSink(); |
47 ~TestSink(); | 46 ~TestSink(); |
48 | 47 |
49 // Used by the source of the messages to send the message to the sink. This | 48 // Used by the source of the messages to send the message to the sink. This |
50 // will make a copy of the message and store it in the list. | 49 // will make a copy of the message and store it in the list. |
51 virtual bool Send(Message* message); | 50 void OnMessageReceived(const Message& msg); |
52 | 51 |
53 // Returns the number of messages in the queue. | 52 // Returns the number of messages in the queue. |
54 size_t message_count() const { return messages_.size(); } | 53 size_t message_count() const { return messages_.size(); } |
55 | 54 |
56 // Clears the message queue of saved messages. | 55 // Clears the message queue of saved messages. |
57 void ClearMessages(); | 56 void ClearMessages(); |
58 | 57 |
59 // Returns the message at the given index in the queue. The index may be out | 58 // Returns the message at the given index in the queue. The index may be out |
60 // of range, in which case the return value is NULL. The returned pointer will | 59 // of range, in which case the return value is NULL. The returned pointer will |
61 // only be valid until another message is received or the list is cleared. | 60 // only be valid until another message is received or the list is cleared. |
(...skipping 14 matching lines...) Expand all Loading... |
76 private: | 75 private: |
77 // The actual list of received messages. | 76 // The actual list of received messages. |
78 std::vector<Message> messages_; | 77 std::vector<Message> messages_; |
79 | 78 |
80 DISALLOW_COPY_AND_ASSIGN(TestSink); | 79 DISALLOW_COPY_AND_ASSIGN(TestSink); |
81 }; | 80 }; |
82 | 81 |
83 } // namespace IPC | 82 } // namespace IPC |
84 | 83 |
85 #endif // CHROME_COMMON_IPC_TEST_SINK_H_ | 84 #endif // CHROME_COMMON_IPC_TEST_SINK_H_ |
OLD | NEW |