excon 0.62.0 → 0.92.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. checksums.yaml +5 -5
  2. data/CONTRIBUTING.md +0 -1
  3. data/LICENSE.md +1 -1
  4. data/README.md +7 -6
  5. data/data/cacert.pem +1220 -1828
  6. data/excon.gemspec +19 -3
  7. data/lib/excon/connection.rb +216 -139
  8. data/lib/excon/constants.rb +38 -13
  9. data/lib/excon/error.rb +15 -0
  10. data/lib/excon/headers.rb +4 -3
  11. data/lib/excon/instrumentors/logging_instrumentor.rb +5 -16
  12. data/lib/excon/instrumentors/standard_instrumentor.rb +2 -9
  13. data/lib/excon/middlewares/base.rb +6 -0
  14. data/lib/excon/middlewares/capture_cookies.rb +1 -1
  15. data/lib/excon/middlewares/decompress.rb +11 -4
  16. data/lib/excon/middlewares/expects.rb +7 -1
  17. data/lib/excon/middlewares/idempotent.rb +20 -3
  18. data/lib/excon/middlewares/instrumentor.rb +8 -0
  19. data/lib/excon/middlewares/mock.rb +12 -3
  20. data/lib/excon/middlewares/redirect_follower.rb +25 -3
  21. data/lib/excon/middlewares/response_parser.rb +3 -0
  22. data/lib/excon/pretty_printer.rb +1 -8
  23. data/lib/excon/response.rb +12 -9
  24. data/lib/excon/socket.rb +59 -42
  25. data/lib/excon/ssl_socket.rb +37 -15
  26. data/lib/excon/test/plugin/server/exec.rb +5 -2
  27. data/lib/excon/test/plugin/server/puma.rb +4 -1
  28. data/lib/excon/test/plugin/server/unicorn.rb +5 -0
  29. data/lib/excon/test/plugin/server/webrick.rb +4 -1
  30. data/lib/excon/test/server.rb +1 -1
  31. data/lib/excon/unix_socket.rb +1 -0
  32. data/lib/excon/utils.rb +59 -5
  33. data/lib/excon/version.rb +1 -1
  34. data/lib/excon.rb +25 -17
  35. metadata +27 -98
  36. data/.document +0 -5
  37. data/.gitignore +0 -13
  38. data/.rspec +0 -3
  39. data/.travis.yml +0 -29
  40. data/Gemfile +0 -19
  41. data/Rakefile +0 -41
  42. data/benchmarks/class_vs_lambda.rb +0 -50
  43. data/benchmarks/concat_vs_insert.rb +0 -21
  44. data/benchmarks/concat_vs_interpolate.rb +0 -22
  45. data/benchmarks/cr_lf.rb +0 -21
  46. data/benchmarks/downcase-eq-eq_vs_casecmp.rb +0 -169
  47. data/benchmarks/excon.rb +0 -69
  48. data/benchmarks/excon_vs.rb +0 -165
  49. data/benchmarks/for_vs_array_each.rb +0 -27
  50. data/benchmarks/for_vs_hash_each.rb +0 -27
  51. data/benchmarks/has_key-vs-lookup.rb +0 -177
  52. data/benchmarks/headers_case_sensitivity.rb +0 -83
  53. data/benchmarks/headers_split_vs_match.rb +0 -34
  54. data/benchmarks/implicit_block-vs-explicit_block.rb +0 -98
  55. data/benchmarks/merging.rb +0 -21
  56. data/benchmarks/single_vs_double_quotes.rb +0 -21
  57. data/benchmarks/string_ranged_index.rb +0 -87
  58. data/benchmarks/strip_newline.rb +0 -115
  59. data/benchmarks/vs_stdlib.rb +0 -82
  60. data/changelog.txt +0 -1083
  61. data/spec/excon/error_spec.rb +0 -139
  62. data/spec/excon/test/server_spec.rb +0 -28
  63. data/spec/excon_spec.rb +0 -7
  64. data/spec/helpers/file_path_helpers.rb +0 -22
  65. data/spec/requests/basic_spec.rb +0 -40
  66. data/spec/requests/eof_requests_spec.rb +0 -36
  67. data/spec/requests/unix_socket_spec.rb +0 -46
  68. data/spec/spec_helper.rb +0 -24
  69. data/spec/support/shared_contexts/test_server_context.rb +0 -83
  70. data/spec/support/shared_examples/shared_example_for_clients.rb +0 -218
  71. data/spec/support/shared_examples/shared_example_for_streaming_clients.rb +0 -20
  72. data/spec/support/shared_examples/shared_example_for_test_servers.rb +0 -16
  73. data/tests/authorization_header_tests.rb +0 -29
  74. data/tests/bad_tests.rb +0 -47
  75. data/tests/basic_tests.rb +0 -351
  76. data/tests/batch_requests.rb +0 -133
  77. data/tests/complete_responses.rb +0 -31
  78. data/tests/data/127.0.0.1.cert.crt +0 -20
  79. data/tests/data/127.0.0.1.cert.key +0 -27
  80. data/tests/data/excon.cert.crt +0 -20
  81. data/tests/data/excon.cert.key +0 -27
  82. data/tests/data/xs +0 -1
  83. data/tests/error_tests.rb +0 -145
  84. data/tests/header_tests.rb +0 -119
  85. data/tests/middlewares/canned_response_tests.rb +0 -34
  86. data/tests/middlewares/capture_cookies_tests.rb +0 -34
  87. data/tests/middlewares/decompress_tests.rb +0 -157
  88. data/tests/middlewares/escape_path_tests.rb +0 -36
  89. data/tests/middlewares/idempotent_tests.rb +0 -206
  90. data/tests/middlewares/instrumentation_tests.rb +0 -315
  91. data/tests/middlewares/mock_tests.rb +0 -304
  92. data/tests/middlewares/redirect_follower_tests.rb +0 -112
  93. data/tests/pipeline_tests.rb +0 -40
  94. data/tests/proxy_tests.rb +0 -306
  95. data/tests/query_string_tests.rb +0 -87
  96. data/tests/rackups/basic.rb +0 -41
  97. data/tests/rackups/basic.ru +0 -3
  98. data/tests/rackups/basic_auth.ru +0 -14
  99. data/tests/rackups/deflater.ru +0 -4
  100. data/tests/rackups/proxy.ru +0 -18
  101. data/tests/rackups/query_string.ru +0 -13
  102. data/tests/rackups/redirecting.ru +0 -23
  103. data/tests/rackups/redirecting_with_cookie.ru +0 -40
  104. data/tests/rackups/request_headers.ru +0 -15
  105. data/tests/rackups/request_methods.ru +0 -21
  106. data/tests/rackups/response_header.ru +0 -18
  107. data/tests/rackups/ssl.ru +0 -16
  108. data/tests/rackups/ssl_mismatched_cn.ru +0 -15
  109. data/tests/rackups/ssl_verify_peer.ru +0 -16
  110. data/tests/rackups/streaming.ru +0 -30
  111. data/tests/rackups/thread_safety.ru +0 -17
  112. data/tests/rackups/timeout.ru +0 -14
  113. data/tests/rackups/webrick_patch.rb +0 -34
  114. data/tests/request_headers_tests.rb +0 -21
  115. data/tests/request_method_tests.rb +0 -47
  116. data/tests/request_tests.rb +0 -59
  117. data/tests/response_tests.rb +0 -197
  118. data/tests/servers/bad.rb +0 -20
  119. data/tests/servers/eof.rb +0 -17
  120. data/tests/servers/error.rb +0 -20
  121. data/tests/servers/good.rb +0 -350
  122. data/tests/test_helper.rb +0 -306
  123. data/tests/thread_safety_tests.rb +0 -39
  124. data/tests/timeout_tests.rb +0 -12
  125. data/tests/utils_tests.rb +0 -81
