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

Instance Method Summary collapse

Methods inherited from BaseMatcher

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

Constructor Details

#initialize(http_method:, route:, response_code: 200, response_body: '', headers: {}, default: false, matcher: ALWAYS_TRUE_MATCHER, schema: nil) ⇒ StaticRequestMatcher

Returns a new instance of StaticRequestMatcher.



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

def initialize(http_method:, route:, response_code: 200, response_body: '', headers: {}, default: false, matcher: ALWAYS_TRUE_MATCHER, schema: nil)
  @default = default
  @matcher = matcher
  @headers = headers
  @response_body = response_body
  @response_code = response_code
  @route = route
  @http_method = http_method
  @schema = schema
end

Instance Attribute Details

#defaultObject (readonly)

Returns the value of attribute default.



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

def default
  @default
end

#headersObject (readonly)

Returns the value of attribute headers.



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

def headers
  @headers
end

#http_methodObject (readonly)

Returns the value of attribute http_method.



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

def http_method
  @http_method
end

#matcherObject (readonly)

Returns the value of attribute matcher.



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

def matcher
  @matcher
end

#response_bodyObject (readonly)

Returns the value of attribute response_body.



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

def response_body
  @response_body
end

#response_codeObject (readonly)

Returns the value of attribute response_code.



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

def response_code
  @response_code
end

#routeObject (readonly)

Returns the value of attribute route.



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

def route
  @route
end

#schemaObject (readonly)

Returns the value of attribute schema.



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

def schema
  @schema
end

Instance Method Details

#custom_matcher?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 24

def custom_matcher?
  matcher != ALWAYS_TRUE_MATCHER
end

#matches?(request) ⇒ Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 20

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

#matches_dynamic_path?(request) ⇒ Boolean

Returns:

  • (Boolean)


46
47
48
49
50
51
52
53
54
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 46

def matches_dynamic_path?(request)
  route_tokens = route.split('/')
  request_tokens = request.path.split('/')

  return false unless route_tokens.count == request_tokens.count
  route_tokens.zip(request_tokens).all? do |matcher_part, request_part|
    matcher_part == request_part || matcher_part.start_with?(':')
  end
end

#overridden!Object



28
29
30
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 28

def overridden!
  @overridden = true
end

#overridden?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 32

def overridden?
  !!@overridden
end

#requestsObject



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

def requests
  @requests ||= []
end

#to_sObject



40
41
42
43
44
# File 'lib/api_sim/matchers/static_request_matcher.rb', line 40

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