Class: ActiveResource::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/active_resource/http_mock.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(body, message = 200, headers = {}) ⇒ Response

Returns a new instance of Response.



172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/active_resource/http_mock.rb', line 172

def initialize(body, message = 200, headers = {})
  @body, @message, @headers = body, message.to_s, headers
  @code = @message[0,3].to_i

  resp_cls = Net::HTTPResponse::CODE_TO_OBJ[@code.to_s]
  if resp_cls && !resp_cls.body_permitted?
    @body = nil
  end

  if @body.nil?
    self['Content-Length'] = "0"
  else
    self['Content-Length'] = body.size.to_s
  end
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



170
171
172
# File 'lib/active_resource/http_mock.rb', line 170

def body
  @body
end

#codeObject

Returns the value of attribute code.



170
171
172
# File 'lib/active_resource/http_mock.rb', line 170

def code
  @code
end

#headersObject

Returns the value of attribute headers.



170
171
172
# File 'lib/active_resource/http_mock.rb', line 170

def headers
  @headers
end

#messageObject

Returns the value of attribute message.



170
171
172
# File 'lib/active_resource/http_mock.rb', line 170

def message
  @message
end

Instance Method Details

#==(other) ⇒ Object



200
201
202
203
204
205
206
# File 'lib/active_resource/http_mock.rb', line 200

def ==(other)
  if (other.is_a?(Response))
    other.body == body && other.message == message && other.headers == headers
  else
    false
  end
end

#[](key) ⇒ Object



192
193
194
# File 'lib/active_resource/http_mock.rb', line 192

def [](key)
  headers[key]
end

#[]=(key, value) ⇒ Object



196
197
198
# File 'lib/active_resource/http_mock.rb', line 196

def []=(key, value)
  headers[key] = value
end

#success?Boolean

Returns:

  • (Boolean)


188
189
190
# File 'lib/active_resource/http_mock.rb', line 188

def success?
  (200..299).include?(code)
end