rest-client 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rest-client might be problematic. Click here for more details.

@@ -1,5 +1,8 @@
1
1
  require File.dirname(__FILE__) + '/base'
2
2
 
3
+ require 'webmock/rspec'
4
+ include WebMock
5
+
3
6
  describe RestClient::Resource do
4
7
  before do
5
8
  @resource = RestClient::Resource.new('http://some/resource', :user => 'jane', :password => 'mypass', :headers => { 'X-Something' => '1'})
@@ -72,4 +75,25 @@ describe RestClient::Resource do
72
75
  it "prints its url with to_s" do
73
76
  RestClient::Resource.new('x').to_s.should == 'x'
74
77
  end
78
+
79
+ describe 'block' do
80
+ it 'can use block when creating the resource' do
81
+ stub_request(:get, 'www.example.com').to_return(:body => '', :status => 404)
82
+ resource = RestClient::Resource.new('www.example.com'){|response| 'foo'}
83
+ resource.get.should == 'foo'
84
+ end
85
+
86
+ it 'can use block when executing the resource' do
87
+ stub_request(:get, 'www.example.com').to_return(:body => '', :status => 404)
88
+ resource = RestClient::Resource.new('www.example.com')
89
+ resource.get{|response| 'foo'}.should == 'foo'
90
+ end
91
+
92
+ it 'execution block override resource block' do
93
+ stub_request(:get, 'www.example.com').to_return(:body => '', :status => 404)
94
+ resource = RestClient::Resource.new('www.example.com'){|response| 'foo'}
95
+ resource.get{|response| 'bar'}.should == 'bar'
96
+ end
97
+
98
+ end
75
99
  end
@@ -18,4 +18,55 @@ describe RestClient::Response do
18
18
  @response.raw_headers["Status"][0].should == "200 OK"
19
19
  @response.headers[:status].should == "200 OK"
20
20
  end
