Module: RspecApiDocumentation::DSL::Endpoint

Extended by:
ActiveSupport::Concern
Includes:
Rack::Test::Utils
Defined in:
lib/rspec_api_documentation/dsl/endpoint.rb,
lib/rspec_api_documentation/dsl/endpoint/params.rb,
lib/rspec_api_documentation/dsl/endpoint/set_param.rb

Overview

DSL methods available inside the RSpec example.

Defined Under Namespace

Modules: ClassMethods Classes: Params, SetParam

Constant Summary collapse

URL_PARAMS_REGEX =
/[:\{](\w+)\}?/.freeze

Instance Method Summary collapse

Instance Method Details

#authentication(type, value, opts = {}) ⇒ Object



80
81
82
83
84
85
86
87
88
89
90
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 80

def authentication(type, value, opts = {})
  name, new_opts =
    case type
    when :basic then ['Authorization', opts.merge(type: type)]
    when :apiKey then [opts[:name], opts.merge(type: type, in: :header)]
    else raise 'Not supported type for authentication'
    end
  header(name, value)
  example.[:authentications] ||= {}
  example.[:authentications][name] = new_opts
end

#do_request(extra_params = {}) ⇒ Object



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 35

def do_request(extra_params = {})
  @extra_params = extra_params

  params_or_body = nil
  path_or_query = path

  extended_parameters
  extract_route_parameters!

  if http_method == :get && !query_string.blank?
    path_or_query += "?#{query_string}"
  else
    if respond_to?(:raw_post)
      params_or_body = raw_post
    else
      formatter = RspecApiDocumentation.configuration.request_body_formatter
      case formatter
      when :json
        params_or_body = params.empty? ? nil : params.to_json
      when :xml
        params_or_body = params.to_xml
      when Proc
        params_or_body = formatter.call(params)
      else
        params_or_body = params
      end
    end
  end

  rspec_api_documentation_client.send(http_method, path_or_query, params_or_body, headers)
end

#exampleObject



158
159
160
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 158

def example
  RSpec.current_example
end

#explanation(text) ⇒ Object



154
155
156
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 154

def explanation(text)
  example.[:explanation] = text
end

#extended_parametersObject



106
107
108
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 106

def extended_parameters
  example.[:extended_parameters] ||= Params.new(self, example, extra_params).extended
end

#extract_route_parameters!Object



92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 92

def extract_route_parameters!
  example.[:route].gsub(URL_PARAMS_REGEX) do |match|
    value =
      if extra_params.keys.include?($1)
        extra_params[$1]
      elsif respond_to?($1)
        send($1)
      else
        match
      end
    extended_parameters << {name: match[1..-1], value: value, in: :path}
  end
end

#header(name, value) ⇒ Object



75
76
77
78
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 75

def header(name, value)
  example.[:headers] ||= {}
  example.[:headers][name] = value
end

#headersObject



110
111
112
113
114
115
116
117
118
119
120
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 110

def headers
  return unless example.[:headers]
  example.[:headers].inject({}) do |hash, (header, value)|
    if value.is_a?(Symbol)
      hash[header] = send(value) if respond_to?(value)
    else
      hash[header] = value
    end
    hash
  end
end

#http_methodObject



122
123
124
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 122

def http_method
  example.[:method]
end

#in_path?(param) ⇒ Boolean

Returns:

  • (Boolean)


134
135
136
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 134

def in_path?(param)
  path_params.include?(param)
end

#methodObject



126
127
128
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 126

def method
  http_method
end

#paramsObject



71
72
73
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 71

def params
  Params.new(self, example, extra_params).call
end

#pathObject



142
143
144
145
146
147
148
149
150
151
152
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 142

def path
  example.[:route].gsub(URL_PARAMS_REGEX) do |match|
    if extra_params.keys.include?($1)
      delete_extra_param($1)
    elsif respond_to?($1)
      escape send($1)
    else
      escape match
    end
  end
end

#path_paramsObject



138
139
140
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 138

def path_params
  example.[:route].scan(URL_PARAMS_REGEX).flatten
end

#query_stringObject



67
68
69
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 67

def query_string
  build_nested_query(params || {})
end

#statusObject



130
131
132
# File 'lib/rspec_api_documentation/dsl/endpoint.rb', line 130

def status
  rspec_api_documentation_client.status
end