Class: Faraday::Adapter::Test::Stubs

Inherits:
Object
  • Object
show all
Defined in:
lib/faraday/adapter/test.rb

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ Stubs

Returns a new instance of Stubs.

Yields:

  • (_self)

Yield Parameters:



20
21
22
23
24
# File 'lib/faraday/adapter/test.rb', line 20

def initialize
  # {:get => [Stub, Stub]}
  @stack, @consumed = {}, {}
  yield self if block_given?
end

Instance Method Details

#delete(path, &block) ⇒ Object



59
60
61
# File 'lib/faraday/adapter/test.rb', line 59

def delete(path, &block)
  new_stub(:delete, path, &block)
end

#empty?Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/faraday/adapter/test.rb', line 26

def empty?
  @stack.empty?
end

#get(path, &block) ⇒ Object



43
44
45
# File 'lib/faraday/adapter/test.rb', line 43

def get(path, &block)
  new_stub(:get, path, &block)
end

#head(path, &block) ⇒ Object



47
48
49
# File 'lib/faraday/adapter/test.rb', line 47

def head(path, &block)
  new_stub(:head, path, &block)
end

#match(request_method, path, body) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/faraday/adapter/test.rb', line 30

def match(request_method, path, body)
  return false if !@stack.key?(request_method)
  stack = @stack[request_method]
  consumed = (@consumed[request_method] ||= [])

  if stub = matches?(stack, path, body)
    consumed << stack.delete(stub)
    stub
  else
    matches?(consumed, path, body)
  end
end

#post(path, body = nil, &block) ⇒ Object



51
52
53
# File 'lib/faraday/adapter/test.rb', line 51

def post(path, body=nil, &block)
  new_stub(:post, path, body, &block)
end

#put(path, body = nil, &block) ⇒ Object



55
56
57
# File 'lib/faraday/adapter/test.rb', line 55

def put(path, body=nil, &block)
  new_stub(:put, path, body, &block)
end

#verify_stubbed_callsObject

Raises an error if any of the stubbed calls have not been made.



64
65
66
67
68
69
70
71
72
73
74
# File 'lib/faraday/adapter/test.rb', line 64

def verify_stubbed_calls
  failed_stubs = []
  @stack.each do |method, stubs|
    unless stubs.size == 0
      failed_stubs.concat(stubs.map {|stub|
        "Expected #{method} #{stub}."
      })
    end
  end
  raise failed_stubs.join(" ") unless failed_stubs.size == 0
end