class Swagcov::OpenapiFiles

def find_response_keys path:, route_verb:

def find_response_keys path:, route_verb:
  # replace :id with {id}
  regex = Regexp.new("^#{path.gsub(%r{:[^/]+}, '\\{[^/]+\\}')}?$")
  matching_paths_key = @openapi_paths.keys.grep(regex).first
  matching_request_method_key = @openapi_paths.dig(matching_paths_key, route_verb.downcase)
  matching_request_method_key["responses"].keys.map(&:to_s).sort if matching_request_method_key
end

def initialize filepaths:

def initialize filepaths:
  @filepaths = filepaths
  @openapi_paths = load_yamls
end

def load_yaml filepath

def load_yaml filepath
  YAML.load_file(filepath)["paths"]
rescue Psych::SyntaxError
  raise BadConfigurationError, "Malinformed openapi file (#{filepath})"
end

def load_yamls

def load_yamls
  Dir.glob(@filepaths).reduce({}) do |hash, filepath|
    hash.merge(load_yaml(filepath))
  end
end