Module: WebMock
- Extended by:
- API
- Includes:
- API
- Defined in:
- lib/webmock/util/version_checker.rb,
lib/webmock/api.rb,
lib/webmock/config.rb,
lib/webmock/errors.rb,
lib/webmock/version.rb,
lib/webmock/webmock.rb,
lib/webmock/response.rb,
lib/webmock/util/uri.rb,
lib/webmock/deprecation.rb,
lib/webmock/request_stub.rb,
lib/webmock/util/headers.rb,
lib/webmock/rack_response.rb,
lib/webmock/stub_registry.rb,
lib/webmock/rspec/matchers.rb,
lib/webmock/request_pattern.rb,
lib/webmock/request_registry.rb,
lib/webmock/util/parsers/xml.rb,
lib/webmock/assertion_failure.rb,
lib/webmock/callback_registry.rb,
lib/webmock/request_body_diff.rb,
lib/webmock/request_signature.rb,
lib/webmock/util/hash_counter.rb,
lib/webmock/util/parsers/json.rb,
lib/webmock/responses_sequence.rb,
lib/webmock/util/hash_validator.rb,
lib/webmock/stub_request_snippet.rb,
lib/webmock/matchers/any_arg_matcher.rb,
lib/webmock/util/parsers/parse_error.rb,
lib/webmock/request_signature_snippet.rb,
lib/webmock/http_lib_adapters/net_http.rb,
lib/webmock/http_lib_adapters/net_http.rb,
lib/webmock/request_execution_verifier.rb,
lib/webmock/util/hash_keys_stringifier.rb,
lib/webmock/http_lib_adapters/curb_adapter.rb,
lib/webmock/matchers/hash_argument_matcher.rb,
lib/webmock/rspec/matchers/webmock_matcher.rb,
lib/webmock/http_lib_adapters/excon_adapter.rb,
lib/webmock/matchers/hash_excluding_matcher.rb,
lib/webmock/matchers/hash_including_matcher.rb,
lib/webmock/http_lib_adapters/patron_adapter.rb,
lib/webmock/http_lib_adapters/http_rb_adapter.rb,
lib/webmock/http_lib_adapters/http_lib_adapter.rb,
lib/webmock/http_lib_adapters/manticore_adapter.rb,
lib/webmock/http_lib_adapters/httpclient_adapter.rb,
lib/webmock/rspec/matchers/request_pattern_matcher.rb,
lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb,
lib/webmock/http_lib_adapters/em_http_request_adapter.rb,
lib/webmock/http_lib_adapters/async_http_client_adapter.rb,
lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb
Overview
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Defined Under Namespace
Modules: API, HttpLibAdapters, Matchers, NetHTTPUtility, RSpecMatcherDetector, Util
Classes: AssertionFailure, BodyPattern, CallbackRegistry, Config, Deprecation, DynamicResponse, HashValidator, HeadersPattern, HttpLibAdapter, HttpLibAdapterRegistry, MethodPattern, NetConnectNotAllowedError, RackResponse, RequestBodyDiff, RequestExecutionVerifier, RequestPattern, RequestPatternMatcher, RequestRegistry, RequestSignature, RequestSignatureSnippet, RequestStub, Response, ResponseFactory, ResponsesSequence, StubRegistry, StubRequestSnippet, URIAddressablePattern, URICallablePattern, URIPattern, URIRegexpPattern, URIStringPattern, VersionChecker, WebMockMatcher
Constant Summary
collapse
- VERSION =
'3.24.0'
Class Method Summary
collapse
Methods included from API
a_request, assert_not_requested, assert_requested, hash_excluding, hash_including, remove_request_stub, reset_executed_requests!, stub_request
Class Method Details
.after_request(options = {}, &block) ⇒ Object
.allow_net_connect!(options = {}) ⇒ Object
Also known as:
enable_net_connect!
46
47
48
49
|
# File 'lib/webmock/webmock.rb', line 46
def self.allow_net_connect!(options = {})
Config.instance.allow_net_connect = true
Config.instance.net_http_connect_on_start = options[:net_http_connect_on_start]
end
|
.disable!(options = {}) ⇒ Object
30
31
32
33
34
35
36
|
# File 'lib/webmock/webmock.rb', line 30
def self.disable!(options = {})
except = [options[:except]].flatten.compact
HttpLibAdapterRegistry.instance.each_adapter do |name, adapter|
adapter.enable!
adapter.disable! unless except.include?(name)
end
end
|
.disable_net_connect!(options = {}) ⇒ Object
Also known as:
disallow_net_connect!
51
52
53
54
55
56
|
# File 'lib/webmock/webmock.rb', line 51
def self.disable_net_connect!(options = {})
Config.instance.allow_net_connect = false
Config.instance.allow_localhost = options[:allow_localhost]
Config.instance.allow = options[:allow]
Config.instance.net_http_connect_on_start = options[:net_http_connect_on_start]
end
|
.enable!(options = {}) ⇒ Object
38
39
40
41
42
43
44
|
# File 'lib/webmock/webmock.rb', line 38
def self.enable!(options = {})
except = [options[:except]].flatten.compact
HttpLibAdapterRegistry.instance.each_adapter do |name, adapter|
adapter.disable!
adapter.enable! unless except.include?(name)
end
end
|
.globally_stub_request(order = :before_local_stubs, &block) ⇒ Object
155
156
157
|
# File 'lib/webmock/webmock.rb', line 155
def self.globally_stub_request(order = :before_local_stubs, &block)
WebMock::StubRegistry.instance.register_global_stub(order, &block)
end
|
.hide_body_diff! ⇒ Object
109
110
111
|
# File 'lib/webmock/webmock.rb', line 109
def self.hide_body_diff!
Config.instance.show_body_diff = false
end
|
.hide_stubbing_instructions! ⇒ Object
117
118
119
|
# File 'lib/webmock/webmock.rb', line 117
def self.hide_stubbing_instructions!
Config.instance.show_stubbing_instructions = false
end
|
.included(clazz) ⇒ Object
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# File 'lib/webmock/webmock.rb', line 5
def self.included(clazz)
WebMock::Deprecation.warning("include WebMock is deprecated. Please include WebMock::API instead")
if clazz.instance_methods.map(&:to_s).include?('request')
warn "WebMock#request was not included in #{clazz} to avoid name collision"
else
clazz.class_eval do
def request(method, uri)
WebMock::Deprecation.warning("WebMock#request is deprecated. Please use WebMock::API#a_request method instead")
WebMock.a_request(method, uri)
end
end
end
end
|
.net_connect_allowed?(uri = nil) ⇒ Boolean
63
64
65
66
67
68
69
70
71
72
73
|
# File 'lib/webmock/webmock.rb', line 63
def self.net_connect_allowed?(uri = nil)
return !!Config.instance.allow_net_connect if uri.nil?
if uri.is_a?(String)
uri = WebMock::Util::URI.normalize_uri(uri)
end
!!Config.instance.allow_net_connect ||
( Config.instance.allow_localhost && WebMock::Util::URI.is_uri_localhost?(uri) ||
Config.instance.allow && net_connect_explicit_allowed?(Config.instance.allow, uri) )
end
|
.net_connect_explicit_allowed?(allowed, uri = nil) ⇒ Boolean
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# File 'lib/webmock/webmock.rb', line 85
def self.net_connect_explicit_allowed?(allowed, uri=nil)
case allowed
when Array
allowed.any? { |allowed_item| net_connect_explicit_allowed?(allowed_item, uri) }
when Regexp
(uri.to_s =~ allowed) != nil ||
(uri.omit(:port).to_s =~ allowed) != nil && uri.port == uri.default_port
when String
allowed == uri.to_s ||
allowed == uri.host ||
allowed == "#{uri.host}:#{uri.port}" ||
allowed == "#{uri.scheme}://#{uri.host}:#{uri.port}" ||
allowed == "#{uri.scheme}://#{uri.host}" && uri.port == uri.default_port
else
if allowed.respond_to?(:call)
allowed.call(uri)
end
end
end
|
.net_http_connect_on_start?(uri) ⇒ Boolean
75
76
77
78
79
80
81
82
83
|
# File 'lib/webmock/webmock.rb', line 75
def self.net_http_connect_on_start?(uri)
allowed = Config.instance.net_http_connect_on_start || false
if [true, false].include?(allowed)
allowed
else
net_connect_explicit_allowed?(allowed, uri)
end
end
|
.print_executed_requests ⇒ Object
.registered_request?(request_signature) ⇒ Boolean
147
148
149
|
# File 'lib/webmock/webmock.rb', line 147
def self.registered_request?(request_signature)
WebMock::StubRegistry.instance.registered_request?(request_signature)
end
|
.reset_callbacks ⇒ Object
.reset_webmock ⇒ Object
134
135
136
137
|
# File 'lib/webmock/webmock.rb', line 134
def self.reset_webmock
WebMock::Deprecation.warning("WebMock.reset_webmock is deprecated. Please use WebMock.reset! method instead")
reset!
end
|
.show_body_diff! ⇒ Object
105
106
107
|
# File 'lib/webmock/webmock.rb', line 105
def self.show_body_diff!
Config.instance.show_body_diff = true
end
|
.show_body_diff? ⇒ Boolean
113
114
115
|
# File 'lib/webmock/webmock.rb', line 113
def self.show_body_diff?
Config.instance.show_body_diff
end
|
.show_stubbing_instructions! ⇒ Object
121
122
123
|
# File 'lib/webmock/webmock.rb', line 121
def self.show_stubbing_instructions!
Config.instance.show_stubbing_instructions = true
end
|
.show_stubbing_instructions? ⇒ Boolean
125
126
127
|
# File 'lib/webmock/webmock.rb', line 125
def self.show_stubbing_instructions?
Config.instance.show_stubbing_instructions
end
|
.version ⇒ Object
26
27
28
|
# File 'lib/webmock/webmock.rb', line 26
def self.version
VERSION
end
|