@@ -1,29 +0,0 @@
1
- Shindo.tests('Excon basics (Authorization data redacted)') do
2
- with_rackup('basic_auth.ru') do
3
- cases = [
4
- ['user & pass', 'http://user1:pass1@foo.com/', 'Basic dXNlcjE6cGFzczE='],
5
- ['email & pass', 'http://foo%40bar.com:pass1@foo.com/', 'Basic Zm9vQGJhci5jb206cGFzczE='],
6
- ['user no pass', 'http://three_user@foo.com/', 'Basic dGhyZWVfdXNlcjo='],
7
- ['pass no user', 'http://:derppass@foo.com/', 'Basic OmRlcnBwYXNz']
8
- ]
9
- cases.each do |desc,url,auth_header|
10
- conn = nil
11
-
12
- test("authorization header concealed for #{desc}") do
13
- conn = Excon.new(url)
14
- !conn.inspect.include?(auth_header)
15
- end
16
-
17
- if conn.data[:password]
18
- test("password param concealed for #{desc}") do
19
- !conn.inspect.include?(conn.data[:password])
20
- end
21
- end
22
-
23
- test("password param remains correct for #{desc}") do
24
- conn.data[:password] == URI.parse(url).password
25
- end
26
-
27
- end
28
- end
29
- end
data/tests/bad_tests.rb DELETED
@@ -1,47 +0,0 @@
1
- Shindo.tests('Excon bad server interaction') do
2
-
3
- with_server('bad') do
4
-
5
- tests('bad server: causes EOFError') do
6
-
7
- tests('with no content length and no chunking') do
8
- tests('without a block') do
9
- tests('response.body').returns('hello') do
10
- connection = Excon.new('http://127.0.0.1:9292')
11
-
12
- connection.request(:method => :get, :path => '/eof/no_content_length_and_no_chunking').body
13
- end
14
- end
15
-
16
- tests('with a block') do
17
- tests('body from chunks').returns('hello') do
18
- connection = Excon.new('http://127.0.0.1:9292')
19
-
20
- body = ""
21
- response_block = lambda {|chunk, remaining, total| body << chunk }
22
-
23
- connection.request(:method => :get, :path => '/eof/no_content_length_and_no_chunking', :response_block => response_block)
24
-
25
- body
26
- end
27
- end
28
-
29
- end
30
-
31
- end
32
-
33
- end
34
-
35
- with_server('eof') do
36
-
37
- tests('eof server: causes EOFError') do
38
-
39
- tests('request').raises(Excon::Errors::SocketError) do
40
- Excon.get('http://127.0.0.1:9292/eof')
41
- end
42
-
43
- end
44
-
45
- end
46
-
47
- end
data/tests/basic_tests.rb DELETED
@@ -1,351 +0,0 @@
1
- require 'json'
2
-
3
- Shindo.tests('Excon basics') do
4
- env_init
5
-
6
- with_rackup('basic.ru') do
7
- basic_tests
8
-
9
- tests('explicit uri passed to connection') do
10
- tests('GET /content-length/100').returns(200) do
11
- connection = Excon::Connection.new({
12
- :host => '127.0.0.1',
13
- :hostname => '127.0.0.1',
14
- :nonblock => false,
15
- :port => 9292,
16
- :scheme => 'http',
17
- :ssl_verify_peer => false
18
- })
19
- response = connection.request(:method => :get, :path => '/content-length/100')
20
- response[:status]
21
- end
22
- end
23
- end
24
- end
25
-
26
- Shindo.tests('Excon streaming basics') do
27
- pending if RUBY_PLATFORM == 'java' # need to find suitable server for jruby
28
- with_unicorn('streaming.ru') do
29
- # expected values: the response, in pieces, and a timeout after each piece
30
- res = %w{Hello streamy world}
31
- timeout = 0.1
32
-
33
- # expect the full response as a string
34
- # and expect it to take a (timeout * pieces) seconds
35
- tests('simple blocking request on streaming endpoint').returns([res.join(''),'response time ok']) do
36
- start = Time.now
37
- ret = Excon.get('http://127.0.0.1:9292/streamed/simple').body
38
-
39
- if Time.now - start <= timeout*3
40
- [ret, 'streaming response came too quickly']
41
- else
42
- [ret, 'response time ok']
43
- end
44
- end
45
-
46
- # expect the full response as a string and expect it to
47
- # take a (timeout * pieces) seconds (with fixed Content-Length header)
48
- tests('simple blocking request on streaming endpoint with fixed length').returns([res.join(''),'response time ok']) do
49
- start = Time.now
50
- ret = Excon.get('http://127.0.0.1:9292/streamed/fixed_length').body
51
-
52
- if Time.now - start <= timeout*3
53
- [ret, 'streaming response came too quickly']
54
- else
55
- [ret, 'response time ok']
56
- end
57
- end
58
-
59
- # expect each response piece to arrive to the body right away
60
- # and wait for timeout until next one arrives
61
- def timed_streaming_test(endpoint, timeout)
62
- ret = []
63
- timing = 'response times ok'
64
- start = Time.now
65
- Excon.get(endpoint, :response_block => lambda do |c,r,t|
66
- # add the response
67
- ret.push(c)
68
- # check if the timing is ok
69
- # each response arrives after timeout and before timeout + 1
70
- cur_time = Time.now - start
71
- if cur_time < ret.length * timeout or cur_time > (ret.length+1) * timeout
72
- timing = 'response time not ok!'
73
- end
74
- end)
75
- # validate the final timing
76
- if Time.now - start <= timeout*3
77
- timing = 'final timing was not ok!'
78
- end
79
- [ret, timing]
80
- end
81
-
82
- tests('simple request with response_block on streaming endpoint').returns([res,'response times ok']) do
83
- timed_streaming_test('http://127.0.0.1:9292/streamed/simple', timeout)
84
- end
85
-
86
- tests('simple request with response_block on streaming endpoint with fixed length').returns([res,'response times ok']) do
87
- timed_streaming_test('http://127.0.0.1:9292/streamed/fixed_length', timeout)
88
- end
89
-
90
- end
91
- end
92
-
93
- Shindo.tests('Excon basics (Basic Auth Pass)') do
94
- with_rackup('basic_auth.ru') do
95
- basic_tests('http://test_user:test_password@127.0.0.1:9292')
96
- user, pass, uri = ['test_user', 'test_password', 'http://127.0.0.1:9292'].map(&:freeze)
97
-
98
- tests('with frozen args').returns(200) do
99
- connection = Excon.new(uri, :method => :get, :password => pass, :path => '/content-length/100', :user => user)
100
- response = connection.request
101
- response.status
102
- end
103
-
104
- tests('with user/pass on request').returns(200) do
105
- connection = Excon.new(uri, :method => :get, :path => '/content-length/100')
106
- response = connection.request(:user => user, :password => pass)
107
- response.status
108
- end
109
-
110
- tests('with user/pass on connection and request').returns(200) do
111
- connection = Excon.new(uri, :method => :get, :password => 'incorrect_password', :path => '/content-length/100', :user => 'incorrect_user')
112
- response = connection.request(user: user, password: pass)
113
- response.status
114
- end
115
- end
116
- end
117
-
118
- Shindo.tests('Excon basics (Basic Auth Fail)') do
119
- with_rackup('basic_auth.ru') do
120
- cases = [
121
- ['correct user, no password', 'http://test_user@127.0.0.1:9292'],
122
- ['correct user, wrong password', 'http://test_user:fake_password@127.0.0.1:9292'],
123
- ['wrong user, correct password', 'http://fake_user:test_password@127.0.0.1:9292']
124
- ]
125
- cases.each do |desc,url|
126
- tests("response.status for #{desc}").returns(401) do
127
- connection = Excon.new(url)
128
- response = connection.request(:method => :get, :path => '/content-length/100')
129
- response.status
130
- end
131
- end
132
- end
133
- end
134
-
135
- Shindo.tests('Excon basics (ssl)') do
136
- with_rackup('ssl.ru') do
137
- basic_tests('https://127.0.0.1:9443')
138
- end
139
- end
140
-
141
- Shindo.tests('Excon ssl verify peer (ssl)') do
142
- with_rackup('ssl.ru') do
143
- connection = nil
144
- test do
145
- ssl_ca_file = File.join(File.dirname(__FILE__), 'data', '127.0.0.1.cert.crt')
146
- connection = Excon.new('https://127.0.0.1:9443', :ssl_verify_peer => true, :ssl_ca_file => ssl_ca_file )
147
- true
148
- end
149
-
150
- tests('response.status').returns(200) do
151
- response = connection.request(:method => :get, :path => '/content-length/100')
152
-
153
- response.status
154
- end
155
- end
156
-
157
- with_rackup('ssl_mismatched_cn.ru') do
158
- connection = nil
159
- test do
160
- ssl_ca_file = File.join(File.dirname(__FILE__), 'data', 'excon.cert.crt')
161
- connection = Excon.new('https://127.0.0.1:9443', :ssl_verify_peer => true, :ssl_ca_file => ssl_ca_file, :ssl_verify_peer_host => 'excon' )
162
- true
163
- end
164
-
165
- tests('response.status').returns(200) do
166
- response = connection.request(:method => :get, :path => '/content-length/100')
167
-
168
- response.status
169
- end
170
- end
171
- end
172
-
173
- Shindo.tests('Excon ssl verify peer (ssl cert store)') do
174
- with_rackup('ssl.ru') do
175
- connection = nil
176
- test do
177
- ssl_ca_cert = File.read(File.join(File.dirname(__FILE__), 'data', '127.0.0.1.cert.crt'))
178
- ssl_cert_store = OpenSSL::X509::Store.new
179
- ssl_cert_store.add_cert OpenSSL::X509::Certificate.new ssl_ca_cert
180
- connection = Excon.new('https://127.0.0.1:9443', :ssl_verify_peer => true, :ssl_cert_store => ssl_cert_store )
181
- true
182
- end
183
-
184
- tests('response.status').returns(200) do
185
- response = connection.request(:method => :get, :path => '/content-length/100')
186
-
187
- response.status
188
- end
189
- end
190
- end
191
-
192
- Shindo.tests('Excon basics (ssl file)',['focus']) do
193
- with_rackup('ssl_verify_peer.ru') do
194
-
195
- tests('GET /content-length/100').raises(Excon::Errors::SocketError) do
196
- connection = Excon::Connection.new({
197
- :host => '127.0.0.1',
198
- :hostname => '127.0.0.1',
199
- :nonblock => false,
200
- :port => 8443,
201
- :scheme => 'https',
202
- :ssl_verify_peer => false
203
- })
204
- connection.request(:method => :get, :path => '/content-length/100')
205
- end
206
-
207
- cert_key_path = File.join(File.dirname(__FILE__), 'data', 'excon.cert.key')
208
- cert_crt_path = File.join(File.dirname(__FILE__), 'data', 'excon.cert.crt')
209
- basic_tests('https://127.0.0.1:8443', client_key: cert_key_path, client_cert: cert_crt_path)
210
-
211
- cert_key_data = File.read cert_key_path
212
- cert_crt_data = File.read cert_crt_path
213
- basic_tests('https://127.0.0.1:8443', client_key_data: cert_key_data, client_cert_data: cert_crt_data)
214
- end
215
- end
216
-
217
- Shindo.tests('Excon basics (ssl file paths)',['focus']) do
218
- with_rackup('ssl_verify_peer.ru') do
219
-
220
- tests('GET /content-length/100').raises(Excon::Errors::SocketError) do
221
- connection = Excon::Connection.new({
222
- :host => '127.0.0.1',
223
- :hostname => '127.0.0.1',
224
- :nonblock => false,
225
- :port => 8443,
226
- :scheme => 'https',
227
- :ssl_verify_peer => false
228
- })
229
- connection.request(:method => :get, :path => '/content-length/100')
230
- end
231
-
232
- basic_tests('https://127.0.0.1:8443',
233
- :private_key_path => File.join(File.dirname(__FILE__), 'data', 'excon.cert.key'),
234
- :certificate_path => File.join(File.dirname(__FILE__), 'data', 'excon.cert.crt')
235
- )
236
-
237
- end
238
- end
239
-
240
- Shindo.tests('Excon basics (ssl string)', ['focus']) do
241
- with_rackup('ssl_verify_peer.ru') do
242
- basic_tests('https://127.0.0.1:8443',
243
- :private_key => File.read(File.join(File.dirname(__FILE__), 'data', 'excon.cert.key')),
244
- :certificate => File.read(File.join(File.dirname(__FILE__), 'data', 'excon.cert.crt'))
245
- )
246
- end
247
- end
248
-
249
- Shindo.tests('Excon basics (Unix socket)') do
250
- pending if RUBY_PLATFORM == 'java' # need to find suitable server for jruby
251
-
252
- file_name = '/tmp/unicorn.sock'
253
- with_unicorn('basic.ru', 'unix://'+file_name) do
254
- basic_tests("unix:/", :socket => file_name)
255
-
256
- tests('explicit uri passed to connection') do
257
- tests('GET /content-length/100').returns(200) do
258
- connection = Excon::Connection.new({
259
- :socket => file_name,
260
- :nonblock => false,
261
- :scheme => 'unix',
262
- :ssl_verify_peer => false
263
- })
264
- response = connection.request(:method => :get, :path => '/content-length/100')
265
- response[:status]
266
- end
267
- end
268
-
269
- tests('http Host header is empty') do
270
- tests('GET /headers').returns("") do
271
- connection = Excon::Connection.new({
272
- :socket => file_name,
273
- :nonblock => false,
274
- :scheme => 'unix',
275
- :ssl_verify_peer => false
276
- })
277
- response = connection.request(:method => :get, :path => '/headers')
278
- JSON.parse(response.body)['HTTP_HOST']
279
- end
280
- end
281
- end
282
- end
283
-
284
- Shindo.tests('Excon basics (reusable local port)') do
285
- class CustomSocket < Socket
286
- def initialize
287
- super(AF_INET, SOCK_STREAM, 0)
288
- setsockopt(SOL_SOCKET, SO_REUSEADDR, true)
289
- if defined?(SO_REUSEPORT)
290
- setsockopt(SOL_SOCKET, SO_REUSEPORT, true)
291
- end
292
- end
293
-
294
- def bind(address, port)
295
- super(Socket.pack_sockaddr_in(port, address))
296
- end
297
-
298
- def connect(address, port)
299
- super(Socket.pack_sockaddr_in(port, address))
300
- end
301
-
302
- def http_get(path)
303
- print "GET /content-length/10 HTTP/1.0\r\n\r\n"
304
- read.split("\r\n\r\n", 2)[1]
305
- end
306
-
307
- def self.ip_address_list
308
- if Socket.respond_to?(:ip_address_list)
309
- Socket.ip_address_list.select(&:ipv4?).map(&:ip_address)
310
- else
311
- `ifconfig`.scan(/inet.*?(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/).flatten
312
- end
313
- end
314
-
315
- def self.find_alternate_ip(ip)
316
- ip_address_list.detect {|a| a != ip } || '127.0.0.1'
317
- end
318
- end
319
-
320
- with_rackup('basic.ru', '0.0.0.0') do
321
- connection = Excon.new("http://127.0.0.1:9292/echo",
322
- :reuseaddr => true, # enable address and port reuse
323
- :persistent => true # keep the socket open
324
- )
325
- response = connection.get
326
-
327
- tests('has a local port').returns(true) do
328
- response.local_port.to_s =~ /\d{4,5}/ ? true : false
329
- end
330
-
331
- tests('local port can be re-bound').returns('x' * 10) do
332
- # create a socket with address/port reuse enabled
333
- s = CustomSocket.new
334
-
335
- # bind to the same local port and address used in the get above (won't work without reuse options on both sockets)
336
- s.bind(response.local_address, response.local_port)
337
-
338
- # connect to the server on a different address than was used for the initial connection to avoid duplicate 5-tuples of: {protcol, src_port, src_addr, dst_port, dst_addr}
339
- s.connect(CustomSocket.find_alternate_ip(response.local_address), 9292)
340
-
341
- # send the request
342
- body = s.http_get("/content-length/10")
343
-
344
- # close both the sockets
345
- s.close
346
- connection.reset
347
-
348
- body
349
- end
350
- end
351
- end
@@ -1,133 +0,0 @@
1
- require 'shindo'
2
-
3
- Shindo.tests('Batch Requests') do
4
- with_server('good') do
5
- tests('with batch request size 2') do
6
- returns(%w{ 1 2 1 2 }, 'batch request size 2') do
7
- connection = Excon.new('http://127.0.0.1:9292')
8
-
9
- ret = []
10
- ret << connection.batch_requests([
11
- {:method => :get, :path => '/echo/request_count'},
12
- {:method => :get, :path => '/echo/request_count'},
13
- {:method => :get, :path => '/echo/request_count'},
14
- {:method => :get, :path => '/echo/request_count'}
15
- ], 2).map(&:body)
16
-
17
- ret.flatten
18
- end
19
- end
20
-
21
- tests('peristent with batch request size 2') do
22
- returns(%w{ 1 2 3 4 }, 'persistent batch request size 2') do
23
- connection = Excon.new('http://127.0.0.1:9292', :persistent => true)
24
-
25
- ret = []
26
- ret << connection.batch_requests([
27
- {:method => :get, :path => '/echo/request_count'},
28
- {:method => :get, :path => '/echo/request_count'},
29
- {:method => :get, :path => '/echo/request_count'},
30
- {:method => :get, :path => '/echo/request_count'}
31
- ], 2).map(&:body)
32
-
33
- ret.flatten
34
- end
35
- end
36
-
37
- tests('with batch request size 3') do
38
- returns(%w{ 1 2 3 1 }, 'batch request size 3') do
39
- connection = Excon.new('http://127.0.0.1:9292')
40
-
41
- ret = []
42
- ret << connection.batch_requests([
43
- {:method => :get, :path => '/echo/request_count'},
44
- {:method => :get, :path => '/echo/request_count'},
45
- {:method => :get, :path => '/echo/request_count'},
46
- {:method => :get, :path => '/echo/request_count'}
47
- ], 3).map(&:body)
48
-
49
- ret.flatten
50
- end
51
- end
52
-
53
- tests('persistent with batch request size 3') do
54
- returns(%w{ 1 2 3 4 }, 'persistent batch request size 3') do
55
- connection = Excon.new('http://127.0.0.1:9292', :persistent => true)
56
-
57
- ret = []
58
- ret << connection.batch_requests([
59
- {:method => :get, :path => '/echo/request_count'},
60
- {:method => :get, :path => '/echo/request_count'},
61
- {:method => :get, :path => '/echo/request_count'},
62
- {:method => :get, :path => '/echo/request_count'}
63
- ], 3).map(&:body)
64
-
65
- ret.flatten
66
- end
67
- end
68
-
69
- tests('with batch request size 4') do
70
- returns(%w{ 1 2 3 4 }, 'batch request size 4') do
71
- connection = Excon.new('http://127.0.0.1:9292')
72
-
73
- ret = []
74
- ret << connection.batch_requests([
75
- {:method => :get, :path => '/echo/request_count'},
76
- {:method => :get, :path => '/echo/request_count'},
77
- {:method => :get, :path => '/echo/request_count'},
78
- {:method => :get, :path => '/echo/request_count'}
79
- ], 4).map(&:body)
80
-
81
- ret.flatten
82
- end
83
- end
84
-
85
- tests('persistent with batch request size 4') do
86
- returns(%w{ 1 2 3 4 }, 'persistent batch request size 4') do
87
- connection = Excon.new('http://127.0.0.1:9292', :persistent => true)
88
-
89
- ret = []
90
- ret << connection.batch_requests([
91
- {:method => :get, :path => '/echo/request_count'},
92
- {:method => :get, :path => '/echo/request_count'},
93
- {:method => :get, :path => '/echo/request_count'},
94
- {:method => :get, :path => '/echo/request_count'}
95
- ], 4).map(&:body)
96
-
97
- ret.flatten
98
- end
99
- end
100
-
101
- tests('with batch request size 8') do
102
- returns(%w{ 1 2 3 4 }, 'batch request size 8') do
103
- connection = Excon.new('http://127.0.0.1:9292')
104
-
105
- ret = []
106
- ret << connection.batch_requests([
107
- {:method => :get, :path => '/echo/request_count'},
108
- {:method => :get, :path => '/echo/request_count'},
109
- {:method => :get, :path => '/echo/request_count'},
110
- {:method => :get, :path => '/echo/request_count'}
111
- ], 8).map(&:body)
112
-
113
- ret.flatten
114
- end
115
- end
116
-
117
- tests('persistent with batch request size 8') do
118
- returns(%w{ 1 2 3 4 }, 'persistent batch request size 8') do
119
- connection = Excon.new('http://127.0.0.1:9292', :persistent => true)
120
-
121
- ret = []
122
- ret << connection.batch_requests([
123
- {:method => :get, :path => '/echo/request_count'},
124
- {:method => :get, :path => '/echo/request_count'},
125
- {:method => :get, :path => '/echo/request_count'},
126
- {:method => :get, :path => '/echo/request_count'}
127
- ], 8).map(&:body)
128
-
129
- ret.flatten
130
- end
131
- end
132
- end
133
- end
@@ -1,31 +0,0 @@
1
- Shindo.tests('Excon Response Validation') do
2
- env_init
3
-
4
- with_server('good') do
5
- tests('good responses with complete headers') do
6
- 100.times do
7
- res = Excon.get('http://127.0.0.1:9292/chunked/simple')
8
- returns(true) { res.body == "hello world" }
9
- returns(true) { res.status_line == "HTTP/1.1 200 OK\r\n" }
10
- returns(true) { res.status == 200}
11
- returns(true) { res.reason_phrase == "OK" }
12
- returns(true) { res.remote_ip == "127.0.0.1" }
13
- end
14
- end
15
- end
16
-
17
- with_server('error') do
18
- tests('error responses with complete headers') do
19
- 100.times do
20
- res = Excon.get('http://127.0.0.1:9292/error/not_found')
21
- returns(true) { res.body == "server says not found" }
22
- returns(true) { res.status_line == "HTTP/1.1 404 Not Found\r\n" }
23
- returns(true) { res.status == 404}
24
- returns(true) { res.reason_phrase == "Not Found" }
25
- returns(true) { res.remote_ip == "127.0.0.1" }
26
- end
27
- end
28
- end
29
-
30
- env_restore
31
- end
@@ -1,20 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIDUjCCAjqgAwIBAgIJAMw/PAoBSqk8MA0GCSqGSIb3DQEBCwUAMCQxEjAQBgNV
3
- BAMTCTEyNy4wLjAuMTEOMAwGA1UEChMFZXhjb24wHhcNMTcwOTA1MTk0MzMwWhcN
4
- MTgwOTA1MTk0MzMwWjAkMRIwEAYDVQQDEwkxMjcuMC4wLjExDjAMBgNVBAoTBWV4
5
- Y29uMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/PbsbAxwowMioOR4
6
- UGR/tDF4ul6TZSKtiYxYqe+xEhlgLzS7/9mQibkJAz2EKNNd+DR8XnkvB84WNWyL
7
- DNeq1de3vZCgmN9W1oddoxbhNGKLSN6KmBxANaJzpbYHBHKJhErqGYeBoBf135UF
8
- 2hVh7oU9n4P5ozdnjpx3IlNh6coDwNmuGkpfGftL2UbOZOBuXM7E0mtOlTUTg3OF
9
- tvITBcXf1iFNcLI9KrtEkvVsC3iHEis83y0V4sPSPxl+UYJI44XowjIQ9hxs2616
10
- GvITep2m/ydTnjwu/wn5OSnyNNRV+jEYzDfCSQ7MZxoLDm05RVRZJY1hJwizaP7N
11
- a2pNuQIDAQABo4GGMIGDMB0GA1UdDgQWBBRdlYAjIjj58kiqr2bDwUxdsIPgMzBU
12
- BgNVHSMETTBLgBRdlYAjIjj58kiqr2bDwUxdsIPgM6EopCYwJDESMBAGA1UEAxMJ
13
- MTI3LjAuMC4xMQ4wDAYDVQQKEwVleGNvboIJAMw/PAoBSqk8MAwGA1UdEwQFMAMB
14
- Af8wDQYJKoZIhvcNAQELBQADggEBAIN1e6jRgMI/PD/F5nMgZJZ5Zv9hPu8ID1v3
15
- Efy7hkNS7KXWLXLRbw9HVBscrNGDmX2l0oqx6WSjn6n8yFFMlI+zWAUZjuF+8PjC
16
- fa/eFa3UPq8nPqhO6sQrB2ZlPX6ydW1yD4gNflJLhzmNehgytK2FnZabH0jytot2
17
- eaZl32yLu/7SmNEpyYNUWurkyB7tk77+7AiBQ9R4HCPWcrfdKic+XN5YNE5cZ+mm
18
- YrHGxdS+5U848N6Qtj3B7fTuDn1K/WfpWKtR/RpP6k71eEZi7rufEuutcjPcUpwr
19
- NzbvNobphr9vjCv9tbZgoAmKyBKOkLfj1gfv3HEPbFKOEYGZyBI=
20
- -----END CERTIFICATE-----
@@ -1,27 +0,0 @@
1
- -----BEGIN RSA PRIVATE KEY-----
2
- MIIEpgIBAAKCAQEA/PbsbAxwowMioOR4UGR/tDF4ul6TZSKtiYxYqe+xEhlgLzS7
3
- /9mQibkJAz2EKNNd+DR8XnkvB84WNWyLDNeq1de3vZCgmN9W1oddoxbhNGKLSN6K
4
- mBxANaJzpbYHBHKJhErqGYeBoBf135UF2hVh7oU9n4P5ozdnjpx3IlNh6coDwNmu
5
- GkpfGftL2UbOZOBuXM7E0mtOlTUTg3OFtvITBcXf1iFNcLI9KrtEkvVsC3iHEis8
6
- 3y0V4sPSPxl+UYJI44XowjIQ9hxs2616GvITep2m/ydTnjwu/wn5OSnyNNRV+jEY
7
- zDfCSQ7MZxoLDm05RVRZJY1hJwizaP7Na2pNuQIDAQABAoIBAQCFqd+Q1B3sNKrm
8
- gvKD4CaOSxm0uGZ/qQwzQuJSoOFaY+gr6VxxOz+hVhFKEgY0IENl9C3HKZdNM3sO
9
- rZTnq0mMhtiCpNoHDPPwlURH+b3zlSJt1ZE8AKl47abX58/bbL33FjKOXMiElESJ
10
- 6E9YRbYid2rxT6XntU3V0B0vGQoConvcGN+6jtTvZInTLU+tuQTfw/GpB7AJcTej
11
- I2/gWx1lQurfv5iGcOqwPOoLN7qMWGsXbFxEFgmD1VN3AiCPV/A+gq8xf2wccws9
12
- dNwqz1sbphbR1nl0gUwWP3PRQa31RqgOsGLj2EFtBqZio8zzyNN6WLbVSMZfiDUi
13
- NIplFH6BAoGBAP/S5VKYkHCBJ+2QC9v42Bb8Ip6QC1oh+Sdm5geZuB72+xIWa6+1
14
- 7Vw6DW+wDvEEDRICcl38iI60hq+H3TZRa35daDlUXEy66HNWwCxA//l+48Jvcx0x
15
- 03qQDeB3PZqewsbey+aL23Tli8Kl2g9njzjUgi7tSbTEwWTlmNdElTnRAoGBAP0j
16
- hguvZNitFd0ScyHUr2VduWEPgsYVHcvzbUZ+UGga0zr2gfYwkVBiF7MZ2BqGWg0/
17
- ZNzmmlgLyk2sBhqN5B/8qjyJ3uvolstkj6vuwIyXa9Z4tAhy4SBtvwaLT19ZS+Y6
18
- EGnC1vdsyBypwxoet+uVs5KkFOUt6YD8upSq6udpAoGBAPLKPqYy8PI1QaWuzfKI
19
- qty1kk2WO4/hKkuA1tNjymBo2kOCT9VE/e5HkjTrjGKlC5qKA+y7HQcCwciZUxKY
20
- F0Kod5/hNnAD+1Rrgpr9XXJ2QMZpa4DLpv9s9B6STD8QaZ7AGBfHqBG7QPcM3HU+
21
- Pakb1imfPhJ3oWuWk4XKKy3hAoGBAOh7YJeIvOiWhhbj4+M1LuS8oA15LlR3fkca
22
- SMjOJ1CFGmvzi0YsMrkNbdCqMqOhskCqcRrDmwqzwVd2XqCyocmSxlIVGSu2EA+6
23
- SozQF/zG8F4nushroUCkKiV7eikKnL9TolFPhRf1yw8wBiQOBEIT2bkagqo8cVBq
24
- S31QP67JAoGBALWqrYJlU4SPW0uKAjRxHguUIyK1G1ezQjHq6kPaC2pnUkcReABZ
25
- KHKx+ZKkdO+y0itpTcxx1wKq7Uf8NH2rc2QWXNGeJajgt6V10dZbz6K6cVxeP+KV
26
- XqAxKDMfbUjqZqCBsEY+FOKoIMiCTqjvy9NIFDuvXT7Bs24FlQkjQPG8
27
- -----END RSA PRIVATE KEY-----
@@ -1,20 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIDRTCCAi2gAwIBAgIJAMaDk10V/YquMA0GCSqGSIb3DQEBCwUAMCAxDjAMBgNV
3
- BAMTBWV4Y29uMQ4wDAYDVQQKEwVleGNvbjAeFw0xNzA5MDUxOTQzMzBaFw0xODA5
4
- MDUxOTQzMzBaMCAxDjAMBgNVBAMTBWV4Y29uMQ4wDAYDVQQKEwVleGNvbjCCASIw
5
- DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMWedu1HHibgTE5vxcA826vtlgDM
6
- KEYN7NPSkhH+ZjDz/nWZ7Y7DcDcNIsW3Nd53PsUGwva6FnBk0j/2GAwm+QO4bjHo
7
- UzB2O4rkePsrhrAOtGq9uINKmcAS0y9Ptl/ZTv1QsKUi4lKjDoalyHV8mEohpWNl
8
- 9uWO0aN+Q2KNd4p0SHmlNGAZk9BiiRvPJJqenZ2D51MbJdH5O3N9FhLnwIK6eVaU
9
- R/a3lf5hdkyGYi39zpGx47VG/6q9is1t+WXBWaaLdU0omDhlH281kq+HaV3akG6k
10
- Kh70xFGXU9Ya7qwR+PA+WkGJO6z88qwESRpGZfSSBklpM0+qIbYOP7Zb9PMCAwEA
11
- AaOBgTB/MB0GA1UdDgQWBBTMRFBCu23CeR4YBGR9+2h2b6xqODBQBgNVHSMESTBH
12
- gBTMRFBCu23CeR4YBGR9+2h2b6xqOKEkpCIwIDEOMAwGA1UEAxMFZXhjb24xDjAM
13
- BgNVBAoTBWV4Y29uggkAxoOTXRX9iq4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0B
14
- AQsFAAOCAQEAWU6Q11wZFK6GhYK85IkW90FHug8/13DRJ3Q041ttQEpR48DW1lgj
15
- 5861hzKkYfyudJhk97WEnx2pzsZSogbiGv/jMT1otKk8RqQG/sQy/bqoTVZEg7I2
16
- FyPCMV4fPFCm2dL7NTh51q0xeb9QFkxNFQ7YGtAvPSxs+GM/8gLxs4pSPMLSCNxX
17
- 0r6Lvook0ur+WXalGLu8110bCa4k+00SlZg0qZISlfrZyF5ofybylMjyy/qArgUy
18
- 8eltHfWbPhJEqf1yDPz2xCYGGCSplJMpvAhvSf4GSM55B27AoPlYlaS5wEaJf8Ft
19
- g72ESuzICOQ617jOTeasIkkkoINIdnW1oA==
20
- -----END CERTIFICATE-----