Sha256: 58d3b0336de096e44c255d66c3a8bab5d351ff5b2f786303a658d340c5a38479
Contents?: true
Size: 1.73 KB
Versions: 9
Compression:
Stored size: 1.73 KB
Contents
require File.join(File.dirname(__FILE__), %w[ .. spec_helper]) describe "Connection" do before do @options = {:server => 'server', :user => 'user', :pass => 'pass', :adapter => 'whatev'} end it "should lazy load connection adapter" do @options[:adapter] = 'mechanize' Roart::ConnectionAdapter.should_not_receive(:new) connection = Roart::Connection.new(@options) end it 'should raise an exception if it doesnt have all the options' do lambda{Roart::Connection.new(:user => 'bad')}.should raise_error end it 'should give us the rest path' do connection = Roart::Connection.new(@options) connection.rest_path.should == 'server/REST/1.0/' end it 'should give us back the whole thing' do @options[:adapter] = 'mechanize' mock_mech = mock('mech') Roart::ConnectionAdapters::MechanizeAdapter.should_receive(:new).with(@options).and_return(mock_mech) mock_mech.should_receive(:login).with(@options) mock_mech.should_receive(:get).with('uri').and_return('body') connection = Roart::Connection.new(@options) connection.get('uri').should == 'body' end describe 'get and post' do before do @agent = mock("agent").as_null_object Roart::ConnectionAdapter.should_receive(:new).and_return(@agent) end it 'should respond to get' do @agent.should_receive(:get).with('some_uri').and_return('body') connection = Roart::Connection.new(@options) connection.get("some_uri").should == 'body' end it 'should respond to post' do @agent.should_receive(:post).with('some_uri', 'a payload').and_return('body') connection = Roart::Connection.new(@options) connection.post("some_uri", "a payload").should == 'body' end end end
Version data entries
9 entries across 9 versions & 1 rubygems