Sha256: d3e7f2493df9df8f4fe43160ed8d59b674a3fa1695ee83e69d690e00ef087c89

Contents?: true

Size: 1.49 KB

Versions: 9

Compression:

Stored size: 1.49 KB

Contents

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 the base uri from a much more complex url' do
      Locomotive::Httparty::Webservice.expects(:get).with('/feed/weather.ashx?key=secretapikey&format=json', { base_uri: 'http://free.worldweatheronline.com' }).returns(@response)
      Locomotive::Httparty::Webservice.consume('http://free.worldweatheronline.com/feed/weather.ashx?key=secretapikey&format=json')
    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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
locomotive_cms-2.2.3 spec/lib/locomotive/httparty/webservice_spec.rb
locomotive_cms-2.2.2 spec/lib/locomotive/httparty/webservice_spec.rb
locomotive_cms-2.2.1 spec/lib/locomotive/httparty/webservice_spec.rb
locomotive_cms-2.2.0 spec/lib/locomotive/httparty/webservice_spec.rb
locomotive_cms-2.1.4 spec/lib/locomotive/httparty/webservice_spec.rb
locomotive_cms-2.1.3 spec/lib/locomotive/httparty/webservice_spec.rb
locomotive_cms-2.1.2 spec/lib/locomotive/httparty/webservice_spec.rb
locomotive_cms-2.1.1 spec/lib/locomotive/httparty/webservice_spec.rb
locomotive_cms-2.1.0 spec/lib/locomotive/httparty/webservice_spec.rb