Module: ActionController::TestCase::Behavior
- Extended by:
- ActiveSupport::Concern
- Includes:
- ActionDispatch::TestProcess, ActiveSupport::Testing::ConstantLookup, Rails::Dom::Testing::Assertions
- Included in:
- ActionController::TestCase
- Defined in:
- lib/action_controller/test_case.rb
Defined Under Namespace
Modules: ClassMethods
Instance Attribute Summary collapse
-
#request ⇒ Object
readonly
Returns the value of attribute request.
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
- #build_response(klass) ⇒ Object
- #controller_class_name ⇒ Object
-
#delete(action, **args) ⇒ Object
Simulate a DELETE request with the given parameters and set/volley the response.
- #generated_path(generated_extras) ⇒ Object
-
#get(action, **args) ⇒ Object
Simulate a GET request with the given parameters.
-
#head(action, **args) ⇒ Object
Simulate a HEAD request with the given parameters and set/volley the response.
-
#patch(action, **args) ⇒ Object
Simulate a PATCH request with the given parameters and set/volley the response.
-
#post(action, **args) ⇒ Object
Simulate a POST request with the given parameters and set/volley the response.
-
#process(action, method: "GET", params: nil, session: nil, body: nil, flash: {}, format: nil, xhr: false, as: nil) ⇒ Object
Simulate an HTTP request to
action
by specifying request method, parameters and set/volley the response. -
#put(action, **args) ⇒ Object
Simulate a PUT request with the given parameters and set/volley the response.
- #query_parameter_names(generated_extras) ⇒ Object
- #setup_controller_request_and_response ⇒ Object
Methods included from ActionDispatch::TestProcess
#assigns, #cookies, #flash, #redirect_to_url, #session
Methods included from ActionDispatch::TestProcess::FixtureFile
Instance Attribute Details
#request ⇒ Object (readonly)
Returns the value of attribute request.
335 336 337 |
# File 'lib/action_controller/test_case.rb', line 335 def request @request end |
#response ⇒ Object (readonly)
Returns the value of attribute response.
335 336 337 |
# File 'lib/action_controller/test_case.rb', line 335 def response @response end |
Instance Method Details
#build_response(klass) ⇒ Object
539 540 541 |
# File 'lib/action_controller/test_case.rb', line 539 def build_response(klass) klass.create end |
#controller_class_name ⇒ Object
499 500 501 |
# File 'lib/action_controller/test_case.rb', line 499 def controller_class_name @controller.class.anonymous? ? "anonymous" : @controller.class.controller_path end |
#delete(action, **args) ⇒ Object
Simulate a DELETE request with the given parameters and set/volley the response. See get
for more details.
420 421 422 |
# File 'lib/action_controller/test_case.rb', line 420 def delete(action, **args) process(action, method: "DELETE", **args) end |
#generated_path(generated_extras) ⇒ Object
503 504 505 |
# File 'lib/action_controller/test_case.rb', line 503 def generated_path(generated_extras) generated_extras[0] end |
#get(action, **args) ⇒ Object
Simulate a GET request with the given parameters.
-
action
: The controller action to call. -
params
: The hash with HTTP parameters that you want to pass. This may benil
. -
body
: The request body with a string that is appropriately encoded (application/x-www-form-urlencoded
ormultipart/form-data
). -
session
: A hash of parameters to store in the session. This may benil
. -
flash
: A hash of parameters to store in the flash. This may benil
.
You can also simulate POST, PATCH, PUT, DELETE, and HEAD requests with post
, patch
, put
, delete
, and head
. Example sending parameters, session and setting a flash message:
get :show,
params: { id: 7 },
session: { user_id: 1 },
flash: { notice: 'This is flash message' }
Note that the request method is not verified. The different methods are available to make the tests more expressive.
394 395 396 397 398 |
# File 'lib/action_controller/test_case.rb', line 394 def get(action, **args) res = process(action, method: "GET", **args) .update res. res end |
#head(action, **args) ⇒ Object
Simulate a HEAD request with the given parameters and set/volley the response. See get
for more details.
426 427 428 |
# File 'lib/action_controller/test_case.rb', line 426 def head(action, **args) process(action, method: "HEAD", **args) end |
#patch(action, **args) ⇒ Object
Simulate a PATCH request with the given parameters and set/volley the response. See get
for more details.
408 409 410 |
# File 'lib/action_controller/test_case.rb', line 408 def patch(action, **args) process(action, method: "PATCH", **args) end |
#post(action, **args) ⇒ Object
Simulate a POST request with the given parameters and set/volley the response. See get
for more details.
402 403 404 |
# File 'lib/action_controller/test_case.rb', line 402 def post(action, **args) process(action, method: "POST", **args) end |
#process(action, method: "GET", params: nil, session: nil, body: nil, flash: {}, format: nil, xhr: false, as: nil) ⇒ Object
Simulate an HTTP request to action
by specifying request method, parameters and set/volley the response.
-
action
: The controller action to call. -
method
: Request method used to send the HTTP request. Possible values areGET
,POST
,PATCH
,PUT
,DELETE
,HEAD
. Defaults toGET
. Can be a symbol. -
params
: The hash with HTTP parameters that you want to pass. This may benil
. -
body
: The request body with a string that is appropriately encoded (application/x-www-form-urlencoded
ormultipart/form-data
). -
session
: A hash of parameters to store in the session. This may benil
. -
flash
: A hash of parameters to store in the flash. This may benil
. -
format
: Request format. Defaults tonil
. Can be string or symbol. -
as
: Content type. Defaults tonil
. Must be a symbol that corresponds to a mime type.
Example calling create
action and sending two params:
process :create,
method: 'POST',
params: {
user: { name: 'Gaurish Sharma', email: '[email protected]' }
},
session: { user_id: 1 },
flash: { notice: 'This is flash message' }
To simulate GET
, POST
, PATCH
, PUT
, DELETE
and HEAD
requests prefer using #get, #post, #patch, #put, #delete and #head methods respectively which will make tests more expressive.
Note that the request method is not verified.
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
# File 'lib/action_controller/test_case.rb', line 460 def process(action, method: "GET", params: nil, session: nil, body: nil, flash: {}, format: nil, xhr: false, as: nil) check_required_ivars action = +action.to_s http_method = method.to_s.upcase @html_document = nil .update(@request.) . @request.set_header "HTTP_COOKIE", .to_header @request.delete_header "action_dispatch.cookies" @request = TestRequest.new scrub_env!(@request.env), @request.session, @controller.class @response = build_response @response_klass @response.request = @request @controller.recycle! if body @request.set_header "RAW_POST_DATA", body end @request.set_header "REQUEST_METHOD", http_method if as @request.content_type = Mime[as].to_s format ||= as end parameters = (params || {}).symbolize_keys if format parameters[:format] = format end setup_request(controller_class_name, action, parameters, session, flash, xhr) process_controller_response(action, , xhr) end |
#put(action, **args) ⇒ Object
Simulate a PUT request with the given parameters and set/volley the response. See get
for more details.
414 415 416 |
# File 'lib/action_controller/test_case.rb', line 414 def put(action, **args) process(action, method: "PUT", **args) end |
#query_parameter_names(generated_extras) ⇒ Object
507 508 509 |
# File 'lib/action_controller/test_case.rb', line 507 def query_parameter_names(generated_extras) generated_extras[1] + [:controller, :action] end |
#setup_controller_request_and_response ⇒ Object
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 |
# File 'lib/action_controller/test_case.rb', line 511 def setup_controller_request_and_response @controller = nil unless defined? @controller @response_klass = ActionDispatch::TestResponse if klass = self.class.controller_class if klass < ActionController::Live @response_klass = LiveTestResponse end unless @controller begin @controller = klass.new rescue warn "could not construct controller #{klass}" if $VERBOSE end end end @request = TestRequest.create(@controller.class) @response = build_response @response_klass @response.request = @request if @controller @controller.request = @request @controller.params = {} end end |