| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 | /** * Copyright 2015, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * *     * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. *     * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. *     * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */#include <climits>#include <thread>#include <grpc++/channel.h>#include <grpc++/client_context.h>#include <grpc++/create_channel.h>#include <grpc++/server.h>#include <grpc++/server_builder.h>#include <grpc++/server_context.h>#include <grpc/grpc.h>#include <grpc/support/log.h>#include <grpc/support/thd.h>#include <grpc/support/time.h>#include <gtest/gtest.h>#include <gmock/gmock.h>#include <grpc++/test/mock_stream.h>#include "src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.h"#include "src/proto/grpc/testing/echo.grpc.pb.h"#include "src/proto/grpc/testing/echo_mock.grpc.pb.h"#include "test/core/util/port.h"#include "test/core/util/test_config.h"#include<iostream>using namespace std;using grpc::testing::EchoRequest;using grpc::testing::EchoResponse;using grpc::testing::EchoTestService;using grpc::testing::MockClientReaderWriter;using std::chrono::system_clock;using ::testing::AtLeast;using ::testing::SetArgPointee;using ::testing::SaveArg;using ::testing::_;using ::testing::Return;using ::testing::Invoke;using ::testing::WithArg;using ::testing::DoAll;namespace grpc {namespace testing {namespace {class FakeClient { public:  explicit FakeClient(EchoTestService::StubInterface* stub) : stub_(stub) {}  void DoEcho() {    ClientContext context;    EchoRequest request;    EchoResponse response;    request.set_message("hello world");    Status s = stub_->Echo(&context, request, &response);    EXPECT_EQ(request.message(), response.message());    EXPECT_TRUE(s.ok());  }  void DoBidiStream() {    EchoRequest request;    EchoResponse response;    ClientContext context;    grpc::string msg("hello");    std::unique_ptr<ClientReaderWriterInterface<EchoRequest, EchoResponse>>        stream = stub_->BidiStream(&context);    request.set_message(msg + "0");    EXPECT_TRUE(stream->Write(request));    EXPECT_TRUE(stream->Read(&response));    EXPECT_EQ(response.message(), request.message());    request.set_message(msg + "1");    EXPECT_TRUE(stream->Write(request));    EXPECT_TRUE(stream->Read(&response));    EXPECT_EQ(response.message(), request.message());    request.set_message(msg + "2");    EXPECT_TRUE(stream->Write(request));    EXPECT_TRUE(stream->Read(&response));    EXPECT_EQ(response.message(), request.message());    stream->WritesDone();    EXPECT_FALSE(stream->Read(&response));    Status s = stream->Finish();    EXPECT_TRUE(s.ok());  }  void ResetStub(EchoTestService::StubInterface* stub) { stub_ = stub; } private:  EchoTestService::StubInterface* stub_;};class TestServiceImpl : public EchoTestService::Service { public:  Status Echo(ServerContext* context, const EchoRequest* request,              EchoResponse* response) override {    response->set_message(request->message());    return Status::OK;  }  Status BidiStream(      ServerContext* context,      ServerReaderWriter<EchoResponse, EchoRequest>* stream) override {    EchoRequest request;    EchoResponse response;    while (stream->Read(&request)) {      gpr_log(GPR_INFO, "recv msg %s", request.message().c_str());      response.set_message(request.message());      stream->Write(response);    }    return Status::OK;  }};class MockTest : public ::testing::Test { protected:  MockTest() {}  void SetUp() override {    int port = grpc_pick_unused_port_or_die();    server_address_ << "localhost:" << port;    // Setup server    ServerBuilder builder;    builder.AddListeningPort(server_address_.str(),                             InsecureServerCredentials());    builder.RegisterService(&service_);    server_ = builder.BuildAndStart();  }  void TearDown() override { server_->Shutdown(); }  void ResetStub() {    std::shared_ptr<Channel> channel =        CreateChannel(server_address_.str(), InsecureChannelCredentials());    stub_ = grpc::testing::EchoTestService::NewStub(channel);  }  std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;  std::unique_ptr<Server> server_;  std::ostringstream server_address_;  TestServiceImpl service_;};// Do one real rpc and one mocked oneTEST_F(MockTest, SimpleRpc) {  ResetStub();  FakeClient client(stub_.get());  client.DoEcho();  MockEchoTestServiceStub stub;  EchoResponse resp;  resp.set_message("hello world");  EXPECT_CALL(stub, Echo(_, _, _)).Times(AtLeast(1)).WillOnce(DoAll(SetArgPointee<2>(resp), Return(Status::OK)));  client.ResetStub(&stub);  client.DoEcho();}ACTION_P(copy, msg) {  arg0->set_message(msg->message());}TEST_F(MockTest, BidiStream) {  ResetStub();  FakeClient client(stub_.get());  client.DoBidiStream();  MockEchoTestServiceStub stub;  auto rw = new MockClientReaderWriter<EchoRequest, EchoResponse>();  EchoRequest msg;  EXPECT_CALL(*rw, Write(_, _)).Times(3).WillRepeatedly(DoAll(SaveArg<0>(&msg), Return(true)));  EXPECT_CALL(*rw, Read(_)).      WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))).      WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))).      WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))).      WillOnce(Return(false));  EXPECT_CALL(*rw, WritesDone());  EXPECT_CALL(*rw, Finish()).WillOnce(Return(Status::OK));  EXPECT_CALL(stub, BidiStreamRaw(_)).WillOnce(Return(rw));  client.ResetStub(&stub);  client.DoBidiStream();}}  // namespace}  // namespace testing}  // namespace grpcint main(int argc, char** argv) {  grpc_test_init(argc, argv);  ::testing::InitGoogleTest(&argc, argv);  return RUN_ALL_TESTS();}
 |