Class: ApiSim::Matchers::StaticRequestMatcher

Inherits:
BaseMatcher
  • Object
show all
Defined in:
lib/api_sim/matchers/static_request_matcher.rb

Constant Summary

Constants inherited from BaseMatcher

BaseMatcher::ALWAYS_TRUE_MATCHER, BaseMatcher::DEFAULT_RACK_RESPONSE

Instance Attribute Summary collapse

Attributes inherited from BaseMatcher

#request_schema

Instance Method Summary collapse

Methods inherited from BaseMatcher

#custom_matcher?, #match_on_body?, #readonly?, #record_request, #requests, #reset!, #response

Constructor Details

#initialize(**args) ⇒ StaticRequestMatcher

Returns a new instance of StaticRequestMatcher.



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 10

def initialize(**args)
  @default = args.fetch(:default, false)
  @matcher = args.fetch(:matcher, ALWAYS_TRUE_MATCHER)
  @headers = args.fetch(:headers, {})
  @response_body = args.fetch(:response_body, '')
  @response_code = args.fetch(:response_code, 200)
  @route = Mustermann.new(args.fetch(:route))
  @http_method = args.fetch(:http_method)
  @schema = args.fetch(:schema, nil)
  @request_schema = args.fetch(:request_schema, nil)
end

Instance Attribute Details

#defaultObject (readonly)

Returns the value of attribute default.



8
9
10
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 8

def default
  @default
end

#headersObject (readonly)

Returns the value of attribute headers.



8
9
10
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 8

def headers
  @headers
end

#http_methodObject (readonly)

Returns the value of attribute http_method.



8
9
10
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 8

def http_method
  @http_method
end

#matcherObject (readonly)

Returns the value of attribute matcher.



8
9
10
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 8

def matcher
  @matcher
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



8
9
10
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 8

def response_body
  @response_body
end

#response_codeObject (readonly)

Returns the value of attribute response_code.



8
9
10
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 8

def response_code
  @response_code
end

#routeObject (readonly)

Returns the value of attribute route.



8
9
10
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 8

def route
  @route
end

#schemaObject (readonly)

Returns the value of attribute schema.



8
9
10
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 8

def schema
  @schema
end

Instance Method Details

#matches?(request) ⇒ Boolean

Returns:

  • (Boolean)


22
23
24
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 22

def matches?(request)
  matches_route_pattern?(request) && request.request_method == http_method && matcher.call(request)
end

#overridden!Object



26
27
28
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 26

def overridden!
  @overridden = true
end

#overridden?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 30

def overridden?
  !!@overridden
end

#to_sObject



34
35
36
37
38
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 34

def to_s
  <<-DOC.gsub(/^\s+/, '')
    #{http_method} #{route} -> (#{response_code}) #{response_body[0..20]}...
  DOC
end