typhoeus 0.1.6 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
- data/CHANGELOG.markdown +31 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +30 -0
- data/README.textile +333 -0
- data/Rakefile +38 -0
- data/VERSION +1 -0
- data/benchmarks/profile.rb +25 -0
- data/benchmarks/vs_nethttp.rb +35 -0
- data/examples/twitter.rb +21 -0
- data/ext/typhoeus/.gitignore +6 -0
- data/ext/typhoeus/extconf.rb +3 -2
- data/ext/typhoeus/native.h +7 -0
- data/ext/typhoeus/typhoeus_multi.c +1 -2
- data/lib/typhoeus/.gitignore +1 -0
- data/lib/typhoeus/easy.rb +172 -42
- data/lib/typhoeus/hydra/callbacks.rb +24 -0
- data/lib/typhoeus/hydra/connect_options.rb +45 -0
- data/lib/typhoeus/hydra/stubbing.rb +52 -0
- data/lib/typhoeus/hydra.rb +85 -59
- data/lib/typhoeus/hydra_mock.rb +131 -0
- data/lib/typhoeus/multi.rb +4 -3
- data/lib/typhoeus/normalized_header_hash.rb +58 -0
- data/lib/typhoeus/remote_proxy_object.rb +6 -6
- data/lib/typhoeus/request.rb +118 -31
- data/lib/typhoeus/response.rb +61 -4
- data/lib/typhoeus/service.rb +20 -0
- data/lib/typhoeus/utils.rb +24 -0
- data/lib/typhoeus.rb +11 -8
- data/profilers/valgrind.rb +24 -0
- data/spec/fixtures/result_set.xml +60 -0
- data/spec/servers/app.rb +48 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/typhoeus/easy_spec.rb +126 -4
- data/spec/typhoeus/hydra_mock_spec.rb +300 -0
- data/spec/typhoeus/hydra_spec.rb +456 -0
- data/spec/typhoeus/normalized_header_hash_spec.rb +41 -0
- data/spec/typhoeus/remote_spec.rb +2 -2
- data/spec/typhoeus/request_spec.rb +247 -0
- data/spec/typhoeus/response_spec.rb +104 -1
- data/spec/typhoeus/utils_spec.rb +22 -0
- data/typhoeus.gemspec +123 -0
- metadata +145 -34
- data/ext/typhoeus/Makefile +0 -157
data/spec/typhoeus/easy_spec.rb
CHANGED
|
@@ -1,9 +1,51 @@
|
|
|
1
1
|
require File.dirname(__FILE__) + '/../spec_helper'
|
|
2
2
|
|
|
3
|
-
describe Typhoeus::Easy do
|
|
3
|
+
describe Typhoeus::Easy do
|
|
4
|
+
describe "#supports_zlib" do
|
|
5
|
+
before(:each) do
|
|
6
|
+
@easy = Typhoeus::Easy.new
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
it "should return true if the version string has zlib" do
|
|
10
|
+
@easy.stub!(:curl_version).and_return("libcurl/7.20.0 OpenSSL/0.9.8l zlib/1.2.3 libidn/1.16")
|
|
11
|
+
@easy.supports_zlib?.should be_true
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
it "should return false if the version string doesn't have zlib" do
|
|
15
|
+
@easy.stub!(:curl_version).and_return("libcurl/7.20.0 OpenSSL/0.9.8l libidn/1.16")
|
|
16
|
+
@easy.supports_zlib?.should be_false
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
4
20
|
describe "options" do
|
|
5
|
-
it "should
|
|
6
|
-
|
|
21
|
+
it "should not follow redirects if not instructed to" do
|
|
22
|
+
e = Typhoeus::Easy.new
|
|
23
|
+
e.url = "http://localhost:3001/redirect"
|
|
24
|
+
e.method = :get
|
|
25
|
+
e.perform
|
|
26
|
+
e.response_code.should == 302
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
it "should allow for following redirects" do
|
|
30
|
+
e = Typhoeus::Easy.new
|
|
31
|
+
e.url = "http://localhost:3001/redirect"
|
|
32
|
+
e.method = :get
|
|
33
|
+
e.follow_location = true
|
|
34
|
+
e.perform
|
|
35
|
+
e.response_code.should == 200
|
|
36
|
+
JSON.parse(e.response_body)["REQUEST_METHOD"].should == "GET"
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
it "should allow you to set the user agent" do
|
|
40
|
+
easy = Typhoeus::Easy.new
|
|
41
|
+
easy.url = "http://localhost:3002"
|
|
42
|
+
easy.method = :get
|
|
43
|
+
easy.user_agent = "myapp"
|
|
44
|
+
easy.perform
|
|
45
|
+
easy.response_code.should == 200
|
|
46
|
+
JSON.parse(easy.response_body)["HTTP_USER_AGENT"].should == "myapp"
|
|
47
|
+
end
|
|
48
|
+
|
|
7
49
|
it "should provide a timeout in milliseconds" do
|
|
8
50
|
e = Typhoeus::Easy.new
|
|
9
51
|
e.url = "http://localhost:3001"
|
|
@@ -13,6 +55,55 @@ describe Typhoeus::Easy do
|
|
|
13
55
|
# this doesn't work on a mac for some reason
|
|
14
56
|
# e.timed_out?.should == true
|
|
15
57
|
end
|
|
58
|
+
|
|
59
|
+
it "should allow the setting of the max redirects to follow" do
|
|
60
|
+
e = Typhoeus::Easy.new
|
|
61
|
+
e.url = "http://localhost:3001/redirect"
|
|
62
|
+
e.method = :get
|
|
63
|
+
e.follow_location = true
|
|
64
|
+
e.max_redirects = 5
|
|
65
|
+
e.perform
|
|
66
|
+
e.response_code.should == 200
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
it "should handle our bad redirect action, provided we've set max_redirects properly" do
|
|
70
|
+
e = Typhoeus::Easy.new
|
|
71
|
+
e.url = "http://localhost:3001/bad_redirect"
|
|
72
|
+
e.method = :get
|
|
73
|
+
e.follow_location = true
|
|
74
|
+
e.max_redirects = 5
|
|
75
|
+
e.perform
|
|
76
|
+
e.response_code.should == 302
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
describe "authentication" do
|
|
81
|
+
it "should allow to set username and password" do
|
|
82
|
+
e = Typhoeus::Easy.new
|
|
83
|
+
username, password = 'foo', 'bar'
|
|
84
|
+
e.auth = { :username => username, :password => password }
|
|
85
|
+
e.url = "http://localhost:3001/auth_basic/#{username}/#{password}"
|
|
86
|
+
e.method = :get
|
|
87
|
+
e.perform
|
|
88
|
+
e.response_code.should == 200
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
it "should allow to query auth methods support by the server" do
|
|
92
|
+
e = Typhoeus::Easy.new
|
|
93
|
+
e.url = "http://localhost:3001/auth_basic/foo/bar"
|
|
94
|
+
e.method = :get
|
|
95
|
+
e.perform
|
|
96
|
+
e.auth_methods.should == Typhoeus::Easy::AUTH_TYPES[:CURLAUTH_BASIC]
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
it "should allow to set authentication method" do
|
|
100
|
+
e = Typhoeus::Easy.new
|
|
101
|
+
e.auth = { :username => 'username', :password => 'password', :method => Typhoeus::Easy::AUTH_TYPES[:CURLAUTH_NTLM] }
|
|
102
|
+
e.url = "http://localhost:3001/auth_ntlm"
|
|
103
|
+
e.method = :get
|
|
104
|
+
e.perform
|
|
105
|
+
e.response_code.should == 200
|
|
106
|
+
end
|
|
16
107
|
end
|
|
17
108
|
|
|
18
109
|
describe "get" do
|
|
@@ -26,6 +117,24 @@ describe Typhoeus::Easy do
|
|
|
26
117
|
end
|
|
27
118
|
end
|
|
28
119
|
|
|
120
|
+
describe "purge" do
|
|
121
|
+
it "should set custom request to purge" do
|
|
122
|
+
easy = Typhoeus::Easy.new
|
|
123
|
+
easy.should_receive(:set_option).with(Typhoeus::Easy::OPTION_VALUES[:CURLOPT_CUSTOMREQUEST], "PURGE").once
|
|
124
|
+
easy.method = :purge
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
describe "head" do
|
|
129
|
+
it "should perform a head" do
|
|
130
|
+
easy = Typhoeus::Easy.new
|
|
131
|
+
easy.url = "http://localhost:3002"
|
|
132
|
+
easy.method = :head
|
|
133
|
+
easy.perform
|
|
134
|
+
easy.response_code.should == 200
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
|
|
29
138
|
describe "start_time" do
|
|
30
139
|
it "should be get/settable" do
|
|
31
140
|
time = Time.now
|
|
@@ -123,5 +232,18 @@ describe Typhoeus::Easy do
|
|
|
123
232
|
easy.response_code.should == 200
|
|
124
233
|
easy.response_body.should include("this is a body!")
|
|
125
234
|
end
|
|
126
|
-
end
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
describe "encoding/compression support" do
|
|
238
|
+
|
|
239
|
+
it "should send valid encoding headers and decode the response" do
|
|
240
|
+
easy = Typhoeus::Easy.new
|
|
241
|
+
easy.url = "http://localhost:3002/gzipped"
|
|
242
|
+
easy.method = :get
|
|
243
|
+
easy.perform
|
|
244
|
+
easy.response_code.should == 200
|
|
245
|
+
JSON.parse(easy.response_body)["HTTP_ACCEPT_ENCODING"].should == "deflate, gzip"
|
|
246
|
+
end
|
|
247
|
+
|
|
248
|
+
end
|
|
127
249
|
end
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + "/../spec_helper"
|
|
2
|
+
|
|
3
|
+
describe Typhoeus::HydraMock do
|
|
4
|
+
it "should mark all responses as mocks" do
|
|
5
|
+
response = Typhoeus::Response.new(:mock => false)
|
|
6
|
+
response.should_not be_mock
|
|
7
|
+
|
|
8
|
+
mock = Typhoeus::HydraMock.new("http://localhost", :get)
|
|
9
|
+
mock.and_return(response)
|
|
10
|
+
|
|
11
|
+
mock.response.should be_mock
|
|
12
|
+
response.should be_mock
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
describe "stubbing response values" do
|
|
16
|
+
before(:each) do
|
|
17
|
+
@stub = Typhoeus::HydraMock.new('http://localhost:3000', :get)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
describe "with a single response" do
|
|
21
|
+
it "should always return that response" do
|
|
22
|
+
response = Typhoeus::Response.new
|
|
23
|
+
@stub.and_return(response)
|
|
24
|
+
|
|
25
|
+
5.times do
|
|
26
|
+
@stub.response.should == response
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
describe "with multiple responses" do
|
|
32
|
+
it "should return consecutive responses in the array, then keep returning the last one" do
|
|
33
|
+
responses = []
|
|
34
|
+
3.times do |i|
|
|
35
|
+
responses << Typhoeus::Response.new(:body => "response #{i}")
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Stub 3 consecutive responses.
|
|
39
|
+
@stub.and_return(responses)
|
|
40
|
+
|
|
41
|
+
0.upto(2) do |i|
|
|
42
|
+
@stub.response.should == responses[i]
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
5.times do
|
|
46
|
+
@stub.response.should == responses.last
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe "#matches?" do
|
|
53
|
+
describe "basic matching" do
|
|
54
|
+
it "should not match if the HTTP verbs are different" do
|
|
55
|
+
request = Typhoeus::Request.new("http://localhost:3000",
|
|
56
|
+
:method => :get)
|
|
57
|
+
mock = Typhoeus::HydraMock.new("http://localhost:3000", :post)
|
|
58
|
+
mock.matches?(request).should be_false
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
describe "matching on ports" do
|
|
63
|
+
it "should handle default port 80 sanely" do
|
|
64
|
+
mock = Typhoeus::HydraMock.new('http://www.example.com:80/', :get,
|
|
65
|
+
:headers => { 'user-agent' => 'test' })
|
|
66
|
+
request = Typhoeus::Request.new('http://www.example.com/',
|
|
67
|
+
:method => :get,
|
|
68
|
+
:user_agent => 'test')
|
|
69
|
+
mock.matches?(request).should be_true
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
it "should handle default port 443 sanely" do
|
|
73
|
+
mock = Typhoeus::HydraMock.new('https://www.example.com:443/', :get,
|
|
74
|
+
:headers => { 'user-agent' => 'test' })
|
|
75
|
+
request = Typhoeus::Request.new('https://www.example.com/',
|
|
76
|
+
:method => :get,
|
|
77
|
+
:user_agent => 'test')
|
|
78
|
+
mock.matches?(request).should be_true
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
describe "any HTTP verb" do
|
|
84
|
+
it "should match any verb" do
|
|
85
|
+
mock = Typhoeus::HydraMock.new("http://localhost:3000", :any,
|
|
86
|
+
:headers => { 'user-agent' => 'test' })
|
|
87
|
+
[:get, :post, :delete, :put].each do |verb|
|
|
88
|
+
request = Typhoeus::Request.new("http://localhost:3000",
|
|
89
|
+
:method => verb,
|
|
90
|
+
:user_agent => 'test')
|
|
91
|
+
mock.matches?(request).should be_true
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
describe "header matching" do
|
|
97
|
+
def request(options = {})
|
|
98
|
+
Typhoeus::Request.new("http://localhost:3000", options.merge(:method => :get))
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
def mock(options = {})
|
|
102
|
+
Typhoeus::HydraMock.new("http://localhost:3000", :get, options)
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
context 'when no :headers option is given' do
|
|
106
|
+
subject { mock }
|
|
107
|
+
|
|
108
|
+
it "matches regardless of whether or not the request has headers" do
|
|
109
|
+
subject.matches?(request(:headers => nil)).should be_true
|
|
110
|
+
subject.matches?(request(:headers => {})).should be_true
|
|
111
|
+
subject.matches?(request(:headers => { 'a' => 'b' })).should be_true
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
[nil, {}].each do |value|
|
|
116
|
+
context "for :headers => #{value.inspect}" do
|
|
117
|
+
subject { mock(:headers => value) }
|
|
118
|
+
|
|
119
|
+
it "matches when the request has no headers" do
|
|
120
|
+
subject.matches?(request(:headers => nil)).should be_true
|
|
121
|
+
subject.matches?(request(:headers => {})).should be_true
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
it "does not match when the request has headers" do
|
|
125
|
+
subject.matches?(request(:headers => { 'a' => 'b' })).should be_false
|
|
126
|
+
end
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
context 'for :headers => [a hash]' do
|
|
131
|
+
it 'does not match if the request has no headers' do
|
|
132
|
+
m = mock(:headers => { 'A' => 'B', 'C' => 'D' })
|
|
133
|
+
|
|
134
|
+
m.matches?(request).should be_false
|
|
135
|
+
m.matches?(request(:headers => nil)).should be_false
|
|
136
|
+
m.matches?(request(:headers => {})).should be_false
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
it 'does not match if the request lacks any of the given headers' do
|
|
140
|
+
mock(
|
|
141
|
+
:headers => { 'A' => 'B', 'C' => 'D' }
|
|
142
|
+
).matches?(request(
|
|
143
|
+
:headers => { 'A' => 'B' }
|
|
144
|
+
)).should be_false
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
it 'does not match if any of the specified values are different from the request value' do
|
|
148
|
+
mock(
|
|
149
|
+
:headers => { 'A' => 'B', 'C' => 'D' }
|
|
150
|
+
).matches?(request(
|
|
151
|
+
:headers => { 'A' => 'B', 'C' => 'E' }
|
|
152
|
+
)).should be_false
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
it 'matches if the given hash is exactly equal to the request headers' do
|
|
156
|
+
mock(
|
|
157
|
+
:headers => { 'A' => 'B', 'C' => 'D' }
|
|
158
|
+
).matches?(request(
|
|
159
|
+
:headers => { 'A' => 'B', 'C' => 'D' }
|
|
160
|
+
)).should be_true
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
it 'matches even if the request has additional headers not specified in the mock' do
|
|
164
|
+
mock(
|
|
165
|
+
:headers => { 'A' => 'B', 'C' => 'D' }
|
|
166
|
+
).matches?(request(
|
|
167
|
+
:headers => { 'A' => 'B', 'C' => 'D', 'E' => 'F' }
|
|
168
|
+
)).should be_true
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
it 'matches even if the casing of the header keys is different between the mock and request' do
|
|
172
|
+
mock(
|
|
173
|
+
:headers => { 'A' => 'B', 'c' => 'D' }
|
|
174
|
+
).matches?(request(
|
|
175
|
+
:headers => { 'a' => 'B', 'C' => 'D' }
|
|
176
|
+
)).should be_true
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
it 'matches if the mocked values are regexes and match the request values' do
|
|
180
|
+
mock(
|
|
181
|
+
:headers => { 'A' => /foo/, }
|
|
182
|
+
).matches?(request(
|
|
183
|
+
:headers => { 'A' => 'foo bar' }
|
|
184
|
+
)).should be_true
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
it 'does not match if the mocked values are regexes and do not match the request values' do
|
|
188
|
+
mock(
|
|
189
|
+
:headers => { 'A' => /foo/, }
|
|
190
|
+
).matches?(request(
|
|
191
|
+
:headers => { 'A' => 'bar' }
|
|
192
|
+
)).should be_false
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
context 'when a header is specified as an array' do
|
|
196
|
+
it 'matches when the request header has the same array' do
|
|
197
|
+
mock(
|
|
198
|
+
:headers => { 'Accept' => ['text/html', 'text/plain'] }
|
|
199
|
+
).matches?(request(
|
|
200
|
+
:headers => { 'Accept' => ['text/html', 'text/plain'] }
|
|
201
|
+
)).should be_true
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
it 'matches when the request header is a single value and the mock array has the same value' do
|
|
205
|
+
mock(
|
|
206
|
+
:headers => { 'Accept' => ['text/html'] }
|
|
207
|
+
).matches?(request(
|
|
208
|
+
:headers => { 'Accept' => 'text/html' }
|
|
209
|
+
)).should be_true
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
it 'matches even when the request header array is ordered differently' do
|
|
213
|
+
mock(
|
|
214
|
+
:headers => { 'Accept' => ['text/html', 'text/plain'] }
|
|
215
|
+
).matches?(request(
|
|
216
|
+
:headers => { 'Accept' => ['text/plain', 'text/html'] }
|
|
217
|
+
)).should be_true
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
it 'does not match when the request header array lacks a value' do
|
|
221
|
+
mock(
|
|
222
|
+
:headers => { 'Accept' => ['text/html', 'text/plain'] }
|
|
223
|
+
).matches?(request(
|
|
224
|
+
:headers => { 'Accept' => ['text/plain'] }
|
|
225
|
+
)).should be_false
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
it 'does not match when the request header array has an extra value' do
|
|
229
|
+
mock(
|
|
230
|
+
:headers => { 'Accept' => ['text/html', 'text/plain'] }
|
|
231
|
+
).matches?(request(
|
|
232
|
+
:headers => { 'Accept' => ['text/html', 'text/plain', 'application/xml'] }
|
|
233
|
+
)).should be_false
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
it 'does not match when the request header is not an array' do
|
|
237
|
+
mock(
|
|
238
|
+
:headers => { 'Accept' => ['text/html', 'text/plain'] }
|
|
239
|
+
).matches?(request(
|
|
240
|
+
:headers => { 'Accept' => 'text/html' }
|
|
241
|
+
)).should be_false
|
|
242
|
+
end
|
|
243
|
+
end
|
|
244
|
+
end
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
describe "post body matching" do
|
|
248
|
+
it "should not bother matching on body if we don't turn the option on" do
|
|
249
|
+
request = Typhoeus::Request.new("http://localhost:3000",
|
|
250
|
+
:method => :get,
|
|
251
|
+
:user_agent => 'test',
|
|
252
|
+
:body => "fdsafdsa")
|
|
253
|
+
mock = Typhoeus::HydraMock.new("http://localhost:3000", :get,
|
|
254
|
+
:headers => { 'user-agent' => 'test' })
|
|
255
|
+
mock.matches?(request).should be_true
|
|
256
|
+
end
|
|
257
|
+
|
|
258
|
+
it "should match nil correctly" do
|
|
259
|
+
request = Typhoeus::Request.new("http://localhost:3000",
|
|
260
|
+
:method => :get,
|
|
261
|
+
:body => "fdsafdsa")
|
|
262
|
+
mock = Typhoeus::HydraMock.new("http://localhost:3000", :get,
|
|
263
|
+
:body => nil)
|
|
264
|
+
mock.matches?(request).should be_false
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
it "should not match if the bodies do not match" do
|
|
268
|
+
request = Typhoeus::Request.new("http://localhost:3000",
|
|
269
|
+
:method => :get,
|
|
270
|
+
:body => "ffdsadsafdsa")
|
|
271
|
+
mock = Typhoeus::HydraMock.new("http://localhost:3000", :get,
|
|
272
|
+
:body => 'fdsafdsa')
|
|
273
|
+
mock.matches?(request).should be_false
|
|
274
|
+
end
|
|
275
|
+
|
|
276
|
+
it "should match on optional body parameter" do
|
|
277
|
+
request = Typhoeus::Request.new("http://localhost:3000",
|
|
278
|
+
:method => :get,
|
|
279
|
+
:user_agent => 'test',
|
|
280
|
+
:body => "fdsafdsa")
|
|
281
|
+
mock = Typhoeus::HydraMock.new("http://localhost:3000", :get,
|
|
282
|
+
:body => 'fdsafdsa',
|
|
283
|
+
:headers => {
|
|
284
|
+
'User-Agent' => 'test'
|
|
285
|
+
})
|
|
286
|
+
mock.matches?(request).should be_true
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
it "should regex match" do
|
|
290
|
+
request = Typhoeus::Request.new("http://localhost:3000/whatever/fdsa",
|
|
291
|
+
:method => :get,
|
|
292
|
+
:user_agent => 'test')
|
|
293
|
+
mock = Typhoeus::HydraMock.new(/fdsa/, :get,
|
|
294
|
+
:headers => { 'user-agent' => 'test' })
|
|
295
|
+
mock.matches?(request).should be_true
|
|
296
|
+
end
|
|
297
|
+
end
|
|
298
|
+
end
|
|
299
|
+
end
|
|
300
|
+
|