21
+
22
+ describe "cookie processing" do
23
+ it "should correctly deal with one Set-Cookie header with one cookie inside" do
24
+ net_http_res = mock('net http response', :to_hash => {"etag" => ["\"e1ac1a2df945942ef4cac8116366baad\""], "set-cookie" => ["main_page=main_page_no_rewrite; path=/; expires=Tue, 20-Jan-2015 15:03:14 GMT"]})
25
+ response = RestClient::Response.new('abc', net_http_res)
26
+ response.headers[:set_cookie].should == ["main_page=main_page_no_rewrite; path=/; expires=Tue, 20-Jan-2015 15:03:14 GMT"]
27
+ response.cookies.should == { "main_page" => "main_page_no_rewrite" }
28
+ end
29
+
30
+ it "should correctly deal with multiple cookies [multiple Set-Cookie headers]" do
31
+ net_http_res = mock('net http response', :to_hash => {"etag" => ["\"e1ac1a2df945942ef4cac8116366baad\""], "set-cookie" => ["main_page=main_page_no_rewrite; path=/; expires=Tue, 20-Jan-2015 15:03:14 GMT", "remember_me=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "user=somebody; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"]})
32
+ response = RestClient::Response.new('abc', net_http_res)
33
+ response.headers[:set_cookie].should == ["main_page=main_page_no_rewrite; path=/; expires=Tue, 20-Jan-2015 15:03:14 GMT", "remember_me=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "user=somebody; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"]
34
+ response.cookies.should == {
35
+ "main_page" => "main_page_no_rewrite",
36
+ "remember_me" => "",
37
+ "user" => "somebody"
38
+ }
39
+ end
40
+
41
+ it "should correctly deal with multiple cookies [one Set-Cookie header with multiple cookies]" do
42
+ net_http_res = mock('net http response', :to_hash => {"etag" => ["\"e1ac1a2df945942ef4cac8116366baad\""], "set-cookie" => ["main_page=main_page_no_rewrite; path=/; expires=Tue, 20-Jan-2015 15:03:14 GMT, remember_me=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, user=somebody; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"]})
43
+ response = RestClient::Response.new('abc', net_http_res)
44
+ response.cookies.should == {
45
+ "main_page" => "main_page_no_rewrite",
46
+ "remember_me" => "",
47
+ "user" => "somebody"
48
+ }
49
+ end
50
+ end
51
+
52
+ describe "exceptions processing" do
53
+ it "should return itself for normal codes" do
54
+ (200..206).each do |code|
55
+ net_http_res = mock('net http response', :code => '200')
56
+ response = RestClient::Response.new('abc', net_http_res)
57
+ response.return!
58
+ end
59
+ end
60
+
61
+ it "should throw an exception for other codes" do
62
+ RestClient::Exceptions::EXCEPTIONS_MAP.each_key do |code|
63
+ net_http_res = mock('net http response', :code => code.to_i)
64
+ response = RestClient::Response.new('abc', net_http_res)
65
+ lambda { response.return!}.should raise_error
66
+ end
67
+ end
68
+
69
+ end
70
+
71
+
21
72
  end
@@ -33,21 +33,31 @@ describe RestClient do
33
33
  RestClient.log = nil
34
34
  end
35
35
 
36
- it "gets the log source from the RESTCLIENT_LOG environment variable" do
37
- ENV.stub!(:[]).with('RESTCLIENT_LOG').and_return('from env')
38
- RestClient.log = 'from class method'
39
- RestClient.log.should == 'from env'
36
+ it "uses << if the log is not a string" do
37
+ log = RestClient.log = []
38
+ log.should_receive(:<<).with('xyz')
39
+ RestClient.log << 'xyz'
40
40
  end
41
41
 
42
- it "sets a destination for log output, used if no environment variable is set" do
43
- ENV.stub!(:[]).with('RESTCLIENT_LOG').and_return(nil)
44
- RestClient.log = 'from class method'
45
- RestClient.log.should == 'from class method'
42
+ it "displays the log to stdout" do
43
+ RestClient.log = 'stdout'
44
+ STDOUT.should_receive(:puts).with('xyz')
45
+ RestClient.log << 'xyz'
46
46
  end
47
47
 
48
- it "returns nil (no logging) if neither are set (default)" do
49
- ENV.stub!(:[]).with('RESTCLIENT_LOG').and_return(nil)
50
- RestClient.log.should == nil
48
+ it "displays the log to stderr" do
49
+ RestClient.log = 'stderr'
50
+ STDERR.should_receive(:puts).with('xyz')
51
+ RestClient.log << 'xyz'
52
+ end
53
+
54
+ it "append the log to the requested filename" do
55
+ RestClient.log = '/tmp/restclient.log'
56
+ f = mock('file handle')
57
+ File.should_receive(:open).with('/tmp/restclient.log', 'a').and_yield(f)
58
+ f.should_receive(:puts).with('xyz')
59
+ RestClient.log << 'xyz'
51
60
  end
52
61
  end
62
+
53
63
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rest-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Wiggins
8
- - Archiloque
8
+ - Julien Kirch
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2010-01-03 00:00:00 +01:00
13
+ date: 2010-01-25 00:00:00 +01:00
14
14
  default_executable: restclient
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -23,7 +23,7 @@ dependencies:
23
23
  - !ruby/object:Gem::Version
24
24
  version: "1.16"
25
25
  version:
26
- description: "A simple REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete."
26
+ description: "A simple Simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete."
27
27
  email: rest.client@librelist.com
28
28
  executables:
29
29
  - restclient
@@ -31,6 +31,7 @@ extensions: []
31
31
 
32
32
  extra_rdoc_files:
33
33
  - README.rdoc
34
+ - history.md
34
35
  files:
35
36
  - README.rdoc
36
37
  - Rakefile
@@ -48,6 +49,7 @@ files:
48
49
  - lib/restclient/response.rb
49
50
  - spec/base.rb
50
51
  - spec/exceptions_spec.rb
52
+ - spec/integration_spec.rb
51
53
  - spec/master_shake.jpg
52
54
  - spec/mixin/response_spec.rb
53
55
  - spec/payload_spec.rb
@@ -56,6 +58,7 @@ files:
56
58
  - spec/resource_spec.rb
57
59
  - spec/response_spec.rb
58
60
  - spec/restclient_spec.rb
61
+ - history.md
59
62
  has_rdoc: true
60
63
  homepage: http://github.com/archiloque/rest-client
61
64
  licenses: []
@@ -87,6 +90,7 @@ summary: Simple REST client for Ruby, inspired by microframework syntax for spec
87
90
  test_files:
88
91
  - spec/base.rb
89
92
  - spec/exceptions_spec.rb
93
+ - spec/integration_spec.rb
90
94
  - spec/mixin/response_spec.rb
91
95
  - spec/payload_spec.rb
92
96
  - spec/raw_response_spec.rb