rubysl-net-http 0.0.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +0 -1
- data/.travis.yml +7 -0
- data/README.md +2 -2
- data/Rakefile +0 -1
- data/lib/net/http.rb +1 -0
- data/lib/rubysl/net/http.rb +2 -0
- data/lib/rubysl/net/http/http.rb +2290 -0
- data/lib/rubysl/net/http/https.rb +173 -0
- data/lib/{rubysl-net-http → rubysl/net/http}/version.rb +2 -2
- data/rubysl-net-http.gemspec +18 -18
- data/spec/HTTPBadResponse_spec.rb +7 -0
- data/spec/HTTPError_spec.rb +11 -0
- data/spec/HTTPFatalError_spec.rb +11 -0
- data/spec/HTTPHeaderSyntaxError_spec.rb +7 -0
- data/spec/HTTPRetriableError_spec.rb +11 -0
- data/spec/HTTPServerException_spec.rb +11 -0
- data/spec/http/Proxy_spec.rb +34 -0
- data/spec/http/active_spec.rb +7 -0
- data/spec/http/address_spec.rb +8 -0
- data/spec/http/close_on_empty_response_spec.rb +9 -0
- data/spec/http/copy_spec.rb +26 -0
- data/spec/http/default_port_spec.rb +7 -0
- data/spec/http/delete_spec.rb +26 -0
- data/spec/http/finish_spec.rb +30 -0
- data/spec/http/fixtures/http_server.rb +97 -0
- data/spec/http/get2_spec.rb +7 -0
- data/spec/http/get_print_spec.rb +28 -0
- data/spec/http/get_response_spec.rb +28 -0
- data/spec/http/get_spec.rb +52 -0
- data/spec/http/head2_spec.rb +8 -0
- data/spec/http/head_spec.rb +30 -0
- data/spec/http/http_default_port_spec.rb +7 -0
- data/spec/http/https_default_port_spec.rb +7 -0
- data/spec/http/initialize_spec.rb +45 -0
- data/spec/http/inspect_spec.rb +25 -0
- data/spec/http/is_version_1_1_spec.rb +6 -0
- data/spec/http/is_version_1_2_spec.rb +6 -0
- data/spec/http/lock_spec.rb +26 -0
- data/spec/http/mkcol_spec.rb +26 -0
- data/spec/http/move_spec.rb +30 -0
- data/spec/http/new_spec.rb +96 -0
- data/spec/http/newobj_spec.rb +47 -0
- data/spec/http/open_timeout_spec.rb +23 -0
- data/spec/http/options_spec.rb +30 -0
- data/spec/http/port_spec.rb +8 -0
- data/spec/http/post2_spec.rb +7 -0
- data/spec/http/post_form_spec.rb +20 -0
- data/spec/http/post_spec.rb +43 -0
- data/spec/http/propfind_spec.rb +29 -0
- data/spec/http/proppatch_spec.rb +29 -0
- data/spec/http/proxy_address_spec.rb +30 -0
- data/spec/http/proxy_class_spec.rb +8 -0
- data/spec/http/proxy_pass_spec.rb +38 -0
- data/spec/http/proxy_port_spec.rb +38 -0
- data/spec/http/proxy_user_spec.rb +38 -0
- data/spec/http/put2_spec.rb +7 -0
- data/spec/http/put_spec.rb +29 -0
- data/spec/http/read_timeout_spec.rb +23 -0
- data/spec/http/request_get_spec.rb +7 -0
- data/spec/http/request_head_spec.rb +7 -0
- data/spec/http/request_post_spec.rb +7 -0
- data/spec/http/request_put_spec.rb +7 -0
- data/spec/http/request_spec.rb +114 -0
- data/spec/http/request_types_spec.rb +253 -0
- data/spec/http/send_request_spec.rb +123 -0
- data/spec/http/set_debug_output_spec.rb +34 -0
- data/spec/http/shared/request_get.rb +49 -0
- data/spec/http/shared/request_head.rb +49 -0
- data/spec/http/shared/request_post.rb +49 -0
- data/spec/http/shared/request_put.rb +49 -0
- data/spec/http/shared/started.rb +28 -0
- data/spec/http/shared/version_1_1.rb +19 -0
- data/spec/http/shared/version_1_2.rb +6 -0
- data/spec/http/socket_type_spec.rb +7 -0
- data/spec/http/start_spec.rb +115 -0
- data/spec/http/started_spec.rb +7 -0
- data/spec/http/trace_spec.rb +29 -0
- data/spec/http/unlock_spec.rb +29 -0
- data/spec/http/use_ssl_spec.rb +8 -0
- data/spec/http/version_1_1_spec.rb +21 -0
- data/spec/http/version_1_2_spec.rb +19 -0
- data/spec/httpexceptions/fixtures/classes.rb +5 -0
- data/spec/httpexceptions/initialize_spec.rb +16 -0
- data/spec/httpexceptions/response_spec.rb +9 -0
- data/spec/httpgenericrequest/body_exist_spec.rb +26 -0
- data/spec/httpgenericrequest/body_spec.rb +29 -0
- data/spec/httpgenericrequest/body_stream_spec.rb +31 -0
- data/spec/httpgenericrequest/exec_spec.rb +135 -0
- data/spec/httpgenericrequest/inspect_spec.rb +24 -0
- data/spec/httpgenericrequest/method_spec.rb +14 -0
- data/spec/httpgenericrequest/path_spec.rb +11 -0
- data/spec/httpgenericrequest/request_body_permitted_spec.rb +11 -0
- data/spec/httpgenericrequest/response_body_permitted_spec.rb +11 -0
- data/spec/httpgenericrequest/set_body_internal_spec.rb +20 -0
- data/spec/httpheader/add_field_spec.rb +30 -0
- data/spec/httpheader/basic_auth_spec.rb +13 -0
- data/spec/httpheader/canonical_each_spec.rb +7 -0
- data/spec/httpheader/chunked_spec.rb +21 -0
- data/spec/httpheader/content_length_spec.rb +53 -0
- data/spec/httpheader/content_range_spec.rb +33 -0
- data/spec/httpheader/content_type_spec.rb +25 -0
- data/spec/httpheader/delete_spec.rb +29 -0
- data/spec/httpheader/each_capitalized_name_spec.rb +44 -0
- data/spec/httpheader/each_capitalized_spec.rb +8 -0
- data/spec/httpheader/each_header_spec.rb +7 -0
- data/spec/httpheader/each_key_spec.rb +7 -0
- data/spec/httpheader/each_name_spec.rb +7 -0
- data/spec/httpheader/each_spec.rb +7 -0
- data/spec/httpheader/each_value_spec.rb +45 -0
- data/spec/httpheader/element_reference_spec.rb +38 -0
- data/spec/httpheader/element_set_spec.rb +40 -0
- data/spec/httpheader/fetch_spec.rb +68 -0
- data/spec/httpheader/fixtures/classes.rb +11 -0
- data/spec/httpheader/form_data_spec.rb +7 -0
- data/spec/httpheader/get_fields_spec.rb +38 -0
- data/spec/httpheader/initialize_http_header_spec.rb +28 -0
- data/spec/httpheader/key_spec.rb +20 -0
- data/spec/httpheader/length_spec.rb +7 -0
- data/spec/httpheader/main_type_spec.rb +23 -0
- data/spec/httpheader/proxy_basic_auth_spec.rb +13 -0
- data/spec/httpheader/range_length_spec.rb +31 -0
- data/spec/httpheader/range_spec.rb +47 -0
- data/spec/httpheader/set_content_type_spec.rb +7 -0
- data/spec/httpheader/set_form_data_spec.rb +7 -0
- data/spec/httpheader/set_range_spec.rb +7 -0
- data/spec/httpheader/shared/each_capitalized.rb +42 -0
- data/spec/httpheader/shared/each_header.rb +42 -0
- data/spec/httpheader/shared/each_name.rb +39 -0
- data/spec/httpheader/shared/set_content_type.rb +20 -0
- data/spec/httpheader/shared/set_form_data.rb +27 -0
- data/spec/httpheader/shared/set_range.rb +89 -0
- data/spec/httpheader/shared/size.rb +18 -0
- data/spec/httpheader/size_spec.rb +7 -0
- data/spec/httpheader/sub_type_spec.rb +31 -0
- data/spec/httpheader/to_hash_spec.rb +24 -0
- data/spec/httpheader/type_params_spec.rb +23 -0
- data/spec/httprequest/initialize_spec.rb +44 -0
- data/spec/httpresponse/body_permitted_spec.rb +12 -0
- data/spec/httpresponse/body_spec.rb +6 -0
- data/spec/httpresponse/code_spec.rb +23 -0
- data/spec/httpresponse/code_type_spec.rb +23 -0
- data/spec/httpresponse/entity_spec.rb +6 -0
- data/spec/httpresponse/error_spec.rb +23 -0
- data/spec/httpresponse/error_type_spec.rb +23 -0
- data/spec/httpresponse/exception_type_spec.rb +12 -0
- data/spec/httpresponse/header_spec.rb +8 -0
- data/spec/httpresponse/http_version_spec.rb +11 -0
- data/spec/httpresponse/initialize_spec.rb +10 -0
- data/spec/httpresponse/inspect_spec.rb +14 -0
- data/spec/httpresponse/message_spec.rb +8 -0
- data/spec/httpresponse/msg_spec.rb +8 -0
- data/spec/httpresponse/read_body_spec.rb +85 -0
- data/spec/httpresponse/read_header_spec.rb +8 -0
- data/spec/httpresponse/read_new_spec.rb +21 -0
- data/spec/httpresponse/reading_body_spec.rb +57 -0
- data/spec/httpresponse/response_spec.rb +8 -0
- data/spec/httpresponse/shared/body.rb +18 -0
- data/spec/httpresponse/to_ary_spec.rb +25 -0
- data/spec/httpresponse/value_spec.rb +23 -0
- metadata +366 -88
- data/lib/rubysl-net-http.rb +0 -9
@@ -0,0 +1,96 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
|
3
|
+
describe "Net::HTTP.new" do
|
4
|
+
describe "when passed address" do
|
5
|
+
before(:each) do
|
6
|
+
@http = Net::HTTP.new("localhost")
|
7
|
+
end
|
8
|
+
|
9
|
+
it "returns a Net::HTTP instance" do
|
10
|
+
@http.proxy?.should be_false
|
11
|
+
@http.instance_of?(Net::HTTP).should be_true
|
12
|
+
end
|
13
|
+
|
14
|
+
it "sets the new Net::HTTP instance's address to the passed address" do
|
15
|
+
@http.address.should == "localhost"
|
16
|
+
end
|
17
|
+
|
18
|
+
it "sets the new Net::HTTP instance's port to the default HTTP port" do
|
19
|
+
@http.port.should eql(Net::HTTP.default_port)
|
20
|
+
end
|
21
|
+
|
22
|
+
it "does not start the new Net::HTTP instance" do
|
23
|
+
@http.started?.should be_false
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "when passed address, port" do
|
28
|
+
before(:each) do
|
29
|
+
@http = Net::HTTP.new("localhost", 3333)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "returns a Net::HTTP instance" do
|
33
|
+
@http.proxy?.should be_false
|
34
|
+
@http.instance_of?(Net::HTTP).should be_true
|
35
|
+
end
|
36
|
+
|
37
|
+
it "sets the new Net::HTTP instance's address to the passed address" do
|
38
|
+
@http.address.should == "localhost"
|
39
|
+
end
|
40
|
+
|
41
|
+
it "sets the new Net::HTTP instance's port to the passed port" do
|
42
|
+
@http.port.should eql(3333)
|
43
|
+
end
|
44
|
+
|
45
|
+
it "does not start the new Net::HTTP instance" do
|
46
|
+
@http.started?.should be_false
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe "when passed address, port, *proxy_options" do
|
51
|
+
ruby_version_is ""..."2.0" do
|
52
|
+
it "returns a instance of singletone class" do
|
53
|
+
http = Net::HTTP.new("localhost", 3333, "localhost")
|
54
|
+
http.proxy?.should be_true
|
55
|
+
http.instance_of?(Net::HTTP).should be_false
|
56
|
+
http.should be_kind_of(Net::HTTP)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
ruby_version_is "2.0" do
|
61
|
+
it "returns a Net::HTTP instance" do
|
62
|
+
http = Net::HTTP.new("localhost", 3333, "localhost")
|
63
|
+
http.proxy?.should be_true
|
64
|
+
http.instance_of?(Net::HTTP).should be_true
|
65
|
+
http.should be_kind_of(Net::HTTP)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
it "correctly sets the passed Proxy options" do
|
70
|
+
http = Net::HTTP.new("localhost", 3333, "localhost")
|
71
|
+
http.proxy_address.should == "localhost"
|
72
|
+
http.proxy_port.should eql(80)
|
73
|
+
http.proxy_user.should be_nil
|
74
|
+
http.proxy_pass.should be_nil
|
75
|
+
|
76
|
+
http = Net::HTTP.new("localhost", 3333, "localhost", 1234)
|
77
|
+
http.proxy_address.should == "localhost"
|
78
|
+
http.proxy_port.should eql(1234)
|
79
|
+
http.proxy_user.should be_nil
|
80
|
+
http.proxy_pass.should be_nil
|
81
|
+
|
82
|
+
http = Net::HTTP.new("localhost", 3333, "localhost", 1234, "rubyspec")
|
83
|
+
http.proxy_address.should == "localhost"
|
84
|
+
http.proxy_port.should eql(1234)
|
85
|
+
http.proxy_user.should == "rubyspec"
|
86
|
+
http.proxy_pass.should be_nil
|
87
|
+
|
88
|
+
http = Net::HTTP.new("localhost", 3333, "localhost", 1234, "rubyspec", "rocks")
|
89
|
+
http.proxy_address.should == "localhost"
|
90
|
+
http.proxy_port.should eql(1234)
|
91
|
+
http.proxy_user.should == "rubyspec"
|
92
|
+
http.proxy_pass.should == "rocks"
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
|
3
|
+
describe "Net::HTTP.newobj" do
|
4
|
+
before(:each) do
|
5
|
+
@net = Net::HTTP.newobj("localhost")
|
6
|
+
end
|
7
|
+
|
8
|
+
describe "when passed address" do
|
9
|
+
it "returns a new Net::HTTP instance" do
|
10
|
+
@net.should be_kind_of(Net::HTTP)
|
11
|
+
end
|
12
|
+
|
13
|
+
it "sets the new Net::HTTP instance's address to the passed address" do
|
14
|
+
@net.address.should == "localhost"
|
15
|
+
end
|
16
|
+
|
17
|
+
it "sets the new Net::HTTP instance's port to the default HTTP port" do
|
18
|
+
@net.port.should eql(Net::HTTP.default_port)
|
19
|
+
end
|
20
|
+
|
21
|
+
it "does not start the new Net::HTTP instance" do
|
22
|
+
@net.started?.should be_false
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
describe "when passed address, port" do
|
27
|
+
before(:each) do
|
28
|
+
@net = Net::HTTP.newobj("localhost", 3333)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "returns a new Net::HTTP instance" do
|
32
|
+
@net.should be_kind_of(Net::HTTP)
|
33
|
+
end
|
34
|
+
|
35
|
+
it "sets the new Net::HTTP instance's address to the passed address" do
|
36
|
+
@net.address.should == "localhost"
|
37
|
+
end
|
38
|
+
|
39
|
+
it "sets the new Net::HTTP instance's port to the passed port" do
|
40
|
+
@net.port.should eql(3333)
|
41
|
+
end
|
42
|
+
|
43
|
+
it "does not start the new Net::HTTP instance" do
|
44
|
+
@net.started?.should be_false
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
|
3
|
+
describe "Net::HTTP#open_timeout" do
|
4
|
+
it "returns the seconds to wait till the connection is open" do
|
5
|
+
net = Net::HTTP.new("localhost")
|
6
|
+
net.open_timeout.should be_nil
|
7
|
+
net.open_timeout = 10
|
8
|
+
net.open_timeout.should eql(10)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
describe "Net::HTTP#open_timeout=" do
|
13
|
+
it "sets the seconds to wait till the connection is open" do
|
14
|
+
net = Net::HTTP.new("localhost")
|
15
|
+
net.open_timeout = 10
|
16
|
+
net.open_timeout.should eql(10)
|
17
|
+
end
|
18
|
+
|
19
|
+
it "returns the newly set value" do
|
20
|
+
net = Net::HTTP.new("localhost")
|
21
|
+
(net.open_timeout = 10).should eql(10)
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require File.expand_path('../fixtures/http_server', __FILE__)
|
3
|
+
|
4
|
+
describe "Net::HTTP#options" do
|
5
|
+
before(:all) do
|
6
|
+
NetHTTPSpecs.start_server
|
7
|
+
end
|
8
|
+
|
9
|
+
after(:all) do
|
10
|
+
NetHTTPSpecs.stop_server
|
11
|
+
end
|
12
|
+
|
13
|
+
before(:each) do
|
14
|
+
@http = Net::HTTP.start("localhost", 3333)
|
15
|
+
end
|
16
|
+
|
17
|
+
after(:each) do
|
18
|
+
@http.finish if @http.started?
|
19
|
+
end
|
20
|
+
|
21
|
+
it "sends an options request to the passed path and returns the response" do
|
22
|
+
response = @http.options("/request")
|
23
|
+
# OPTIONS responses have no bodies
|
24
|
+
response.body.should be_nil
|
25
|
+
end
|
26
|
+
|
27
|
+
it "returns a Net::HTTPResponse" do
|
28
|
+
@http.options("/request").should be_kind_of(Net::HTTPResponse)
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require File.expand_path('../fixtures/http_server', __FILE__)
|
3
|
+
|
4
|
+
describe "Net::HTTP.post_form when passed URI" do
|
5
|
+
before(:all) do
|
6
|
+
NetHTTPSpecs.start_server
|
7
|
+
end
|
8
|
+
|
9
|
+
after(:all) do
|
10
|
+
NetHTTPSpecs.stop_server
|
11
|
+
end
|
12
|
+
|
13
|
+
it "POSTs the passed form data to the given uri" do
|
14
|
+
uri = URI.parse('http://localhost:3333/request/body')
|
15
|
+
data = { :test => :data }
|
16
|
+
|
17
|
+
res = Net::HTTP.post_form(uri, data)
|
18
|
+
res.body.should == "test=data"
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require File.expand_path('../fixtures/http_server', __FILE__)
|
3
|
+
|
4
|
+
describe "Net::HTTP#post" do
|
5
|
+
before(:all) do
|
6
|
+
NetHTTPSpecs.start_server
|
7
|
+
end
|
8
|
+
|
9
|
+
after(:all) do
|
10
|
+
NetHTTPSpecs.stop_server
|
11
|
+
end
|
12
|
+
|
13
|
+
before(:each) do
|
14
|
+
@http = Net::HTTP.start("localhost", 3333)
|
15
|
+
end
|
16
|
+
|
17
|
+
after(:each) do
|
18
|
+
@http.finish if @http.started?
|
19
|
+
end
|
20
|
+
|
21
|
+
it "sends an post request to the passed path and returns the response" do
|
22
|
+
response = @http.post("/request", "test=test")
|
23
|
+
response.body.should == "Request type: POST"
|
24
|
+
end
|
25
|
+
|
26
|
+
it "returns a Net::HTTPResponse" do
|
27
|
+
@http.post("/request", "test=test").should be_kind_of(Net::HTTPResponse)
|
28
|
+
end
|
29
|
+
|
30
|
+
describe "when passed a block" do
|
31
|
+
it "yields fragments of the response body to the passed block" do
|
32
|
+
str = ""
|
33
|
+
@http.post("/request", "test=test") do |res|
|
34
|
+
str << res
|
35
|
+
end
|
36
|
+
str.should == "Request type: POST"
|
37
|
+
end
|
38
|
+
|
39
|
+
it "returns a Net::HTTPResponse" do
|
40
|
+
@http.post("/request", "test=test") {}.should be_kind_of(Net::HTTPResponse)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require File.expand_path('../fixtures/http_server', __FILE__)
|
3
|
+
|
4
|
+
describe "Net::HTTP#propfind" do
|
5
|
+
before(:all) do
|
6
|
+
NetHTTPSpecs.start_server
|
7
|
+
end
|
8
|
+
|
9
|
+
after(:all) do
|
10
|
+
NetHTTPSpecs.stop_server
|
11
|
+
end
|
12
|
+
|
13
|
+
before(:each) do
|
14
|
+
@http = Net::HTTP.start("localhost", 3333)
|
15
|
+
end
|
16
|
+
|
17
|
+
after(:each) do
|
18
|
+
@http.finish if @http.started?
|
19
|
+
end
|
20
|
+
|
21
|
+
it "sends an propfind request to the passed path and returns the response" do
|
22
|
+
response = @http.propfind("/request", "test=test")
|
23
|
+
response.body.should == "Request type: PROPFIND"
|
24
|
+
end
|
25
|
+
|
26
|
+
it "returns a Net::HTTPResponse" do
|
27
|
+
@http.propfind("/request", "test=test").should be_kind_of(Net::HTTPResponse)
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require File.expand_path('../fixtures/http_server', __FILE__)
|
3
|
+
|
4
|
+
describe "Net::HTTP#proppatch" do
|
5
|
+
before(:all) do
|
6
|
+
NetHTTPSpecs.start_server
|
7
|
+
end
|
8
|
+
|
9
|
+
after(:all) do
|
10
|
+
NetHTTPSpecs.stop_server
|
11
|
+
end
|
12
|
+
|
13
|
+
before(:each) do
|
14
|
+
@http = Net::HTTP.start("localhost", 3333)
|
15
|
+
end
|
16
|
+
|
17
|
+
after(:each) do
|
18
|
+
@http.finish if @http.started?
|
19
|
+
end
|
20
|
+
|
21
|
+
it "sends an proppatch request to the passed path and returns the response" do
|
22
|
+
response = @http.proppatch("/request", "test=test")
|
23
|
+
response.body.should == "Request type: PROPPATCH"
|
24
|
+
end
|
25
|
+
|
26
|
+
it "returns a Net::HTTPResponse" do
|
27
|
+
@http.proppatch("/request", "test=test").should be_kind_of(Net::HTTPResponse)
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
|
3
|
+
describe "Net::HTTP.proxy_address" do
|
4
|
+
describe "when self is no proxy class" do
|
5
|
+
it "returns nil" do
|
6
|
+
Net::HTTP.proxy_address.should be_nil
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
describe "when self is a proxy class" do
|
11
|
+
it "returns the address for self's proxy connection" do
|
12
|
+
Net::HTTP.Proxy("localhost", 1234, "rspec", "rocks").proxy_address.should == "localhost"
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
describe "Net::HTTP#proxy_address" do
|
18
|
+
describe "when self is no proxy class instance" do
|
19
|
+
it "returns nil" do
|
20
|
+
Net::HTTP.new("localhost", 3333).proxy_address.should be_nil
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe "when self is a proxy class instance" do
|
25
|
+
it "returns the password for self's proxy connection" do
|
26
|
+
http_with_proxy = Net::HTTP.Proxy("localhost", 1234, "rspec", "rocks")
|
27
|
+
http_with_proxy.new("localhost", 3333).proxy_address.should == "localhost"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
|
3
|
+
describe "Net::HTTP.proxy_pass" do
|
4
|
+
describe "when self is no proxy class" do
|
5
|
+
it "returns nil" do
|
6
|
+
Net::HTTP.proxy_pass.should be_nil
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
describe "when self is a proxy class" do
|
11
|
+
it "returns nil if no password was set for self's proxy connection" do
|
12
|
+
Net::HTTP.Proxy("localhost").proxy_pass.should be_nil
|
13
|
+
end
|
14
|
+
|
15
|
+
it "returns the password for self's proxy connection" do
|
16
|
+
Net::HTTP.Proxy("localhost", 1234, "rspec", "rocks").proxy_pass.should == "rocks"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "Net::HTTP#proxy_pass" do
|
22
|
+
describe "when self is no proxy class instance" do
|
23
|
+
it "returns nil" do
|
24
|
+
Net::HTTP.new("localhost", 3333).proxy_pass.should be_nil
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "when self is a proxy class instance" do
|
29
|
+
it "returns nil if no password was set for self's proxy connection" do
|
30
|
+
Net::HTTP.Proxy("localhost").new("localhost", 3333).proxy_pass.should be_nil
|
31
|
+
end
|
32
|
+
|
33
|
+
it "returns the password for self's proxy connection" do
|
34
|
+
http_with_proxy = Net::HTTP.Proxy("localhost", 1234, "rspec", "rocks")
|
35
|
+
http_with_proxy.new("localhost", 3333).proxy_pass.should == "rocks"
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
|
3
|
+
describe "Net::HTTP.proxy_port" do
|
4
|
+
describe "when self is no proxy class" do
|
5
|
+
it "returns nil" do
|
6
|
+
Net::HTTP.proxy_port.should be_nil
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
describe "when self is a proxy class" do
|
11
|
+
it "returns 80 if no port was set for self's proxy connection" do
|
12
|
+
Net::HTTP.Proxy("localhost").proxy_port.should eql(80)
|
13
|
+
end
|
14
|
+
|
15
|
+
it "returns the port for self's proxy connection" do
|
16
|
+
Net::HTTP.Proxy("localhost", 1234, "rspec", "rocks").proxy_port.should eql(1234)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "Net::HTTP#proxy_port" do
|
22
|
+
describe "when self is no proxy class instance" do
|
23
|
+
it "returns nil" do
|
24
|
+
Net::HTTP.new("localhost", 3333).proxy_port.should be_nil
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "when self is a proxy class instance" do
|
29
|
+
it "returns 80 if no port was set for self's proxy connection" do
|
30
|
+
Net::HTTP.Proxy("localhost").new("localhost", 3333).proxy_port.should eql(80)
|
31
|
+
end
|
32
|
+
|
33
|
+
it "returns the port for self's proxy connection" do
|
34
|
+
http_with_proxy = Net::HTTP.Proxy("localhost", 1234, "rspec", "rocks")
|
35
|
+
http_with_proxy.new("localhost", 3333).proxy_port.should eql(1234)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|