module Excon
def defaults
-
(Hash)
- defaults for Excon connections
def defaults @defaults ||= { :chunk_size => CHUNK_SIZE || DEFAULT_CHUNK_SIZE, :connect_timeout => 60, :debug_request => false, :debug_response => false, :headers => { 'User-Agent' => USER_AGENT }, :idempotent => false, :instrumentor_name => 'excon', :middlewares => [ Excon::Middleware::ResponseParser, Excon::Middleware::Expects, Excon::Middleware::Idempotent, Excon::Middleware::Instrumentor, Excon::Middleware::Mock ], :mock => false, :nonblock => DEFAULT_NONBLOCK, :omit_default_port => false, :read_timeout => 60, :retry_limit => DEFAULT_RETRY_LIMIT, :ssl_verify_peer => true, :tcp_nodelay => false, :uri_parser => URI, :write_timeout => 60 } end
def defaults=(new_defaults)
-
(Hash)
- defaults for Excon connections
def defaults=(new_defaults) @defaults = new_defaults end
def display_warning(warning)
def display_warning(warning) # Ruby convention mandates complete silence when VERBOSE == nil $stderr.puts(warning) if !ENV['VERBOSE'].nil? end
def mock
def mock display_warning("Excon#mock is deprecated, pass Excon.defaults[:mock] instead (#{caller.first}") self.defaults[:mock] end
def mock=(new_mock)
false is the default and works as expected
Change the status of mocking
def mock=(new_mock) display_warning("Excon#mock is deprecated, pass Excon.defaults[:mock]= instead (#{caller.first})") self.defaults[:mock] = new_mock end
def new(url, params = {})
-
(Connection)
- A new Excon::Connection instance
Parameters:
-
params
(Hash
) -- One or more option params to set on the Connection instance -
url
(String
) -- The destination URL
Other tags:
- See: Connection#initialize -
def new(url, params = {}) uri_parser = params[:uri_parser] || Excon.defaults[:uri_parser] uri = uri_parser.parse(url) params = { :host => uri.host, :path => uri.path, :port => uri.port.to_s, :query => uri.query, :scheme => uri.scheme, :user => (URI.decode(uri.user) if uri.user), :password => (URI.decode(uri.password) if uri.password), }.merge!(params) Excon::Connection.new(params) end
def ssl_ca_path
-
(String)
- The filesystem path to the SSL Certificate Authority
def ssl_ca_path display_warning("Excon#ssl_ca_path is deprecated, use Excon.defaults[:ssl_ca_path] instead (#{caller.first})") self.defaults[:ssl_ca_path] end
def ssl_ca_path=(new_ssl_ca_path)
-
(String)
- The filesystem path to the SSL Certificate Authority
def ssl_ca_path=(new_ssl_ca_path) display_warning("Excon#ssl_ca_path= is deprecated, use Excon.defaults[:ssl_ca_path]= instead (#{caller.first})") self.defaults[:ssl_ca_path] = new_ssl_ca_path end
def ssl_verify_peer
-
(true, false)
- Whether or not to verify the peer's SSL certificate / chain
def ssl_verify_peer display_warning("Excon#ssl_verify_peer= is deprecated, use Excon.defaults[:ssl_verify_peer]= instead (#{caller.first})") self.defaults[:ssl_verify_peer] end
def ssl_verify_peer=(new_ssl_verify_peer)
- See: Excon#ssl_verify_peer - (attr_reader)
def ssl_verify_peer=(new_ssl_verify_peer) display_warning("Excon#ssl_verify_peer is deprecated, use Excon.defaults[:ssl_verify_peer] instead (#{caller.first})") self.defaults[:ssl_verify_peer] = new_ssl_verify_peer end
def stub(request_params = {}, response_params = nil)
-
response
(Hash
) -- params to return from matched request or block to call with params -
request
(Hash
) -- params to match against, omitted params match all
def stub(request_params = {}, response_params = nil) if method = request_params.delete(:method) request_params[:method] = method.to_s.downcase.to_sym end if url = request_params.delete(:url) uri = URI.parse(url) request_params.update( :host => uri.host, :path => uri.path, :port => uri.port.to_s, :query => uri.query, :scheme => uri.scheme ) if uri.user || uri.password request_params[:headers] ||= {} user, pass = URI.decode_www_form_component(uri.user.to_s), URI.decode_www_form_component(uri.password.to_s) request_params[:headers]['Authorization'] ||= 'Basic ' << ['' << user << ':' << pass].pack('m').delete(Excon::CR_NL) end end if block_given? if response_params raise(ArgumentError.new("stub requires either response_params OR a block")) else stub = [request_params, Proc.new] end elsif response_params stub = [request_params, response_params] else raise(ArgumentError.new("stub requires either response_params OR a block")) end stubs.unshift(stub) stub end
def stub_for(request_params={})
def stub_for(request_params={}) if method = request_params.delete(:method) request_params[:method] = method.to_s.downcase.to_sym end Excon.stubs.each do |stub, response| captures = { :headers => {} } headers_match = !stub.has_key?(:headers) || stub[:headers].keys.all? do |key| case value = stub[:headers][key] when Regexp if match = value.match(request_params[:headers][key]) captures[:headers][key] = match.captures end match else value == request_params[:headers][key] end end non_headers_match = (stub.keys - [:headers]).all? do |key| case value = stub[key] when Regexp if match = value.match(request_params[key]) captures[key] = match.captures end match else value == request_params[key] end end if headers_match && non_headers_match request_params[:captures] = captures return response end end nil end
def stubs
def stubs @stubs ||= [] end