blob: ee58c7cb4e7121a1695da957377b46f23b850846 [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
Jake Farrella87810f2012-09-28 01:59:04 +000019require 'spec_helper'
Kevin Clarkccc86582008-06-18 01:09:00 +000020
Jake Farrella87810f2012-09-28 01:59:04 +000021describe 'Server' do
Kevin Clarkccc86582008-06-18 01:09:00 +000022
Jake Farrella87810f2012-09-28 01:59:04 +000023 describe Thrift::BaseServer do
James E. King III9aaf2952018-03-20 15:06:08 -040024 before(:each) do
James E. King III27247072018-03-22 20:50:23 -040025 @processor = double("Processor")
26 @serverTrans = double("ServerTransport")
27 @trans = double("BaseTransport")
28 @prot = double("BaseProtocol")
James E. King III9aaf2952018-03-20 15:06:08 -040029 @server = described_class.new(@processor, @serverTrans, @trans, @prot)
Kevin Clarkccc86582008-06-18 01:09:00 +000030 end
31
James E. King III9aaf2952018-03-20 15:06:08 -040032 it "should default to BaseTransportFactory and BinaryProtocolFactory when not specified" do
James E. King III27247072018-03-22 20:50:23 -040033 @server = Thrift::BaseServer.new(double("Processor"), double("BaseServerTransport"))
34 expect(@server.instance_variable_get(:'@transport_factory')).to be_an_instance_of(Thrift::BaseTransportFactory)
35 expect(@server.instance_variable_get(:'@protocol_factory')).to be_an_instance_of(Thrift::BinaryProtocolFactory)
James E. King III9aaf2952018-03-20 15:06:08 -040036 end
37
38 it "should not serve" do
39 expect { @server.serve()}.to raise_error(NotImplementedError)
40 end
41
42 it "should provide a reasonable to_s" do
James E. King III27247072018-03-22 20:50:23 -040043 expect(@serverTrans).to receive(:to_s).once.and_return("serverTrans")
44 expect(@trans).to receive(:to_s).once.and_return("trans")
45 expect(@prot).to receive(:to_s).once.and_return("prot")
46 expect(@server.to_s).to eq("server(prot(trans(serverTrans)))")
James E. King III9aaf2952018-03-20 15:06:08 -040047 end
Kevin Clarkccc86582008-06-18 01:09:00 +000048 end
49
Jake Farrella87810f2012-09-28 01:59:04 +000050 describe Thrift::SimpleServer do
Kevin Clarkccc86582008-06-18 01:09:00 +000051 before(:each) do
James E. King III27247072018-03-22 20:50:23 -040052 @processor = double("Processor")
53 @serverTrans = double("ServerTransport")
54 @trans = double("BaseTransport")
55 @prot = double("BaseProtocol")
56 @client = double("Client")
Jake Farrella87810f2012-09-28 01:59:04 +000057 @server = described_class.new(@processor, @serverTrans, @trans, @prot)
Kevin Clarkccc86582008-06-18 01:09:00 +000058 end
Jake Farrella87810f2012-09-28 01:59:04 +000059
James E. King III9aaf2952018-03-20 15:06:08 -040060 it "should provide a reasonable to_s" do
James E. King III27247072018-03-22 20:50:23 -040061 expect(@serverTrans).to receive(:to_s).once.and_return("serverTrans")
62 expect(@trans).to receive(:to_s).once.and_return("trans")
63 expect(@prot).to receive(:to_s).once.and_return("prot")
64 expect(@server.to_s).to eq("simple(server(prot(trans(serverTrans))))")
James E. King III9aaf2952018-03-20 15:06:08 -040065 end
66
Kevin Clarkccc86582008-06-18 01:09:00 +000067 it "should serve in the main thread" do
James E. King III27247072018-03-22 20:50:23 -040068 expect(@serverTrans).to receive(:listen).ordered
69 expect(@serverTrans).to receive(:accept).exactly(3).times.and_return(@client)
70 expect(@trans).to receive(:get_transport).exactly(3).times.with(@client).and_return(@trans)
71 expect(@prot).to receive(:get_protocol).exactly(3).times.with(@trans).and_return(@prot)
Kevin Clarkccc86582008-06-18 01:09:00 +000072 x = 0
James E. King III27247072018-03-22 20:50:23 -040073 expect(@processor).to receive(:process).exactly(3).times.with(@prot, @prot) do
Kevin Clarkccc86582008-06-18 01:09:00 +000074 case (x += 1)
Bryan Duxburye3ab50d2009-03-25 21:06:53 +000075 when 1 then raise Thrift::TransportException
76 when 2 then raise Thrift::ProtocolException
77 when 3 then throw :stop
Kevin Clarkccc86582008-06-18 01:09:00 +000078 end
79 end
James E. King III27247072018-03-22 20:50:23 -040080 expect(@trans).to receive(:close).exactly(3).times
81 expect(@serverTrans).to receive(:close).ordered
82 expect { @server.serve }.to throw_symbol(:stop)
Kevin Clarkccc86582008-06-18 01:09:00 +000083 end
84 end
85
Jake Farrella87810f2012-09-28 01:59:04 +000086 describe Thrift::ThreadedServer do
87 before(:each) do
James E. King III27247072018-03-22 20:50:23 -040088 @processor = double("Processor")
89 @serverTrans = double("ServerTransport")
90 @trans = double("BaseTransport")
91 @prot = double("BaseProtocol")
92 @client = double("Client")
Jake Farrella87810f2012-09-28 01:59:04 +000093 @server = described_class.new(@processor, @serverTrans, @trans, @prot)
Kevin Clarkccc86582008-06-18 01:09:00 +000094 end
95
James E. King III9aaf2952018-03-20 15:06:08 -040096 it "should provide a reasonable to_s" do
James E. King III27247072018-03-22 20:50:23 -040097 expect(@serverTrans).to receive(:to_s).once.and_return("serverTrans")
98 expect(@trans).to receive(:to_s).once.and_return("trans")
99 expect(@prot).to receive(:to_s).once.and_return("prot")
100 expect(@server.to_s).to eq("threaded(server(prot(trans(serverTrans))))")
James E. King III9aaf2952018-03-20 15:06:08 -0400101 end
102
Kevin Clarkccc86582008-06-18 01:09:00 +0000103 it "should serve using threads" do
James E. King III27247072018-03-22 20:50:23 -0400104 expect(@serverTrans).to receive(:listen).ordered
105 expect(@serverTrans).to receive(:accept).exactly(3).times.and_return(@client)
106 expect(@trans).to receive(:get_transport).exactly(3).times.with(@client).and_return(@trans)
107 expect(@prot).to receive(:get_protocol).exactly(3).times.with(@trans).and_return(@prot)
108 expect(Thread).to receive(:new).with(@prot, @trans).exactly(3).times.and_yield(@prot, @trans)
Kevin Clarkccc86582008-06-18 01:09:00 +0000109 x = 0
James E. King III27247072018-03-22 20:50:23 -0400110 expect(@processor).to receive(:process).exactly(3).times.with(@prot, @prot) do
Kevin Clarkccc86582008-06-18 01:09:00 +0000111 case (x += 1)
Bryan Duxburye3ab50d2009-03-25 21:06:53 +0000112 when 1 then raise Thrift::TransportException
113 when 2 then raise Thrift::ProtocolException
114 when 3 then throw :stop
Kevin Clarkccc86582008-06-18 01:09:00 +0000115 end
116 end
James E. King III27247072018-03-22 20:50:23 -0400117 expect(@trans).to receive(:close).exactly(3).times
118 expect(@serverTrans).to receive(:close).ordered
119 expect { @server.serve }.to throw_symbol(:stop)
Kevin Clarkccc86582008-06-18 01:09:00 +0000120 end
121 end
122
Jake Farrella87810f2012-09-28 01:59:04 +0000123 describe Thrift::ThreadPoolServer do
124 before(:each) do
James E. King III27247072018-03-22 20:50:23 -0400125 @processor = double("Processor")
126 @server_trans = double("ServerTransport")
127 @trans = double("BaseTransport")
128 @prot = double("BaseProtocol")
129 @client = double("Client")
Jake Farrell96be0072012-10-06 00:26:28 +0000130 @server = described_class.new(@processor, @server_trans, @trans, @prot)
James E. King III9aaf2952018-03-20 15:06:08 -0400131 sleep(0.15)
Kevin Clarkccc86582008-06-18 01:09:00 +0000132 end
133
James E. King III9aaf2952018-03-20 15:06:08 -0400134 it "should provide a reasonable to_s" do
James E. King III27247072018-03-22 20:50:23 -0400135 expect(@server_trans).to receive(:to_s).once.and_return("server_trans")
136 expect(@trans).to receive(:to_s).once.and_return("trans")
137 expect(@prot).to receive(:to_s).once.and_return("prot")
138 expect(@server.to_s).to eq("threadpool(server(prot(trans(server_trans))))")
James E. King III9aaf2952018-03-20 15:06:08 -0400139 end
140
Kevin Clarkccc86582008-06-18 01:09:00 +0000141 it "should serve inside a thread" do
Jake Farrell96be0072012-10-06 00:26:28 +0000142 exception_q = @server.instance_variable_get(:@exception_q)
James E. King III27247072018-03-22 20:50:23 -0400143 expect_any_instance_of(described_class).to receive(:serve) do
Jake Farrell96be0072012-10-06 00:26:28 +0000144 exception_q.push(StandardError.new('ERROR'))
145 end
146 expect { @server.rescuable_serve }.to(raise_error('ERROR'))
Kevin Clarkccc86582008-06-18 01:09:00 +0000147 end
148
149 it "should avoid running the server twice when retrying rescuable_serve" do
Jake Farrell96be0072012-10-06 00:26:28 +0000150 exception_q = @server.instance_variable_get(:@exception_q)
James E. King III27247072018-03-22 20:50:23 -0400151 expect_any_instance_of(described_class).to receive(:serve) do
Jake Farrell96be0072012-10-06 00:26:28 +0000152 exception_q.push(StandardError.new('ERROR1'))
153 exception_q.push(StandardError.new('ERROR2'))
154 end
155 expect { @server.rescuable_serve }.to(raise_error('ERROR1'))
156 expect { @server.rescuable_serve }.to(raise_error('ERROR2'))
Kevin Clarkccc86582008-06-18 01:09:00 +0000157 end
158
159 it "should serve using a thread pool" do
James E. King III27247072018-03-22 20:50:23 -0400160 thread_q = double("SizedQueue")
161 exception_q = double("Queue")
Jake Farrell96be0072012-10-06 00:26:28 +0000162 @server.instance_variable_set(:@thread_q, thread_q)
163 @server.instance_variable_set(:@exception_q, exception_q)
James E. King III27247072018-03-22 20:50:23 -0400164 expect(@server_trans).to receive(:listen).ordered
165 expect(thread_q).to receive(:push).with(:token)
166 expect(thread_q).to receive(:pop)
167 expect(Thread).to receive(:new).and_yield
168 expect(@server_trans).to receive(:accept).exactly(3).times.and_return(@client)
169 expect(@trans).to receive(:get_transport).exactly(3).times.and_return(@trans)
170 expect(@prot).to receive(:get_protocol).exactly(3).times.and_return(@prot)
Kevin Clarkccc86582008-06-18 01:09:00 +0000171 x = 0
172 error = RuntimeError.new("Stopped")
James E. King III27247072018-03-22 20:50:23 -0400173 expect(@processor).to receive(:process).exactly(3).times.with(@prot, @prot) do
Kevin Clarkccc86582008-06-18 01:09:00 +0000174 case (x += 1)
Bryan Duxburye3ab50d2009-03-25 21:06:53 +0000175 when 1 then raise Thrift::TransportException
176 when 2 then raise Thrift::ProtocolException
177 when 3 then raise error
Kevin Clarkccc86582008-06-18 01:09:00 +0000178 end
179 end
James E. King III27247072018-03-22 20:50:23 -0400180 expect(@trans).to receive(:close).exactly(3).times
181 expect(exception_q).to receive(:push).with(error).and_throw(:stop)
182 expect(@server_trans).to receive(:close)
Jake Farrell96be0072012-10-06 00:26:28 +0000183 expect { @server.serve }.to(throw_symbol(:stop))
Kevin Clarkccc86582008-06-18 01:09:00 +0000184 end
185 end
186end