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

Unified Diff: dbus/object_proxy_unittest.cc

Issue 25488002: dbus: Add ObjectProxy::WaitForServiceToBeAvailable() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also test already-available case Created 7 years, 3 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/object_proxy.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/object_proxy_unittest.cc
diff --git a/dbus/object_proxy_unittest.cc b/dbus/object_proxy_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1cf667c3465d4538ae46bc20a2652b0345c2dcb3
--- /dev/null
+++ b/dbus/object_proxy_unittest.cc
@@ -0,0 +1,76 @@
+// Copyright 2013 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.
+
+#include "base/bind.h"
+#include "base/memory/ref_counted.h"
+#include "base/run_loop.h"
+#include "dbus/bus.h"
+#include "dbus/object_proxy.h"
+#include "dbus/test_service.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace dbus {
+namespace {
+
+class ObjectProxyTest : public testing::Test {
+ protected:
+ virtual void SetUp() OVERRIDE {
+ Bus::Options bus_options;
+ bus_options.bus_type = Bus::SESSION;
+ bus_options.connection_type = Bus::PRIVATE;
+ bus_ = new Bus(bus_options);
+
+ object_proxy_ = bus_->GetObjectProxy(
+ "org.chromium.TestService", ObjectPath("/org/chromium/TestObject"));
+ }
+
+ virtual void TearDown() OVERRIDE {
+ bus_->ShutdownAndBlock();
+ }
+
+ base::MessageLoopForIO message_loop_;
+ scoped_refptr<Bus> bus_;
+ ObjectProxy* object_proxy_;
+};
+
+// Used as a WaitForServiceToBeAvailableCallback.
+void OnServiceIsAvailable(scoped_ptr<base::RunLoop>* run_loop,
+ bool service_is_available) {
+ EXPECT_TRUE(service_is_available);
+ ASSERT_TRUE(*run_loop);
+ (*run_loop)->Quit();
+}
+
+TEST_F(ObjectProxyTest, WaitForServiceToBeAvailable) {
+ scoped_ptr<base::RunLoop> run_loop;
+
+ // Callback is not yet called because the service is not available.
+ object_proxy_->WaitForServiceToBeAvailable(
+ base::Bind(&OnServiceIsAvailable, &run_loop));
+ base::RunLoop().RunUntilIdle();
+
+ // Start the service.
+ TestService::Options options;
+ TestService test_service(options);
+ ASSERT_TRUE(test_service.StartService());
+ ASSERT_TRUE(test_service.WaitUntilServiceIsStarted());
+ ASSERT_TRUE(test_service.has_ownership());
+
+ // Callback is called beacuse the service became available.
+ run_loop.reset(new base::RunLoop);
+ run_loop->Run();
+
+ // Callback is called because the service is already available.
+ run_loop.reset(new base::RunLoop);
+ object_proxy_->WaitForServiceToBeAvailable(
+ base::Bind(&OnServiceIsAvailable, &run_loop));
+ run_loop->Run();
+
+ // Shut down the service.
+ test_service.ShutdownAndBlock();
+ test_service.Stop();
+}
+
+} // namespace
+} // namespace dbus
« no previous file with comments | « dbus/object_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698