adamk@chromium.org | 35c0eef | 2012-02-11 06:45:23 +0900 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef DBUS_MOCK_BUS_H_ |
| 6 | #define DBUS_MOCK_BUS_H_ |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 7 | |
avi | 0ad0ce0 | 2015-12-23 03:12:45 +0900 | [diff] [blame] | 8 | #include <stdint.h> |
| 9 | |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 10 | #include "dbus/bus.h" |
keybuk@google.com | bf4649a | 2012-02-15 06:29:06 +0900 | [diff] [blame] | 11 | #include "dbus/object_path.h" |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 12 | #include "testing/gmock/include/gmock/gmock.h" |
| 13 | |
| 14 | namespace dbus { |
| 15 | |
| 16 | // Mock for Bus class. Along with MockObjectProxy and MockExportedObject, |
| 17 | // the mock classes can be used to write unit tests without issuing real |
| 18 | // D-Bus calls. |
| 19 | class MockBus : public Bus { |
| 20 | public: |
thestig@chromium.org | 074b1db | 2013-02-20 10:36:53 +0900 | [diff] [blame] | 21 | MockBus(const Bus::Options& options); |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 22 | |
| 23 | MOCK_METHOD2(GetObjectProxy, ObjectProxy*(const std::string& service_name, |
keybuk@google.com | bf4649a | 2012-02-15 06:29:06 +0900 | [diff] [blame] | 24 | const ObjectPath& object_path)); |
adamk@chromium.org | 35c0eef | 2012-02-11 06:45:23 +0900 | [diff] [blame] | 25 | MOCK_METHOD3(GetObjectProxyWithOptions, |
| 26 | ObjectProxy*(const std::string& service_name, |
keybuk@google.com | bf4649a | 2012-02-15 06:29:06 +0900 | [diff] [blame] | 27 | const ObjectPath& object_path, |
adamk@chromium.org | 35c0eef | 2012-02-11 06:45:23 +0900 | [diff] [blame] | 28 | int options)); |
keybuk@chromium.org | 9cb73f0 | 2012-03-10 10:12:52 +0900 | [diff] [blame] | 29 | MOCK_METHOD1(GetExportedObject, ExportedObject*( |
keybuk@google.com | bf4649a | 2012-02-15 06:29:06 +0900 | [diff] [blame] | 30 | const ObjectPath& object_path)); |
keybuk@chromium.org | 0971501 | 2013-03-26 03:20:08 +0900 | [diff] [blame] | 31 | MOCK_METHOD2(GetObjectManager, ObjectManager*(const std::string&, |
| 32 | const ObjectPath&)); |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 33 | MOCK_METHOD0(ShutdownAndBlock, void()); |
satorux@chromium.org | d336d45 | 2011-09-02 15:56:23 +0900 | [diff] [blame] | 34 | MOCK_METHOD0(ShutdownOnDBusThreadAndBlock, void()); |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 35 | MOCK_METHOD0(Connect, bool()); |
cmasone@chromium.org | 989857e | 2013-07-31 15:34:59 +0900 | [diff] [blame] | 36 | MOCK_METHOD3(RequestOwnership, void( |
keybuk@chromium.org | 9cb73f0 | 2012-03-10 10:12:52 +0900 | [diff] [blame] | 37 | const std::string& service_name, |
cmasone@chromium.org | 989857e | 2013-07-31 15:34:59 +0900 | [diff] [blame] | 38 | ServiceOwnershipOptions options, |
keybuk@chromium.org | 9cb73f0 | 2012-03-10 10:12:52 +0900 | [diff] [blame] | 39 | OnOwnershipCallback on_ownership_callback)); |
cmasone@chromium.org | 989857e | 2013-07-31 15:34:59 +0900 | [diff] [blame] | 40 | MOCK_METHOD2(RequestOwnershipAndBlock, bool(const std::string& service_name, |
| 41 | ServiceOwnershipOptions options)); |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 42 | MOCK_METHOD1(ReleaseOwnership, bool(const std::string& service_name)); |
| 43 | MOCK_METHOD0(SetUpAsyncOperations, bool()); |
| 44 | MOCK_METHOD3(SendWithReplyAndBlock, DBusMessage*(DBusMessage* request, |
| 45 | int timeout_ms, |
| 46 | DBusError* error)); |
| 47 | MOCK_METHOD3(SendWithReply, void(DBusMessage* request, |
| 48 | DBusPendingCall** pending_call, |
| 49 | int timeout_ms)); |
avi | 0ad0ce0 | 2015-12-23 03:12:45 +0900 | [diff] [blame] | 50 | MOCK_METHOD2(Send, void(DBusMessage* request, uint32_t* serial)); |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 51 | MOCK_METHOD2(AddFilter, void(DBusHandleMessageFunction handle_message, |
| 52 | void* user_data)); |
| 53 | MOCK_METHOD2(RemoveFilter, void(DBusHandleMessageFunction handle_message, |
| 54 | void* user_data)); |
| 55 | MOCK_METHOD2(AddMatch, void(const std::string& match_rule, |
| 56 | DBusError* error)); |
deymo@chromium.org | 7894ebf | 2013-01-31 15:08:02 +0900 | [diff] [blame] | 57 | MOCK_METHOD2(RemoveMatch, bool(const std::string& match_rule, |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 58 | DBusError* error)); |
keybuk@google.com | bf4649a | 2012-02-15 06:29:06 +0900 | [diff] [blame] | 59 | MOCK_METHOD4(TryRegisterObjectPath, bool(const ObjectPath& object_path, |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 60 | const DBusObjectPathVTable* vtable, |
| 61 | void* user_data, |
| 62 | DBusError* error)); |
keybuk@google.com | bf4649a | 2012-02-15 06:29:06 +0900 | [diff] [blame] | 63 | MOCK_METHOD1(UnregisterObjectPath, void(const ObjectPath& object_path)); |
hashimoto@chromium.org | 955f648 | 2013-09-26 13:32:29 +0900 | [diff] [blame] | 64 | MOCK_METHOD0(GetDBusTaskRunner, base::TaskRunner*()); |
| 65 | MOCK_METHOD0(GetOriginTaskRunner, base::TaskRunner*()); |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 66 | MOCK_METHOD0(HasDBusThread, bool()); |
| 67 | MOCK_METHOD0(AssertOnOriginThread, void()); |
| 68 | MOCK_METHOD0(AssertOnDBusThread, void()); |
rsleevi@chromium.org | d216399 | 2012-05-19 03:00:22 +0900 | [diff] [blame] | 69 | |
| 70 | protected: |
| 71 | virtual ~MockBus(); |
satorux@chromium.org | f77861f | 2011-08-25 14:18:29 +0900 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | } // namespace dbus |
| 75 | |
| 76 | #endif // DBUS_MOCK_BUS_H_ |