Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(634)

Unified Diff: mock_dbus_interface.h

Issue 6594025: AU: Full proxy support (Closed) Base URL: http://git.chromium.org/git/update_engine.git@master
Patch Set: fixes for review Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « main.cc ('k') | update_attempter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mock_dbus_interface.h
diff --git a/mock_dbus_interface.h b/mock_dbus_interface.h
index c8171097f47793d67c13c79eeb21ac04448d50ad..781b3f3e9194956e9ef51fa865a4888d9e885150 100644
--- a/mock_dbus_interface.h
+++ b/mock_dbus_interface.h
@@ -37,19 +37,70 @@ class MockDbusGlib : public DbusGlibInterface {
GType var_arg3,
GType var_arg4, gchar** var_arg5,
GType var_arg6, GArray** var_arg7));
+ MOCK_METHOD10(ProxyCall, gboolean(DBusGProxy* proxy,
+ const char* method,
+ GError** error,
+ GType var_arg1, const char* var_arg2,
+ GType var_arg3, const char* var_arg4,
+ GType var_arg5, const char* var_arg6,
+ GType var_arg7));
+
+ MOCK_METHOD1(ConnectionGetConnection, DBusConnection*(DBusGConnection* gbus));
+
+ MOCK_METHOD3(DbusBusAddMatch, void(DBusConnection* connection,
+ const char* rule,
+ DBusError* error));
+
+ MOCK_METHOD4(DbusConnectionAddFilter, dbus_bool_t(
+ DBusConnection* connection,
+ DBusHandleMessageFunction function,
+ void* user_data,
+ DBusFreeFunction free_data_function));
+
+ MOCK_METHOD3(DbusConnectionRemoveFilter, void(
+ DBusConnection* connection,
+ DBusHandleMessageFunction function,
+ void* user_data));
+
+ MOCK_METHOD3(DbusMessageIsSignal, dbus_bool_t(DBusMessage* message,
+ const char* interface,
+ const char* signal_name));
+
+ MOCK_METHOD9(DbusMessageGetArgs, dbus_bool_t(
+ DBusMessage* message,
+ DBusError* error,
+ GType var_arg1, char** var_arg2,
+ GType var_arg3, char** var_arg4,
+ GType var_arg5, char** var_arg6,
+ GType var_arg7));
// Since gmock only supports mocking functions up to 10 args, we
// take the 11-arg function we'd like to mock, drop the last arg
// and call the 10-arg version. Dropping the last arg isn't ideal,
// but this is a lot better than nothing.
gboolean ProxyCall(DBusGProxy* proxy,
- const char* method,
- GError** error,
- GType var_arg1, const char* var_arg2,
- GType var_arg3,
- GType var_arg4, gchar** var_arg5,
- GType var_arg6, GArray** var_arg7,
- GType var_arg8) {
+ const char* method,
+ GError** error,
+ GType var_arg1, const char* var_arg2,
+ GType var_arg3,
+ GType var_arg4, gchar** var_arg5,
+ GType var_arg6, GArray** var_arg7,
+ GType var_arg8) {
+ return ProxyCall(proxy,
+ method,
+ error,
+ var_arg1, var_arg2,
+ var_arg3,
+ var_arg4, var_arg5,
+ var_arg6, var_arg7);
+ }
+ gboolean ProxyCall(DBusGProxy* proxy,
+ const char* method,
+ GError** error,
+ GType var_arg1, const char* var_arg2,
+ GType var_arg3, const char* var_arg4,
+ GType var_arg5, const char* var_arg6,
+ GType var_arg7, GType var_arg8) {
return ProxyCall(proxy,
method,
error,
« no previous file with comments | « main.cc ('k') | update_attempter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698