| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 DBUS_MOCK_OBJECT_PROXY_H_ | 5 #ifndef DBUS_MOCK_OBJECT_PROXY_H_ |
| 6 #define DBUS_MOCK_OBJECT_PROXY_H_ | 6 #define DBUS_MOCK_OBJECT_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "dbus/message.h" | 10 #include "dbus/message.h" |
| 11 #include "dbus/object_path.h" | 11 #include "dbus/object_path.h" |
| 12 #include "dbus/object_proxy.h" | 12 #include "dbus/object_proxy.h" |
| 13 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
| 14 | 14 |
| 15 namespace dbus { | 15 namespace dbus { |
| 16 | 16 |
| 17 // Mock for ObjectProxy. | 17 // Mock for ObjectProxy. |
| 18 class MockObjectProxy : public ObjectProxy { | 18 class MockObjectProxy : public ObjectProxy { |
| 19 public: | 19 public: |
| 20 MockObjectProxy(Bus* bus, | 20 MockObjectProxy(Bus* bus, |
| 21 const std::string& service_name, | 21 const std::string& service_name, |
| 22 const ObjectPath& object_path); | 22 const ObjectPath& object_path); |
| 23 | 23 |
| 24 // GMock doesn't support the return type of scoped_ptr<> because scoped_ptr is | 24 // GMock doesn't support the return type of std::unique_ptr<> because |
| 25 // uncopyable. This is a workaround which defines |MockCallMethodAndBlock| as | 25 // std::unique_ptr is uncopyable. This is a workaround which defines |
| 26 // a mock method and makes |CallMethodAndBlock| call the mocked method. | 26 // |MockCallMethodAndBlock| as a mock method and makes |
| 27 // Use |MockCallMethodAndBlock| for setting/testing expectations. | 27 // |CallMethodAndBlock| call the mocked method. Use |MockCallMethodAndBlock| |
| 28 // for setting/testing expectations. |
| 28 MOCK_METHOD3(MockCallMethodAndBlockWithErrorDetails, | 29 MOCK_METHOD3(MockCallMethodAndBlockWithErrorDetails, |
| 29 Response*(MethodCall* method_call, | 30 Response*(MethodCall* method_call, |
| 30 int timeout_ms, | 31 int timeout_ms, |
| 31 ScopedDBusError* error)); | 32 ScopedDBusError* error)); |
| 32 scoped_ptr<Response> CallMethodAndBlockWithErrorDetails( | 33 std::unique_ptr<Response> CallMethodAndBlockWithErrorDetails( |
| 33 MethodCall* method_call, | 34 MethodCall* method_call, |
| 34 int timeout_ms, | 35 int timeout_ms, |
| 35 ScopedDBusError* error) override { | 36 ScopedDBusError* error) override { |
| 36 return scoped_ptr<Response>( | 37 return std::unique_ptr<Response>( |
| 37 MockCallMethodAndBlockWithErrorDetails(method_call, timeout_ms, error)); | 38 MockCallMethodAndBlockWithErrorDetails(method_call, timeout_ms, error)); |
| 38 } | 39 } |
| 39 MOCK_METHOD2(MockCallMethodAndBlock, Response*(MethodCall* method_call, | 40 MOCK_METHOD2(MockCallMethodAndBlock, Response*(MethodCall* method_call, |
| 40 int timeout_ms)); | 41 int timeout_ms)); |
| 41 scoped_ptr<Response> CallMethodAndBlock(MethodCall* method_call, | 42 std::unique_ptr<Response> CallMethodAndBlock(MethodCall* method_call, |
| 42 int timeout_ms) override { | 43 int timeout_ms) override { |
| 43 return scoped_ptr<Response>(MockCallMethodAndBlock(method_call, | 44 return std::unique_ptr<Response>( |
| 44 timeout_ms)); | 45 MockCallMethodAndBlock(method_call, timeout_ms)); |
| 45 } | 46 } |
| 46 MOCK_METHOD3(CallMethod, void(MethodCall* method_call, | 47 MOCK_METHOD3(CallMethod, void(MethodCall* method_call, |
| 47 int timeout_ms, | 48 int timeout_ms, |
| 48 ResponseCallback callback)); | 49 ResponseCallback callback)); |
| 49 MOCK_METHOD4(CallMethodWithErrorCallback, void(MethodCall* method_call, | 50 MOCK_METHOD4(CallMethodWithErrorCallback, void(MethodCall* method_call, |
| 50 int timeout_ms, | 51 int timeout_ms, |
| 51 ResponseCallback callback, | 52 ResponseCallback callback, |
| 52 ErrorCallback error_callback)); | 53 ErrorCallback error_callback)); |
| 53 MOCK_METHOD4(ConnectToSignal, | 54 MOCK_METHOD4(ConnectToSignal, |
| 54 void(const std::string& interface_name, | 55 void(const std::string& interface_name, |
| 55 const std::string& signal_name, | 56 const std::string& signal_name, |
| 56 SignalCallback signal_callback, | 57 SignalCallback signal_callback, |
| 57 OnConnectedCallback on_connected_callback)); | 58 OnConnectedCallback on_connected_callback)); |
| 58 MOCK_METHOD0(Detach, void()); | 59 MOCK_METHOD0(Detach, void()); |
| 59 | 60 |
| 60 protected: | 61 protected: |
| 61 ~MockObjectProxy() override; | 62 ~MockObjectProxy() override; |
| 62 }; | 63 }; |
| 63 | 64 |
| 64 } // namespace dbus | 65 } // namespace dbus |
| 65 | 66 |
| 66 #endif // DBUS_MOCK_OBJECT_PROXY_H_ | 67 #endif // DBUS_MOCK_OBJECT_PROXY_H_ |
| OLD | NEW |