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

Side by Side Diff: chromeos/dbus/blocking_method_caller_unittest.cc

Issue 24554002: dbus: Replace PostTaskTo*Thread methods with Get*TaskRunner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chromeos/dbus/blocking_method_caller.cc ('k') | chromeos/dbus/shill_client_unittest_base.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "chromeos/dbus/blocking_method_caller.h" 5 #include "chromeos/dbus/blocking_method_caller.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/task_runner.h"
10 #include "dbus/message.h" 11 #include "dbus/message.h"
11 #include "dbus/mock_bus.h" 12 #include "dbus/mock_bus.h"
12 #include "dbus/mock_object_proxy.h" 13 #include "dbus/mock_object_proxy.h"
13 #include "dbus/object_path.h" 14 #include "dbus/object_path.h"
14 #include "testing/gmock/include/gmock/gmock.h" 15 #include "testing/gmock/include/gmock/gmock.h"
15 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
16 17
17 using ::testing::_; 18 using ::testing::_;
18 using ::testing::Invoke; 19 using ::testing::Invoke;
19 using ::testing::Return; 20 using ::testing::Return;
20 21
21 namespace chromeos { 22 namespace chromeos {
22 23
24 namespace {
25
26 class FakeTaskRunner : public base::TaskRunner {
27 public:
28 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
29 const base::Closure& task,
30 base::TimeDelta delay) OVERRIDE {
31 task.Run();
32 return true;
33 }
34 virtual bool RunsTasksOnCurrentThread() const OVERRIDE { return true; }
35 };
36
37 } // namespace
38
23 class BlockingMethodCallerTest : public testing::Test { 39 class BlockingMethodCallerTest : public testing::Test {
24 public: 40 public:
25 BlockingMethodCallerTest() { 41 BlockingMethodCallerTest() : task_runner_(new FakeTaskRunner) {
26 } 42 }
27 43
28 virtual void SetUp() { 44 virtual void SetUp() {
29 // Create a mock bus. 45 // Create a mock bus.
30 dbus::Bus::Options options; 46 dbus::Bus::Options options;
31 options.bus_type = dbus::Bus::SYSTEM; 47 options.bus_type = dbus::Bus::SYSTEM;
32 mock_bus_ = new dbus::MockBus(options); 48 mock_bus_ = new dbus::MockBus(options);
33 49
34 // Create a mock proxy. 50 // Create a mock proxy.
35 mock_proxy_ = new dbus::MockObjectProxy( 51 mock_proxy_ = new dbus::MockObjectProxy(
36 mock_bus_.get(), 52 mock_bus_.get(),
37 "org.chromium.TestService", 53 "org.chromium.TestService",
38 dbus::ObjectPath("/org/chromium/TestObject")); 54 dbus::ObjectPath("/org/chromium/TestObject"));
39 55
40 // Set an expectation so mock_proxy's CallMethodAndBlock() will use 56 // Set an expectation so mock_proxy's CallMethodAndBlock() will use
41 // CreateMockProxyResponse() to return responses. 57 // CreateMockProxyResponse() to return responses.
42 EXPECT_CALL(*mock_proxy_.get(), MockCallMethodAndBlock(_, _)) 58 EXPECT_CALL(*mock_proxy_.get(), MockCallMethodAndBlock(_, _))
43 .WillRepeatedly( 59 .WillRepeatedly(
44 Invoke(this, &BlockingMethodCallerTest::CreateMockProxyResponse)); 60 Invoke(this, &BlockingMethodCallerTest::CreateMockProxyResponse));
45 61
46 // Set an expectation so mock_bus's GetObjectProxy() for the given 62 // Set an expectation so mock_bus's GetObjectProxy() for the given
47 // service name and the object path will return mock_proxy_. 63 // service name and the object path will return mock_proxy_.
48 EXPECT_CALL(*mock_bus_.get(), 64 EXPECT_CALL(*mock_bus_.get(),
49 GetObjectProxy("org.chromium.TestService", 65 GetObjectProxy("org.chromium.TestService",
50 dbus::ObjectPath("/org/chromium/TestObject"))) 66 dbus::ObjectPath("/org/chromium/TestObject")))
51 .WillOnce(Return(mock_proxy_.get())); 67 .WillOnce(Return(mock_proxy_.get()));
52 68
53 // Set an expectation so mock_bus's PostTaskToDBusThread() will run the 69 // Set an expectation so mock_bus's GetDBusTaskRunner will return the fake
54 // given task. 70 // task runner.
55 EXPECT_CALL(*mock_bus_.get(), PostTaskToDBusThread(_, _)) 71 EXPECT_CALL(*mock_bus_.get(), GetDBusTaskRunner())
56 .WillRepeatedly(Invoke(this, &BlockingMethodCallerTest::RunTask)); 72 .WillRepeatedly(Return(task_runner_));
57 73
58 // ShutdownAndBlock() will be called in TearDown(). 74 // ShutdownAndBlock() will be called in TearDown().
59 EXPECT_CALL(*mock_bus_.get(), ShutdownAndBlock()).WillOnce(Return()); 75 EXPECT_CALL(*mock_bus_.get(), ShutdownAndBlock()).WillOnce(Return());
60 } 76 }
61 77
62 virtual void TearDown() { 78 virtual void TearDown() {
63 mock_bus_->ShutdownAndBlock(); 79 mock_bus_->ShutdownAndBlock();
64 } 80 }
65 81
66 protected: 82 protected:
83 scoped_refptr<FakeTaskRunner> task_runner_;
67 scoped_refptr<dbus::MockBus> mock_bus_; 84 scoped_refptr<dbus::MockBus> mock_bus_;
68 scoped_refptr<dbus::MockObjectProxy> mock_proxy_; 85 scoped_refptr<dbus::MockObjectProxy> mock_proxy_;
69 86
70 private: 87 private:
71 // Returns a response for the given method call. Used to implement 88 // Returns a response for the given method call. Used to implement
72 // CallMethodAndBlock() for |mock_proxy_|. 89 // CallMethodAndBlock() for |mock_proxy_|.
73 dbus::Response* CreateMockProxyResponse(dbus::MethodCall* method_call, 90 dbus::Response* CreateMockProxyResponse(dbus::MethodCall* method_call,
74 int timeout_ms) { 91 int timeout_ms) {
75 if (method_call->GetInterface() == "org.chromium.TestInterface" && 92 if (method_call->GetInterface() == "org.chromium.TestInterface" &&
76 method_call->GetMember() == "Echo") { 93 method_call->GetMember() == "Echo") {
77 dbus::MessageReader reader(method_call); 94 dbus::MessageReader reader(method_call);
78 std::string text_message; 95 std::string text_message;
79 if (reader.PopString(&text_message)) { 96 if (reader.PopString(&text_message)) {
80 scoped_ptr<dbus::Response> response = dbus::Response::CreateEmpty(); 97 scoped_ptr<dbus::Response> response = dbus::Response::CreateEmpty();
81 dbus::MessageWriter writer(response.get()); 98 dbus::MessageWriter writer(response.get());
82 writer.AppendString(text_message); 99 writer.AppendString(text_message);
83 return response.release(); 100 return response.release();
84 } 101 }
85 } 102 }
86 103
87 LOG(ERROR) << "Unexpected method call: " << method_call->ToString(); 104 LOG(ERROR) << "Unexpected method call: " << method_call->ToString();
88 return NULL; 105 return NULL;
89 } 106 }
90
91 // Runs the given task.
92 void RunTask(const tracked_objects::Location& from_here,
93 const base::Closure& task) {
94 task.Run();
95 }
96 }; 107 };
97 108
98 TEST_F(BlockingMethodCallerTest, Echo) { 109 TEST_F(BlockingMethodCallerTest, Echo) {
99 const char kHello[] = "Hello"; 110 const char kHello[] = "Hello";
100 // Get an object proxy from the mock bus. 111 // Get an object proxy from the mock bus.
101 dbus::ObjectProxy* proxy = mock_bus_->GetObjectProxy( 112 dbus::ObjectProxy* proxy = mock_bus_->GetObjectProxy(
102 "org.chromium.TestService", 113 "org.chromium.TestService",
103 dbus::ObjectPath("/org/chromium/TestObject")); 114 dbus::ObjectPath("/org/chromium/TestObject"));
104 115
105 // Create a method call. 116 // Create a method call.
106 dbus::MethodCall method_call("org.chromium.TestInterface", "Echo"); 117 dbus::MethodCall method_call("org.chromium.TestInterface", "Echo");
107 dbus::MessageWriter writer(&method_call); 118 dbus::MessageWriter writer(&method_call);
108 writer.AppendString(kHello); 119 writer.AppendString(kHello);
109 120
110 // Call the method. 121 // Call the method.
111 BlockingMethodCaller blocking_method_caller(mock_bus_.get(), proxy); 122 BlockingMethodCaller blocking_method_caller(mock_bus_.get(), proxy);
112 scoped_ptr<dbus::Response> response( 123 scoped_ptr<dbus::Response> response(
113 blocking_method_caller.CallMethodAndBlock(&method_call)); 124 blocking_method_caller.CallMethodAndBlock(&method_call));
114 125
115 // Check the response. 126 // Check the response.
116 ASSERT_TRUE(response.get()); 127 ASSERT_TRUE(response.get());
117 dbus::MessageReader reader(response.get()); 128 dbus::MessageReader reader(response.get());
118 std::string text_message; 129 std::string text_message;
119 ASSERT_TRUE(reader.PopString(&text_message)); 130 ASSERT_TRUE(reader.PopString(&text_message));
120 // The text message should be echo'ed back. 131 // The text message should be echo'ed back.
121 EXPECT_EQ(kHello, text_message); 132 EXPECT_EQ(kHello, text_message);
122 } 133 }
123 134
124 } // namespace chromeos 135 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/dbus/blocking_method_caller.cc ('k') | chromeos/dbus/shill_client_unittest_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698