OLD | NEW |
(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 } |
OLD | NEW |