2017-11-28 17:50:30 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2017 The Cartographer Authors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cartographer_grpc/framework/server.h"
|
|
|
|
|
2017-12-19 04:27:03 +08:00
|
|
|
#include <future>
|
|
|
|
|
2017-11-29 21:05:31 +08:00
|
|
|
#include "cartographer_grpc/framework/execution_context.h"
|
2017-11-28 17:50:30 +08:00
|
|
|
#include "cartographer_grpc/framework/proto/math_service.grpc.pb.h"
|
|
|
|
#include "cartographer_grpc/framework/proto/math_service.pb.h"
|
|
|
|
#include "cartographer_grpc/framework/rpc_handler.h"
|
|
|
|
#include "glog/logging.h"
|
|
|
|
#include "grpc++/grpc++.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace cartographer_grpc {
|
|
|
|
namespace framework {
|
|
|
|
namespace {
|
|
|
|
|
2017-12-19 04:27:03 +08:00
|
|
|
using EchoResponder = std::function<bool()>;
|
2017-11-29 21:05:31 +08:00
|
|
|
class MathServerContext : public ExecutionContext {
|
|
|
|
public:
|
|
|
|
int additional_increment() { return 10; }
|
2017-12-19 04:27:03 +08:00
|
|
|
std::promise<EchoResponder> echo_responder;
|
2017-11-29 21:05:31 +08:00
|
|
|
};
|
|
|
|
|
2017-11-30 20:18:16 +08:00
|
|
|
class GetSumHandler
|
2017-11-29 17:40:26 +08:00
|
|
|
: public RpcHandler<Stream<proto::GetSumRequest>, proto::GetSumResponse> {
|
|
|
|
public:
|
|
|
|
void OnRequest(const proto::GetSumRequest& request) override {
|
2017-11-29 21:05:31 +08:00
|
|
|
sum_ += GetContext<MathServerContext>()->additional_increment();
|
2017-11-29 17:40:26 +08:00
|
|
|
sum_ += request.input();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnReadsDone() override {
|
|
|
|
auto response = cartographer::common::make_unique<proto::GetSumResponse>();
|
|
|
|
response->set_output(sum_);
|
|
|
|
Send(std::move(response));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int sum_ = 0;
|
|
|
|
};
|
|
|
|
|
2017-12-07 15:53:04 +08:00
|
|
|
class GetRunningSumHandler : public RpcHandler<Stream<proto::GetSumRequest>,
|
|
|
|
Stream<proto::GetSumResponse>> {
|
2017-12-04 22:28:19 +08:00
|
|
|
public:
|
|
|
|
void OnRequest(const proto::GetSumRequest& request) override {
|
|
|
|
sum_ += request.input();
|
|
|
|
|
|
|
|
// Respond twice to demonstrate bidirectional streaming.
|
|
|
|
auto response = cartographer::common::make_unique<proto::GetSumResponse>();
|
|
|
|
response->set_output(sum_);
|
|
|
|
Send(std::move(response));
|
|
|
|
response = cartographer::common::make_unique<proto::GetSumResponse>();
|
|
|
|
response->set_output(sum_);
|
|
|
|
Send(std::move(response));
|
|
|
|
}
|
|
|
|
|
2017-12-07 15:53:04 +08:00
|
|
|
void OnReadsDone() override { Finish(::grpc::Status::OK); }
|
2017-12-04 22:28:19 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
int sum_ = 0;
|
|
|
|
};
|
|
|
|
|
2017-11-30 20:18:16 +08:00
|
|
|
class GetSquareHandler
|
|
|
|
: public RpcHandler<proto::GetSquareRequest, proto::GetSquareResponse> {
|
|
|
|
void OnRequest(const proto::GetSquareRequest& request) override {
|
|
|
|
auto response =
|
|
|
|
cartographer::common::make_unique<proto::GetSquareResponse>();
|
|
|
|
response->set_output(request.input() * request.input());
|
|
|
|
Send(std::move(response));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-19 04:27:03 +08:00
|
|
|
class GetEchoHandler
|
|
|
|
: public RpcHandler<proto::GetEchoRequest, proto::GetEchoResponse> {
|
|
|
|
void OnRequest(const proto::GetEchoRequest& request) override {
|
|
|
|
int value = request.input();
|
|
|
|
Writer writer = GetWriter();
|
|
|
|
GetContext<MathServerContext>()->echo_responder.set_value(
|
|
|
|
[writer, value]() {
|
|
|
|
auto response =
|
|
|
|
cartographer::common::make_unique<proto::GetEchoResponse>();
|
|
|
|
response->set_output(value);
|
2017-12-20 18:42:01 +08:00
|
|
|
return writer.Write(std::move(response));
|
2017-12-19 04:27:03 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-19 17:27:30 +08:00
|
|
|
class GetSequenceHandler
|
|
|
|
: public RpcHandler<proto::GetSequenceRequest,
|
|
|
|
Stream<proto::GetSequenceResponse>> {
|
|
|
|
public:
|
|
|
|
void OnRequest(const proto::GetSequenceRequest& request) override {
|
|
|
|
for (int i = 0; i < request.input(); ++i) {
|
|
|
|
auto response =
|
|
|
|
cartographer::common::make_unique<proto::GetSequenceResponse>();
|
|
|
|
response->set_output(i);
|
|
|
|
Send(std::move(response));
|
|
|
|
}
|
|
|
|
Finish(::grpc::Status::OK);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-11-29 17:40:26 +08:00
|
|
|
// TODO(cschuet): Due to the hard-coded part these tests will become flaky when
|
|
|
|
// run in parallel. It would be nice to find a way to solve that. gRPC also
|
|
|
|
// allows to communicate over UNIX domain sockets.
|
|
|
|
const std::string kServerAddress = "localhost:50051";
|
|
|
|
const std::size_t kNumThreads = 1;
|
|
|
|
|
|
|
|
class ServerTest : public ::testing::Test {
|
|
|
|
protected:
|
|
|
|
void SetUp() override {
|
|
|
|
Server::Builder server_builder;
|
|
|
|
server_builder.SetServerAddress(kServerAddress);
|
2017-12-15 19:21:44 +08:00
|
|
|
server_builder.SetNumGrpcThreads(kNumThreads);
|
|
|
|
server_builder.SetNumEventThreads(kNumThreads);
|
2017-11-30 20:18:16 +08:00
|
|
|
server_builder.RegisterHandler<GetSumHandler, proto::Math>("GetSum");
|
|
|
|
server_builder.RegisterHandler<GetSquareHandler, proto::Math>("GetSquare");
|
2017-12-07 15:53:04 +08:00
|
|
|
server_builder.RegisterHandler<GetRunningSumHandler, proto::Math>(
|
|
|
|
"GetRunningSum");
|
2017-12-19 04:27:03 +08:00
|
|
|
server_builder.RegisterHandler<GetEchoHandler, proto::Math>("GetEcho");
|
2017-12-19 17:27:30 +08:00
|
|
|
server_builder.RegisterHandler<GetSequenceHandler, proto::Math>(
|
|
|
|
"GetSequence");
|
2017-11-29 17:40:26 +08:00
|
|
|
server_ = server_builder.Build();
|
2017-11-30 20:18:16 +08:00
|
|
|
|
|
|
|
client_channel_ =
|
|
|
|
grpc::CreateChannel(kServerAddress, grpc::InsecureChannelCredentials());
|
|
|
|
stub_ = proto::Math::NewStub(client_channel_);
|
2017-11-29 17:40:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Server> server_;
|
2017-11-30 20:18:16 +08:00
|
|
|
std::shared_ptr<grpc::Channel> client_channel_;
|
|
|
|
std::unique_ptr<proto::Math::Stub> stub_;
|
|
|
|
grpc::ClientContext client_context_;
|
2017-11-29 17:40:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(ServerTest, StartAndStopServerTest) {
|
|
|
|
server_->Start();
|
|
|
|
server_->Shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ServerTest, ProcessRpcStreamTest) {
|
2017-11-29 21:05:31 +08:00
|
|
|
server_->SetExecutionContext(
|
|
|
|
cartographer::common::make_unique<MathServerContext>());
|
2017-11-29 17:40:26 +08:00
|
|
|
server_->Start();
|
|
|
|
|
|
|
|
proto::GetSumResponse result;
|
2017-12-07 15:53:04 +08:00
|
|
|
std::unique_ptr<grpc::ClientWriter<proto::GetSumRequest>> writer(
|
2017-11-30 20:18:16 +08:00
|
|
|
stub_->GetSum(&client_context_, &result));
|
2017-11-29 17:40:26 +08:00
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
proto::GetSumRequest request;
|
|
|
|
request.set_input(i);
|
|
|
|
EXPECT_TRUE(writer->Write(request));
|
|
|
|
}
|
|
|
|
writer->WritesDone();
|
|
|
|
grpc::Status status = writer->Finish();
|
|
|
|
EXPECT_TRUE(status.ok());
|
2017-11-29 21:05:31 +08:00
|
|
|
EXPECT_EQ(result.output(), 33);
|
2017-11-29 17:40:26 +08:00
|
|
|
|
|
|
|
server_->Shutdown();
|
2017-11-28 17:50:30 +08:00
|
|
|
}
|
|
|
|
|
2017-11-30 20:18:16 +08:00
|
|
|
TEST_F(ServerTest, ProcessUnaryRpcTest) {
|
|
|
|
server_->Start();
|
|
|
|
|
|
|
|
proto::GetSquareResponse result;
|
|
|
|
proto::GetSquareRequest request;
|
|
|
|
request.set_input(11);
|
|
|
|
grpc::Status status = stub_->GetSquare(&client_context_, request, &result);
|
|
|
|
EXPECT_TRUE(status.ok());
|
|
|
|
EXPECT_EQ(result.output(), 121);
|
|
|
|
|
|
|
|
server_->Shutdown();
|
|
|
|
}
|
|
|
|
|
2017-12-04 22:28:19 +08:00
|
|
|
TEST_F(ServerTest, ProcessBidiStreamingRpcTest) {
|
|
|
|
server_->Start();
|
|
|
|
|
|
|
|
auto reader_writer = stub_->GetRunningSum(&client_context_);
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
proto::GetSumRequest request;
|
|
|
|
request.set_input(i);
|
|
|
|
EXPECT_TRUE(reader_writer->Write(request));
|
|
|
|
}
|
|
|
|
reader_writer->WritesDone();
|
|
|
|
proto::GetSumResponse response;
|
|
|
|
|
|
|
|
std::list<int> expected_responses = {0, 0, 1, 1, 3, 3};
|
|
|
|
while (reader_writer->Read(&response)) {
|
|
|
|
EXPECT_EQ(expected_responses.front(), response.output());
|
|
|
|
expected_responses.pop_front();
|
|
|
|
}
|
|
|
|
EXPECT_TRUE(expected_responses.empty());
|
2017-12-19 17:27:30 +08:00
|
|
|
EXPECT_TRUE(reader_writer->Finish().ok());
|
2017-12-04 22:28:19 +08:00
|
|
|
|
|
|
|
server_->Shutdown();
|
|
|
|
}
|
|
|
|
|
2017-12-19 04:27:03 +08:00
|
|
|
TEST_F(ServerTest, WriteFromOtherThread) {
|
|
|
|
server_->SetExecutionContext(
|
|
|
|
cartographer::common::make_unique<MathServerContext>());
|
|
|
|
server_->Start();
|
|
|
|
|
|
|
|
proto::GetEchoResponse result;
|
|
|
|
proto::GetEchoRequest request;
|
|
|
|
request.set_input(13);
|
|
|
|
|
|
|
|
Server* server = server_.get();
|
|
|
|
std::thread response_thread([server]() {
|
|
|
|
std::future<EchoResponder> responder_future =
|
|
|
|
server->GetContext<MathServerContext>()->echo_responder.get_future();
|
|
|
|
responder_future.wait();
|
|
|
|
auto responder = responder_future.get();
|
|
|
|
CHECK(responder());
|
|
|
|
});
|
|
|
|
|
|
|
|
grpc::Status status = stub_->GetEcho(&client_context_, request, &result);
|
|
|
|
response_thread.join();
|
|
|
|
EXPECT_TRUE(status.ok());
|
|
|
|
EXPECT_EQ(result.output(), 13);
|
|
|
|
|
|
|
|
server_->Shutdown();
|
|
|
|
}
|
|
|
|
|
2017-12-19 17:27:30 +08:00
|
|
|
TEST_F(ServerTest, ProcessServerStreamingRpcTest) {
|
|
|
|
server_->Start();
|
|
|
|
|
|
|
|
proto::GetSequenceRequest request;
|
|
|
|
request.set_input(12);
|
|
|
|
auto reader = stub_->GetSequence(&client_context_, request);
|
|
|
|
|
|
|
|
proto::GetSequenceResponse response;
|
|
|
|
for (int i = 0; i < 12; ++i) {
|
|
|
|
EXPECT_TRUE(reader->Read(&response));
|
|
|
|
EXPECT_EQ(response.output(), i);
|
|
|
|
}
|
|
|
|
EXPECT_FALSE(reader->Read(&response));
|
|
|
|
EXPECT_TRUE(reader->Finish().ok());
|
|
|
|
|
|
|
|
server_->Shutdown();
|
|
|
|
}
|
|
|
|
|
2017-11-28 17:50:30 +08:00
|
|
|
} // namespace
|
|
|
|
} // namespace framework
|
|
|
|
} // namespace cartographer_grpc
|