blob: 63565395f7dd43669898334cac0adbee71af2315 [file] [log] [blame]
Alexander Polcyn792c7e32017-04-14 15:56:04 -07001#!/usr/bin/env ruby
2
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003# Copyright 2016 gRPC authors.
Alexander Polcyn792c7e32017-04-14 15:56:04 -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 Polcyn792c7e32017-04-14 15:56:04 -07008#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009# http://www.apache.org/licenses/LICENSE-2.0
Alexander Polcyn792c7e32017-04-14 15:56:04 -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 Polcyn792c7e32017-04-14 15:56:04 -070016
17require_relative './end2end_common'
18
19def main
20 STDERR.puts 'start server'
21 server_runner = ServerRunner.new(EchoServerImpl)
22 server_port = server_runner.run
23
24 # TODO(apolcyn) Can we get rid of this sleep?
25 # Without it, an immediate call to the just started EchoServer
26 # fails with UNAVAILABLE
27 sleep 1
28
29 STDERR.puts 'start client'
30 _, client_pid = start_client('forking_client_client.rb',
31 server_port)
32
33 begin
34 Timeout.timeout(10) do
35 Process.wait(client_pid)
36 end
37 rescue Timeout::Error
38 STDERR.puts "timeout wait for client pid #{client_pid}"
39 Process.kill('SIGKILL', client_pid)
40 Process.wait(client_pid)
41 STDERR.puts 'killed client child'
42 raise 'Timed out waiting for client process. ' \
43 'It likely hangs when requiring grpc, then forking, then using grpc '
44 end
45
46 client_exit_code = $CHILD_STATUS
47 if client_exit_code != 0
48 fail "forking client client failed, exit code #{client_exit_code}"
49 end
50
51 server_runner.stop
52end
53
54main