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

Side by Side Diff: ceee/ie/broker/broker_rpc_unittest.cc

Issue 4508002: COM replaced with RPC for firing events in broker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ceee/ie/broker/broker_rpc_client.h"
6 #include "ceee/ie/broker/broker_rpc_server.h"
7
8 #include "ceee/ie/broker/broker_rpc_utils.h"
9 #include "ceee/ie/common/ceee_module_util.h"
10 #include "ceee/testing/utils/mock_static.h"
11 #include "testing/gmock/include/gmock/gmock.h"
12 #include "testing/gtest/include/gtest/gtest.h"
13
14 using testing::_;
15 using testing::DoAll;
16 using testing::NotNull;
17 using testing::SetArgumentPointee;
18 using testing::StrictMock;
19 using testing::Return;
20
21 namespace {
22 using testing::_;
23
24 MOCK_STATIC_CLASS_BEGIN(BrokerRpcMock)
25 MOCK_STATIC_INIT_BEGIN(BrokerRpcMock)
26 MOCK_STATIC_INIT(GetRpcEndPointAddress);
27 MOCK_STATIC_INIT_END()
28
29 MOCK_STATIC0(std::wstring, , GetRpcEndPointAddress);
30 MOCK_STATIC_CLASS_END(BrokerRpcMock)
31
32
33 class BrokerRpcTest : public testing::Test {
34 protected:
35 virtual void SetUp() {
36 EXPECT_CALL(broker_rpc_mock_, GetRpcEndPointAddress())
37 .WillRepeatedly(Return(L"BrokerRpcTestEP"));
38 }
39
40 virtual void TearDown() {
41
42 }
43
44 BrokerRpcMock broker_rpc_mock_;
45 };
46
47 TEST_F(BrokerRpcTest, ConnectNoServer) {
48 BrokerRpcClient client;
49 ASSERT_FALSE(client.is_connected());
50 ASSERT_FALSE(client.Connect());
51 ASSERT_FALSE(client.is_connected());
52 }
53
54 TEST_F(BrokerRpcTest, Connect) {
55 BrokerRpcServer server;
56 ASSERT_FALSE(server.is_started());
57 ASSERT_TRUE(server.Start());
58 ASSERT_TRUE(server.is_started());
59 BrokerRpcClient client;
60 ASSERT_TRUE(client.Connect());
61 ASSERT_TRUE(client.is_connected());
62 }
63
64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698