Class: Faraday::Adapter::Test

Inherits:
Faraday::Adapter show all
Defined in:
lib/faraday/adapter/test.rb

Overview

test = Faraday::Connection.new do

use Faraday::Adapter::Test do |stub|
  stub.get '/nigiri/sake.json' do
    [200, {}, 'hi world']
  end
end

end

resp = test.get ‘/nigiri/sake.json’ resp.body # => ‘hi world’

Defined Under Namespace

Classes: Stub, Stubs

Constant Summary

Constants inherited from Faraday::Adapter

CONTENT_LENGTH

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Faraday::Adapter

#save_response

Methods included from Faraday::AutoloadHelper

#all_loaded_constants, #autoload_all, #load_autoloaded_constants, #lookup_module, #register_lookup_modules

Methods inherited from Middleware

dependency, setup_parallel_manager

Constructor Details

#initialize(app, stubs = nil, &block) ⇒ Test

Returns a new instance of Test.



120
121
122
123
124
# File 'lib/faraday/adapter/test.rb', line 120

def initialize(app, stubs=nil, &block)
  super(app)
  @stubs = stubs || Stubs.new
  configure(&block) if block
end

Instance Attribute Details

#stubsObject

Returns the value of attribute stubs.



15
16
17
# File 'lib/faraday/adapter/test.rb', line 15

def stubs
  @stubs
end

Class Method Details

.loaded?Boolean

Returns:

  • (Boolean)


17
# File 'lib/faraday/adapter/test.rb', line 17

def self.loaded?() false end

Instance Method Details

#call(env) ⇒ Object



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/faraday/adapter/test.rb', line 130

def call(env)
  super
  normalized_path = Faraday::Utils.normalize_path(env[:url])

  if stub = stubs.match(env[:method], normalized_path, env[:body])
    env[:params] = (query = env[:url].query) ?
      Rack::Utils.parse_nested_query(query)  :
      {}
    status, headers, body = stub.block.call(env)
    save_response(env, status, body, headers)
  else
    raise Stubs::NotFound, "no stubbed request for #{env[:method]} #{normalized_path} #{env[:body]}"
  end
  @app.call(env)
end

#configure {|stubs| ... } ⇒ Object

Yields:



126
127
128
# File 'lib/faraday/adapter/test.rb', line 126

def configure
  yield stubs
end