1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/spec/httparty_spec.rb

110 lines
2.8 KiB
Ruby
Raw Normal View History

2008-07-27 11:52:18 -04:00
require File.join(File.dirname(__FILE__), 'spec_helper')
class Foo
include HTTParty
2008-07-27 11:52:18 -04:00
base_uri 'api.foo.com/v1'
end
class FooWithHttps
include HTTParty
2008-07-27 11:52:18 -04:00
base_uri 'api.foo.com/v1:443'
end
describe HTTParty do
2008-07-27 11:52:18 -04:00
it 'should be able to get the base_uri' do
Foo.base_uri.should == 'http://api.foo.com/v1'
end
it 'should be able to set the base_uri' do
Foo.base_uri('api.foobar.com')
Foo.base_uri.should == 'http://api.foobar.com'
end
it 'should set scheme to https if port 443' do
FooWithHttps.base_uri.should == 'https://api.foo.com/v1:443'
2008-07-27 11:52:18 -04:00
end
describe 'http' do
it "should use ssl for port 443" do
FooWithHttps.http.use_ssl?.should == true
end
it 'should not use ssl for port 80' do
Foo.base_uri('foobar.com')
Foo.http.use_ssl?.should == false
end
end
it "should initialize headers to empty hash" do
Foo.headers.should == {}
end
it "should allow updating the headers" do
init_headers = {:foo => 'bar', :baz => 'spax'}
Foo.headers init_headers
Foo.headers.should == init_headers
end
it 'should be able to set basic authentication' do
Foo.basic_auth 'foobar', 'secret'
Foo.instance_variable_get("@auth").should == {:username => 'foobar', :password => 'secret'}
2008-07-27 11:52:18 -04:00
end
describe "format" do
it "should allow xml" do
Foo.format :xml
Foo.instance_variable_get("@format").should == 'xml'
end
it "should allow json" do
Foo.format :json
Foo.instance_variable_get("@format").should == 'json'
end
it 'should not allow funky format' do
lambda do
Foo.format :foobar
end.should raise_error(HTTParty::UnsupportedFormat)
end
end
describe "deriving format from path" do
it "should work if there is extension and extension is an allowed format" do
%w[xml json].each do |ext|
Foo.send(:format_from_path, "/foo/bar.#{ext}").should == ext
end
end
it "should NOT work if there is extension but extention is not allow format" do
Foo.send(:format_from_path, '/foo/bar.php').should == nil
end
it 'should NOT work if there is no extension' do
['', '.'].each do |ext|
Foo.send(:format_from_path, "/foo/bar#{ext}").should == nil
end
end
end
describe 'parsing responses' do
it 'should parse xml automatically' do
xml = <<EOF
<books>
<book>
<id>1234</id>
<name>Foo Bar!</name>
</book>
</books>
EOF
Foo.format :xml
Foo.send(:parse_response, xml).should == {'books' => {'book' => {'id' => '1234', 'name' => 'Foo Bar!'}}}
end
it 'should parse json automatically' do
json = %q[{"books": {"book": {"name": "Foo Bar!", "id": "1234"}}}]
Foo.format :json
Foo.send(:parse_response, json).should == {'books' => {'book' => {'id' => '1234', 'name' => 'Foo Bar!'}}}
end
end
2008-07-27 11:52:18 -04:00
end