Module: ActionController::TestResponseBehavior
- Included in:
- TestResponse
- Defined in:
- lib/action_controller/test_process.rb
Overview
A refactoring of TestResponse to allow the same behavior to be applied to the “real” CgiResponse class in integration tests.
Instance Method Summary collapse
-
#binary_content ⇒ Object
Returns binary content (downloadable file), converted to a String.
-
#code ⇒ Object
Returns a String to ensure compatibility with Net::HTTPResponse.
-
#cookies ⇒ Object
Returns the response cookies, converted to a Hash of (name => CGI::Cookie) pairs.
-
#error? ⇒ Boolean
(also: #server_error?)
Was there a server-side error?.
-
#flash ⇒ Object
A shortcut to the flash.
-
#has_flash? ⇒ Boolean
Do we have a flash?.
-
#has_flash_object?(name = nil) ⇒ Boolean
Does the specified flash object exist?.
-
#has_flash_with_contents? ⇒ Boolean
Do we have a flash that has contents?.
-
#has_session_object?(name = nil) ⇒ Boolean
Does the specified object exist in the session?.
-
#has_template_object?(name = nil) ⇒ Boolean
Does the specified template object exist?.
- #message ⇒ Object
-
#missing? ⇒ Boolean
Was the URL not found?.
-
#redirect? ⇒ Boolean
Were we redirected?.
-
#redirect_url ⇒ Object
Returns the redirection location or nil.
-
#redirect_url_match?(pattern) ⇒ Boolean
Does the redirect location match this regexp pattern?.
-
#rendered_file(with_controller = false) ⇒ Object
Returns the template path of the file which was used to render this response (or nil).
-
#rendered_with_file? ⇒ Boolean
Was this template rendered by a file?.
-
#response_code ⇒ Object
The response code of the request.
-
#success? ⇒ Boolean
Was the response successful?.
-
#template_objects ⇒ Object
A shortcut to the template.assigns.
Instance Method Details
#binary_content ⇒ Object
Returns binary content (downloadable file), converted to a String
268 269 270 271 272 273 274 275 276 277 |
# File 'lib/action_controller/test_process.rb', line 268 def binary_content raise "Response body is not a Proc: #{body.inspect}" unless body.kind_of?(Proc) require 'stringio' sio = StringIO.new body.call(self, sio) sio.rewind sio.read end |
#code ⇒ Object
Returns a String to ensure compatibility with Net::HTTPResponse
164 165 166 |
# File 'lib/action_controller/test_process.rb', line 164 def code headers['Status'].to_s.split(' ')[0] end |
#cookies ⇒ Object
Returns the response cookies, converted to a Hash of (name => CGI::Cookie) pairs
assert_equal ['AuthorOfNewPage'], r.['author'].value
263 264 265 |
# File 'lib/action_controller/test_process.rb', line 263 def headers['cookie'].inject({}) { |hash, | hash[.name] = ; hash } end |
#error? ⇒ Boolean Also known as: server_error?
Was there a server-side error?
188 189 190 |
# File 'lib/action_controller/test_process.rb', line 188 def error? (500..599).include?(response_code) end |
#flash ⇒ Object
A shortcut to the flash. Returns an empyt hash if no session flash exists.
226 227 228 |
# File 'lib/action_controller/test_process.rb', line 226 def flash session['flash'] || {} end |
#has_flash? ⇒ Boolean
Do we have a flash?
231 232 233 |
# File 'lib/action_controller/test_process.rb', line 231 def has_flash? !session['flash'].empty? end |
#has_flash_object?(name = nil) ⇒ Boolean
Does the specified flash object exist?
241 242 243 |
# File 'lib/action_controller/test_process.rb', line 241 def has_flash_object?(name=nil) !flash[name].nil? end |
#has_flash_with_contents? ⇒ Boolean
Do we have a flash that has contents?
236 237 238 |
# File 'lib/action_controller/test_process.rb', line 236 def has_flash_with_contents? !flash.empty? end |
#has_session_object?(name = nil) ⇒ Boolean
Does the specified object exist in the session?
246 247 248 |
# File 'lib/action_controller/test_process.rb', line 246 def has_session_object?(name=nil) !session[name].nil? end |
#has_template_object?(name = nil) ⇒ Boolean
Does the specified template object exist?
256 257 258 |
# File 'lib/action_controller/test_process.rb', line 256 def has_template_object?(name=nil) !template_objects[name].nil? end |
#message ⇒ Object
168 169 170 |
# File 'lib/action_controller/test_process.rb', line 168 def headers['Status'].to_s.split(' ',2)[1] end |
#missing? ⇒ Boolean
Was the URL not found?
178 179 180 |
# File 'lib/action_controller/test_process.rb', line 178 def missing? response_code == 404 end |
#redirect? ⇒ Boolean
Were we redirected?
183 184 185 |
# File 'lib/action_controller/test_process.rb', line 183 def redirect? (300..399).include?(response_code) end |
#redirect_url ⇒ Object
Returns the redirection location or nil
195 196 197 |
# File 'lib/action_controller/test_process.rb', line 195 def redirect_url headers['Location'] end |
#redirect_url_match?(pattern) ⇒ Boolean
Does the redirect location match this regexp pattern?
200 201 202 203 204 205 206 |
# File 'lib/action_controller/test_process.rb', line 200 def redirect_url_match?( pattern ) return false if redirect_url.nil? p = Regexp.new(pattern) if pattern.class == String p = pattern if pattern.class == Regexp return false if p.nil? p.match(redirect_url) != nil end |
#rendered_file(with_controller = false) ⇒ Object
Returns the template path of the file which was used to render this response (or nil)
210 211 212 213 214 215 216 217 218 |
# File 'lib/action_controller/test_process.rb', line 210 def rendered_file(with_controller=false) unless template.first_render.nil? unless with_controller template.first_render else template.first_render.split('/').last || template.first_render end end end |
#rendered_with_file? ⇒ Boolean
Was this template rendered by a file?
221 222 223 |
# File 'lib/action_controller/test_process.rb', line 221 def rendered_with_file? !rendered_file.nil? end |
#response_code ⇒ Object
The response code of the request
159 160 161 |
# File 'lib/action_controller/test_process.rb', line 159 def response_code headers['Status'][0,3].to_i rescue 0 end |
#success? ⇒ Boolean
Was the response successful?
173 174 175 |
# File 'lib/action_controller/test_process.rb', line 173 def success? (200..299).include?(response_code) end |
#template_objects ⇒ Object
A shortcut to the template.assigns
251 252 253 |
# File 'lib/action_controller/test_process.rb', line 251 def template_objects template.assigns || {} end |