Class: Faraday::Adapter::Test

Inherits:
Middleware 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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Middleware

setup_parallel_manager

Constructor Details

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

Returns a new instance of Test.



97
98
99
100
101
# File 'lib/faraday/adapter/test.rb', line 97

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



107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/faraday/adapter/test.rb', line 107

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

  if stub = stubs.match(env[:method], normalized_path, env[:body])
    status, headers, body = stub.block.call(env)
    env.update \
      :status           => status,
      :response_headers => headers,
      :body             => body
  else
    raise "no stubbed request for #{env[:method]} #{normalized_path} #{env[:body]}"
  end
  @app.call(env)
end

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

Yields:



103
104
105
# File 'lib/faraday/adapter/test.rb', line 103

def configure
  yield stubs
end

#create_multipart(env, params, boundary = nil) ⇒ Object



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

def create_multipart(env, params, boundary = nil)
  stream = super
  stream.read
end