29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Locomotive::Httparty::Webservice do
|
|
|
|
context '#consuming' do
|
|
|
|
before(:each) do
|
|
@response = mock('response', :code => 200, :underscore_keys => {})
|
|
end
|
|
|
|
it 'sets the base uri from a simple url' do
|
|
Locomotive::Httparty::Webservice.expects(:get).with('/', { :base_uri => 'http://blog.locomotiveapp.org' }).returns(@response)
|
|
Locomotive::Httparty::Webservice.consume('http://blog.locomotiveapp.org')
|
|
end
|
|
|
|
it 'sets both the base uri and the path from an url with parameters' do
|
|
Locomotive::Httparty::Webservice.expects(:get).with('/api/read/json?num=3', { :base_uri => 'http://blog.locomotiveapp.org' }).returns(@response)
|
|
Locomotive::Httparty::Webservice.consume('http://blog.locomotiveapp.org/api/read/json?num=3')
|
|
end
|
|
|
|
it 'sets auth credentials' do
|
|
Locomotive::Httparty::Webservice.expects(:get).with('/', { :base_uri => 'http://blog.locomotiveapp.org', :basic_auth => { :username => 'john', :password => 'foo' } }).returns(@response)
|
|
Locomotive::Httparty::Webservice.consume('http://blog.locomotiveapp.org', { :username => 'john', :password => 'foo' })
|
|
end
|
|
|
|
end
|
|
|
|
end
|