blob: 4894814252edc017213a8636c7293f3c983d5660 [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 Wang86af8cf2015-01-21 18:05:40 -080056
Chen Wang04f1aa82015-01-30 18:26:16 -080057class SubscriberServiceImpl : public tech::pubsub::SubscriberService::Service {
Chen Wang86af8cf2015-01-21 18:05:40 -080058 public:
Chen Wang04f1aa82015-01-30 18:26:16 -080059 Status CreateSubscription(ServerContext* context,
60 const tech::pubsub::Subscription* request,
61 tech::pubsub::Subscription* response) override {
62 EXPECT_EQ(request->topic(), kTopic);
63 EXPECT_EQ(request->name(), kSubscriptionName);
Chen Wang86af8cf2015-01-21 18:05:40 -080064 return Status::OK;
65 }
Chen Wang04f1aa82015-01-30 18:26:16 -080066
67 Status GetSubscription(ServerContext* context,
68 const tech::pubsub::GetSubscriptionRequest* request,
69 tech::pubsub::Subscription* response) override {
70 EXPECT_EQ(request->subscription(), kSubscriptionName);
71 response->set_topic(kTopic);
72 return Status::OK;
73 }
74
Chen Wang86af8cf2015-01-21 18:05:40 -080075};
76
Chen Wang04f1aa82015-01-30 18:26:16 -080077class SubscriberTest : public ::testing::Test {
Chen Wang86af8cf2015-01-21 18:05:40 -080078 protected:
Chen Wang04f1aa82015-01-30 18:26:16 -080079 // Setup a server and a client for SubscriberService.
Chen Wang86af8cf2015-01-21 18:05:40 -080080 void SetUp() override {
81 int port = grpc_pick_unused_port_or_die();
82 server_address_ << "localhost:" << port;
Chen Wang86af8cf2015-01-21 18:05:40 -080083 ServerBuilder builder;
84 builder.AddPort(server_address_.str());
85 builder.RegisterService(service_.service());
86 server_ = builder.BuildAndStart();
87
88 channel_ = CreateChannel(server_address_.str(), ChannelArguments());
Chen Wang04f1aa82015-01-30 18:26:16 -080089
90 subscriber_.reset(new grpc::examples::tips::Subscriber(channel_));
Chen Wang86af8cf2015-01-21 18:05:40 -080091 }
92
Chen Wang04f1aa82015-01-30 18:26:16 -080093 void TearDown() override {
94 server_->Shutdown();
95 subscriber_->Shutdown();
96 }
Chen Wang86af8cf2015-01-21 18:05:40 -080097
Chen Wang86af8cf2015-01-21 18:05:40 -080098 std::ostringstream server_address_;
Chen Wang04f1aa82015-01-30 18:26:16 -080099 std::unique_ptr<Server> server_;
100 SubscriberServiceImpl service_;
Chen Wang86af8cf2015-01-21 18:05:40 -0800101
102 std::shared_ptr<ChannelInterface> channel_;
Chen Wang04f1aa82015-01-30 18:26:16 -0800103
104 std::unique_ptr<grpc::examples::tips::Subscriber> subscriber_;
Chen Wang86af8cf2015-01-21 18:05:40 -0800105};
106
Chen Wang04f1aa82015-01-30 18:26:16 -0800107TEST_F(SubscriberTest, TestSubscriber) {
108 EXPECT_TRUE(subscriber_->CreateSubscription(kTopic,
109 kSubscriptionName).IsOk());
110
111 grpc::string topic;
112 EXPECT_TRUE(subscriber_->GetSubscription(kSubscriptionName,
113 &topic).IsOk());
114 EXPECT_EQ(topic, kTopic);
Chen Wang86af8cf2015-01-21 18:05:40 -0800115}
116
117} // namespace
118} // namespace testing
119} // namespace grpc
120
121int main(int argc, char** argv) {
122 grpc_test_init(argc, argv);
123 grpc_init();
124 ::testing::InitGoogleTest(&argc, argv);
125 gpr_log(GPR_INFO, "Start test ...");
126 int result = RUN_ALL_TESTS();
127 grpc_shutdown();
128 return result;
129}