blob: 4ff93643ae4fa752b59c08386d336c519c49a79e [file] [log] [blame]
Chen Wang86af8cf2015-01-21 18:05:40 -08001/*
2 *
3 * Copyright 2014, Google Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include <grpc++/channel_arguments.h>
35#include <grpc++/channel_interface.h>
36#include <grpc++/client_context.h>
37#include <grpc++/create_channel.h>
38#include <grpc++/server.h>
39#include <grpc++/server_builder.h>
40#include <grpc++/server_context.h>
41#include <grpc++/status.h>
42#include <gtest/gtest.h>
43
Chen Wang04f1aa82015-01-30 18:26:16 -080044#include "examples/tips/subscriber.h"
Chen Wang86af8cf2015-01-21 18:05:40 -080045#include "test/core/util/port.h"
46#include "test/core/util/test_config.h"
47
48using grpc::ChannelInterface;
49
Chen Wang86af8cf2015-01-21 18:05:40 -080050namespace grpc {
51namespace testing {
52namespace {
53
54const char kTopic[] = "test topic";
Chen Wang04f1aa82015-01-30 18:26:16 -080055const char kSubscriptionName[] = "subscription name";
Chen Wang0010cda2015-02-01 20:44:33 -080056const char kData[] = "Message data";
Chen Wang86af8cf2015-01-21 18:05:40 -080057
Chen Wang04f1aa82015-01-30 18:26:16 -080058class SubscriberServiceImpl : public tech::pubsub::SubscriberService::Service {
Chen Wang86af8cf2015-01-21 18:05:40 -080059 public:
Chen Wang04f1aa82015-01-30 18:26:16 -080060 Status CreateSubscription(ServerContext* context,
61 const tech::pubsub::Subscription* request,
62 tech::pubsub::Subscription* response) override {
63 EXPECT_EQ(request->topic(), kTopic);
64 EXPECT_EQ(request->name(), kSubscriptionName);
Chen Wang86af8cf2015-01-21 18:05:40 -080065 return Status::OK;
66 }
Chen Wang04f1aa82015-01-30 18:26:16 -080067
68 Status GetSubscription(ServerContext* context,
69 const tech::pubsub::GetSubscriptionRequest* request,
70 tech::pubsub::Subscription* response) override {
71 EXPECT_EQ(request->subscription(), kSubscriptionName);
72 response->set_topic(kTopic);
73 return Status::OK;
74 }
75
Chen Wang0010cda2015-02-01 20:44:33 -080076 Status Pull(ServerContext* context,
77 const tech::pubsub::PullRequest* request,
78 tech::pubsub::PullResponse* response) override {
79 EXPECT_EQ(request->subscription(), kSubscriptionName);
80 response->set_ack_id("1");
81 response->mutable_pubsub_event()->mutable_message()->set_data(kData);
82 return Status::OK;
83 }
84
85 Status Acknowledge(ServerContext* context,
86 const tech::pubsub::AcknowledgeRequest* request,
87 proto2::Empty* response) override {
88 return Status::OK;
89 }
90
Chen Wang86af8cf2015-01-21 18:05:40 -080091};
92
Chen Wang04f1aa82015-01-30 18:26:16 -080093class SubscriberTest : public ::testing::Test {
Chen Wang86af8cf2015-01-21 18:05:40 -080094 protected:
Chen Wang04f1aa82015-01-30 18:26:16 -080095 // Setup a server and a client for SubscriberService.
Chen Wang86af8cf2015-01-21 18:05:40 -080096 void SetUp() override {
97 int port = grpc_pick_unused_port_or_die();
98 server_address_ << "localhost:" << port;
Chen Wang86af8cf2015-01-21 18:05:40 -080099 ServerBuilder builder;
100 builder.AddPort(server_address_.str());
101 builder.RegisterService(service_.service());
102 server_ = builder.BuildAndStart();
103
104 channel_ = CreateChannel(server_address_.str(), ChannelArguments());
Chen Wang04f1aa82015-01-30 18:26:16 -0800105
106 subscriber_.reset(new grpc::examples::tips::Subscriber(channel_));
Chen Wang86af8cf2015-01-21 18:05:40 -0800107 }
108
Chen Wang04f1aa82015-01-30 18:26:16 -0800109 void TearDown() override {
110 server_->Shutdown();
111 subscriber_->Shutdown();
112 }
Chen Wang86af8cf2015-01-21 18:05:40 -0800113
Chen Wang86af8cf2015-01-21 18:05:40 -0800114 std::ostringstream server_address_;
Chen Wang04f1aa82015-01-30 18:26:16 -0800115 std::unique_ptr<Server> server_;
116 SubscriberServiceImpl service_;
Chen Wang86af8cf2015-01-21 18:05:40 -0800117
118 std::shared_ptr<ChannelInterface> channel_;
Chen Wang04f1aa82015-01-30 18:26:16 -0800119
120 std::unique_ptr<grpc::examples::tips::Subscriber> subscriber_;
Chen Wang86af8cf2015-01-21 18:05:40 -0800121};
122
Chen Wang04f1aa82015-01-30 18:26:16 -0800123TEST_F(SubscriberTest, TestSubscriber) {
124 EXPECT_TRUE(subscriber_->CreateSubscription(kTopic,
125 kSubscriptionName).IsOk());
126
Chen Wang0010cda2015-02-01 20:44:33 -0800127
Chen Wang04f1aa82015-01-30 18:26:16 -0800128 grpc::string topic;
129 EXPECT_TRUE(subscriber_->GetSubscription(kSubscriptionName,
130 &topic).IsOk());
131 EXPECT_EQ(topic, kTopic);
Chen Wang0010cda2015-02-01 20:44:33 -0800132
133 grpc::string data;
134 EXPECT_TRUE(subscriber_->Pull(kSubscriptionName,
135 &data).IsOk());
Chen Wang86af8cf2015-01-21 18:05:40 -0800136}
137
138} // namespace
139} // namespace testing
140} // namespace grpc
141
142int main(int argc, char** argv) {
143 grpc_test_init(argc, argv);
144 grpc_init();
145 ::testing::InitGoogleTest(&argc, argv);
146 gpr_log(GPR_INFO, "Start test ...");
147 int result = RUN_ALL_TESTS();
148 grpc_shutdown();
149 return result;
150}