blob: 6cd289a29bdf8bba7a9644944f22559b8462db66 [file] [log] [blame]
Alexander Polcync44c16e2017-03-14 17:44:21 -07001#!/usr/bin/env ruby
2
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003# Copyright 2015 gRPC authors.
Alexander Polcync44c16e2017-03-14 17:44:21 -07004#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
Alexander Polcync44c16e2017-03-14 17:44:21 -07008#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009# http://www.apache.org/licenses/LICENSE-2.0
Alexander Polcync44c16e2017-03-14 17:44:21 -070010#
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Alexander Polcync44c16e2017-03-14 17:44:21 -070016
Alexander Polcynf8dc32e2017-03-15 00:04:33 -070017require_relative './end2end_common'
Alexander Polcync44c16e2017-03-14 17:44:21 -070018
Alexander Polcyn4e606752017-03-19 23:32:54 -070019# Test client. Sends RPC's as normal but process also has signal handlers
Alexander Polcync44c16e2017-03-14 17:44:21 -070020class SigHandlingClientController < ClientControl::ClientController::Service
Alexander Polcynf8dc32e2017-03-15 00:04:33 -070021 def initialize(srv, stub)
Alexander Polcync44c16e2017-03-14 17:44:21 -070022 @srv = srv
Alexander Polcynf8dc32e2017-03-15 00:04:33 -070023 @stub = stub
Alexander Polcync44c16e2017-03-14 17:44:21 -070024 end
Alexander Polcyn4e606752017-03-19 23:32:54 -070025
Alexander Polcync44c16e2017-03-14 17:44:21 -070026 def do_echo_rpc(req, _)
27 response = @stub.echo(Echo::EchoRequest.new(request: req.request))
Alexander Polcyn4e606752017-03-19 23:32:54 -070028 fail 'bad response' unless response.response == req.request
Alexander Polcync44c16e2017-03-14 17:44:21 -070029 ClientControl::Void.new
30 end
Alexander Polcyn4e606752017-03-19 23:32:54 -070031
Alexander Polcync44c16e2017-03-14 17:44:21 -070032 def shutdown(_, _)
Alex Polcyn81e95812017-09-23 18:48:02 -070033 # Spawn a new thread because RpcServer#stop is
34 # synchronous and blocks until either this RPC has finished,
35 # or the server's "poll_period" seconds have passed.
36 @shutdown_thread = Thread.new do
Alexander Polcync44c16e2017-03-14 17:44:21 -070037 @srv.stop
38 end
39 ClientControl::Void.new
40 end
Alex Polcyn81e95812017-09-23 18:48:02 -070041
42 def join_shutdown_thread
43 @shutdown_thread.join
44 end
Alexander Polcync44c16e2017-03-14 17:44:21 -070045end
46
47def main
48 client_control_port = ''
Alexander Polcynf8dc32e2017-03-15 00:04:33 -070049 server_port = ''
Alexander Polcync44c16e2017-03-14 17:44:21 -070050 OptionParser.new do |opts|
51 opts.on('--client_control_port=P', String) do |p|
52 client_control_port = p
53 end
Alexander Polcynf8dc32e2017-03-15 00:04:33 -070054 opts.on('--server_port=P', String) do |p|
55 server_port = p
56 end
Alexander Polcync44c16e2017-03-14 17:44:21 -070057 end.parse!
58
Alexander Polcyn4e606752017-03-19 23:32:54 -070059 Signal.trap('TERM') do
60 STDERR.puts 'SIGTERM received'
Alexander Polcync44c16e2017-03-14 17:44:21 -070061 end
62
Alexander Polcyn4e606752017-03-19 23:32:54 -070063 Signal.trap('INT') do
64 STDERR.puts 'SIGINT received'
Alexander Polcync44c16e2017-03-14 17:44:21 -070065 end
66
Alex Polcyn81e95812017-09-23 18:48:02 -070067 # The "shutdown" RPC should end very quickly.
68 # Allow a few seconds to be safe.
Alexander Polcynb14f1ea2017-12-13 14:43:24 -080069 srv = new_rpc_server_for_testing(poll_period: 3)
Alexander Polcyn4e606752017-03-19 23:32:54 -070070 srv.add_http2_port("0.0.0.0:#{client_control_port}",
71 :this_port_is_insecure)
72 stub = Echo::EchoServer::Stub.new("localhost:#{server_port}",
73 :this_channel_is_insecure)
Alex Polcyn81e95812017-09-23 18:48:02 -070074 control_service = SigHandlingClientController.new(srv, stub)
75 srv.handle(control_service)
76 server_thread = Thread.new do
77 srv.run
78 end
79 srv.wait_till_running
80 # send a first RPC to notify the parent process that we've started
81 stub.echo(Echo::EchoRequest.new(request: 'client/child started'))
82 server_thread.join
83 control_service.join_shutdown_thread
Alexander Polcync44c16e2017-03-14 17:44:21 -070084end
85
86main