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

Unified Diff: dbus/mock_bus.h

Issue 7714030: Add mock classes for Bus, ObjectProxy, and ExportedObject. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix clang build Created 9 years, 4 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 | « dbus/exported_object.h ('k') | dbus/mock_bus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/mock_bus.h
diff --git a/dbus/mock_bus.h b/dbus/mock_bus.h
new file mode 100644
index 0000000000000000000000000000000000000000..fff4b15bf92b98b946dedcc3b3544ccb422b9952
--- /dev/null
+++ b/dbus/mock_bus.h
@@ -0,0 +1,70 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef DBUS_MOCK_BUS_H_
+#define DBUS_MOCK_BUS_H_
+#pragma once
+
+#include "dbus/bus.h"
+#include "testing/gmock/include/gmock/gmock.h"
stevenjb 2011/08/25 00:12:54 nit: + empty line
satorux1 2011/08/25 05:17:08 Done.
+namespace dbus {
+
+// Mock for Bus class. Along with MockObjectProxy and MockExportedObject,
+// the mock classes can be used to write unit tests without issuing real
+// D-Bus calls.
+class MockBus : public Bus {
+ public:
+ MockBus(Bus::Options& options);
+ virtual ~MockBus();
+
+ MOCK_METHOD2(GetObjectProxy, ObjectProxy*(const std::string& service_name,
+ const std::string& object_path));
+ MOCK_METHOD2(GetExportedObject, ExportedObject*(
+ const std::string& service_name,
+ const std::string& object_path));
+ MOCK_METHOD0(ShutdownAndBlock, void());
+ MOCK_METHOD1(Shutdown, void(OnShutdownCallback callback));
+ MOCK_METHOD0(Connect, bool());
+ MOCK_METHOD1(RequestOwnership, bool(const std::string& service_name));
+ MOCK_METHOD1(ReleaseOwnership, bool(const std::string& service_name));
+ MOCK_METHOD0(SetUpAsyncOperations, bool());
+ MOCK_METHOD3(SendWithReplyAndBlock, DBusMessage*(DBusMessage* request,
+ int timeout_ms,
+ DBusError* error));
+ MOCK_METHOD3(SendWithReply, void(DBusMessage* request,
+ DBusPendingCall** pending_call,
+ int timeout_ms));
+ MOCK_METHOD2(Send, void(DBusMessage* request,
+ uint32* serial));
+ MOCK_METHOD2(AddFilter, void(DBusHandleMessageFunction handle_message,
+ void* user_data));
+ MOCK_METHOD2(RemoveFilter, void(DBusHandleMessageFunction handle_message,
+ void* user_data));
+ MOCK_METHOD2(AddMatch, void(const std::string& match_rule,
+ DBusError* error));
+ MOCK_METHOD2(RemoveMatch, void(const std::string& match_rule,
+ DBusError* error));
+ MOCK_METHOD4(TryRegisterObjectPath, bool(const std::string& object_path,
+ const DBusObjectPathVTable* vtable,
+ void* user_data,
+ DBusError* error));
+ MOCK_METHOD1(UnregisterObjectPath, void(const std::string& object_path));
+ MOCK_METHOD2(PostTaskToOriginThread, void(
+ const tracked_objects::Location& from_here,
+ const base::Closure& task));
+ MOCK_METHOD2(PostTaskToDBusThread, void(
+ const tracked_objects::Location& from_here,
+ const base::Closure& task));
+ MOCK_METHOD3(PostDelayedTaskToDBusThread, void(
+ const tracked_objects::Location& from_here,
+ const base::Closure& task,
+ int delay_ms));
+ MOCK_METHOD0(HasDBusThread, bool());
+ MOCK_METHOD0(AssertOnOriginThread, void());
+ MOCK_METHOD0(AssertOnDBusThread, void());
+};
+
+} // namespace dbus
+
+#endif // DBUS_MOCK_BUS_H_
« no previous file with comments | « dbus/exported_object.h ('k') | dbus/mock_bus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698