Class: Faraday::Adapter::Test::Stubs
- Defined in:
- lib/faraday/adapter/test.rb
Defined Under Namespace
Classes: NotFound
Instance Method Summary collapse
- #delete(path, &block) ⇒ Object
- #empty? ⇒ Boolean
- #get(path, &block) ⇒ Object
- #head(path, &block) ⇒ Object
-
#initialize {|_self| ... } ⇒ Stubs
constructor
A new instance of Stubs.
- #match(request_method, path, body) ⇒ Object
- #options(path, &block) ⇒ Object
- #patch(path, body = nil, &block) ⇒ Object
- #post(path, body = nil, &block) ⇒ Object
- #put(path, body = nil, &block) ⇒ Object
-
#verify_stubbed_calls ⇒ Object
Raises an error if any of the stubbed calls have not been made.
Constructor Details
#initialize {|_self| ... } ⇒ Stubs
Returns a new instance of Stubs.
21 22 23 24 25 |
# File 'lib/faraday/adapter/test.rb', line 21 def initialize # {:get => [Stub, Stub]} @stack, @consumed = {}, {} yield self if block_given? end |
Instance Method Details
#delete(path, &block) ⇒ Object
65 66 67 |
# File 'lib/faraday/adapter/test.rb', line 65 def delete(path, &block) new_stub(:delete, path, &block) end |
#empty? ⇒ Boolean
27 28 29 |
# File 'lib/faraday/adapter/test.rb', line 27 def empty? @stack.empty? end |
#get(path, &block) ⇒ Object
45 46 47 |
# File 'lib/faraday/adapter/test.rb', line 45 def get(path, &block) new_stub(:get, path, &block) end |
#head(path, &block) ⇒ Object
49 50 51 |
# File 'lib/faraday/adapter/test.rb', line 49 def head(path, &block) new_stub(:head, path, &block) end |
#match(request_method, path, body) ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/faraday/adapter/test.rb', line 31 def match(request_method, path, body) return false if !@stack.key?(request_method) stack = @stack[request_method] consumed = (@consumed[request_method] ||= []) path = normalize_path(path) if stub = matches?(stack, path, body) consumed << stack.delete(stub) stub else matches?(consumed, path, body) end end |
#options(path, &block) ⇒ Object
69 70 71 |
# File 'lib/faraday/adapter/test.rb', line 69 def (path, &block) new_stub(:options, path, &block) end |
#patch(path, body = nil, &block) ⇒ Object
61 62 63 |
# File 'lib/faraday/adapter/test.rb', line 61 def patch(path, body=nil, &block) new_stub(:patch, path, body, &block) end |
#post(path, body = nil, &block) ⇒ Object
53 54 55 |
# File 'lib/faraday/adapter/test.rb', line 53 def post(path, body=nil, &block) new_stub(:post, path, body, &block) end |
#put(path, body = nil, &block) ⇒ Object
57 58 59 |
# File 'lib/faraday/adapter/test.rb', line 57 def put(path, body=nil, &block) new_stub(:put, path, body, &block) end |
#verify_stubbed_calls ⇒ Object
Raises an error if any of the stubbed calls have not been made.
74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/faraday/adapter/test.rb', line 74 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 |