require File.join(File.dirname(__FILE__), 'spec_helper') class Foo include HTTParty base_uri 'api.foo.com/v1' end class FooWithHttps include HTTParty base_uri 'api.foo.com/v1:443' end describe HTTParty do 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' 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'} 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 = < 1234 Foo Bar! 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 end