Class: ActionView::TestCase::TestController
Constant Summary
::AbstractController::Rendering
- Included
DEFAULT_PROTECTED_INSTANCE_VARIABLES
::ActionController::Rendering
- Included
::ActionController::Renderers
- Included
::ActiveSupport::Callbacks
- Included
::ActionController::RequestForgeryProtection
- Included
AUTHENTICITY_TOKEN_LENGTH, GLOBAL_CSRF_TOKEN_IDENTIFIER, NULL_ORIGIN_MESSAGE
::ActionController::ForceSSL
- Included
ACTION_OPTIONS, REDIRECT_OPTIONS, URL_OPTIONS
::ActionController::ParamsWrapper
- Included
::ActionController::Base
- Inherited
Class Attribute Summary
- .controller_path=(value) writeonly
::ActionController::Metal
- Inherited
::AbstractController::Base
- Inherited
.abstract? | Alias for AbstractController::Base.abstract. |
.supports_path? | Returns true if the given controller is capable of rendering a path. |
Class Method Summary
- .new ⇒ TestController constructor
::ActionController::Base
- Inherited
.make_response!, | |
.without_modules | Shortcut helper that returns all the modules included in |
::ActionController::Metal
- Inherited
.action | Returns a |
.controller_name | Returns the last part of the controller’s name, underscored, without the ending |
.dispatch | Direct dispatch to the controller. |
.make_response!, | |
.middleware | Alias for |
.new, | |
.use | Pushes the given |
::AbstractController::Base
- Inherited
.abstract, | |
.abstract! | Define a controller as abstract. |
.action_methods | A list of method names that should be considered actions. |
.clear_action_methods! | action_methods are cached and there is sometimes a need to refresh them. |
.controller_path | Returns the full controller name, underscored, without the ending Controller. |
.internal_methods | A list of all internal methods for a controller. |
.method_added | Refresh the cached action_methods when a new action_method is added. |
::ActiveSupport::DescendantsTracker
- Extended
Instance Attribute Summary
- #controller_path=(path) writeonly
- #params rw
- #request rw
- #response rw
::ActionController::Instrumentation
- Included
::ActionController::Rescue
- Included
#rescue_handlers, #rescue_handlers?, | |
#show_detailed_exceptions? | Override this method if you want to customize when detailed exceptions must be shown. |
::ActionController::RequestForgeryProtection
- Included
#_helper_methods, #_helper_methods?, #_helpers, #_helpers?, | |
#any_authenticity_token_valid? | Checks if any of the authenticity tokens from the request are valid. |
#marked_for_same_origin_verification? | If the |
#non_xhr_javascript_response? | Check for cross-origin JavaScript responses. |
#protect_against_forgery? | Checks if the controller allows forgery protection. |
#valid_request_origin? | Checks if the request originated from the same origin by looking at the Origin header. |
#verified_request? | Returns true or false if a request is verified. |
::AbstractController::Callbacks
- Included
::ActionController::StrongParameters
- Included
#params | Returns a new |
#params= | Assigns the given |
#rescue_handlers, #rescue_handlers? |
::ActionController::EtagWithFlash
- Included
::ActionController::EtagWithTemplateDigest
- Included
::ActionController::Renderers::All
- Included
::ActionView::Layouts
- Included
#_layout_conditions, #action_has_layout=, | |
#action_has_layout? | Controls whether an action should be rendered using a layout. |
::ActionView::Rendering
- Included
::ActionController::Redirecting
- Included
::AbstractController::UrlFor
- Included
::ActionController::Helpers
- Included
::AbstractController::Rendering
- Included
::ActionView::ViewPaths
- Included
::ActionController::Metal
- Inherited
#content_type, #headers, #location, #middleware_stack, #middleware_stack?, #params, #params=, | |
#performed? | Tests if render or redirect has already happened. |
#request, #response, #response_body=, #session, #status |
::AbstractController::Base
- Inherited
#action_name | Returns the name of the action this controller is processing. |
#formats | Returns the formats that can be processed by the controller. |
#performed? | Tests if a response body is set. |
#response_body | Returns the body of the HTTP response sent by the controller. |
Instance Method Summary
::ActionDispatch::TestProcess
- Included
::ActionDispatch::TestProcess::FixtureFile
- Included
#fixture_file_upload | Shortcut for |
::ActionController::Base
- Inherited
#request | Returns an |
#response | Returns an |
::ActionController::ParamsWrapper
- Included
#process_action | Performs parameters wrapping upon the request. |
::ActionController::Instrumentation
- Included
#process_action, #redirect_to, #render, #send_data, #send_file, | |
#append_info_to_payload | Every time after an action is processed, this method is invoked with the payload, so you can add more information. |
#cleanup_view_runtime | A hook which allows you to clean up any time, wrongly taken into account in views, like database querying time. |
::ActionController::HttpAuthentication::Token::ControllerMethods
- Included
#authenticate_or_request_with_http_token, #authenticate_with_http_token, #request_http_token_authentication |
::ActionController::HttpAuthentication::Digest::ControllerMethods
- Included
#authenticate_or_request_with_http_digest, | |
#authenticate_with_http_digest | Authenticate with HTTP Digest, returns true or false. |
#request_http_digest_authentication | Render output including the HTTP Digest authentication header. |
::ActionController::HttpAuthentication::Basic::ControllerMethods
- Included
#authenticate_or_request_with_http_basic, #authenticate_with_http_basic, #request_http_basic_authentication |
::ActionController::DataStreaming
- Included
#send_data | Sends the given binary data to the browser. |
#send_file | Sends the file. |
::ActionController::ForceSSL
- Included
#force_ssl_redirect | Redirect the existing request to use the HTTPS protocol. |
::ActionController::RequestForgeryProtection
- Included
#compare_with_global_token, #compare_with_real_token, #csrf_token_hmac, | |
#form_authenticity_param | The form’s authenticity parameter. |
#global_csrf_token, #handle_unverified_request, | |
#mark_for_same_origin_verification! | GET requests are checked for cross-origin JavaScript after rendering. |
#mask_token, | |
#masked_authenticity_token | Creates a masked version of the authenticity token that varies on each request. |
#normalize_action_path, #per_form_csrf_token, #real_csrf_token, | |
#request_authenticity_tokens | Possible authenticity tokens sent in the request. |
#unmask_token, | |
#valid_authenticity_token? | Checks the client’s masked token to see if it matches the session token. |
#valid_per_form_csrf_token?, | |
#verify_authenticity_token | The actual before_action that is used to verify the CSRF token. |
#verify_same_origin_request | If |
#xor_byte_strings |
::AbstractController::Callbacks
- Included
#process_action | Override AbstractController::Base#process_action to run the |
::ActiveSupport::Callbacks
- Included
#run_callbacks | Runs the callbacks for the given event. |
::ActionController::FormBuilder
- Included
#default_form_builder | Default form builder for the controller. |
::ActiveSupport::Rescuable
- Included
#rescue_with_handler | Delegates to the class method, but uses the instance as the subject for rescue_from handlers (method calls, instance_exec blocks). |
::ActionController::MimeResponds
- Included
#respond_to | Without web-service support, an action which collects the data for displaying a list of people might look something like this: |
::ActionController::ConditionalGet
- Included
#expires_in | Sets an HTTP 1.1 Cache-Control header. |
#expires_now | Sets an HTTP 1.1 Cache-Control header of |
#fresh_when | Sets the |
#http_cache_forever | Cache or yield the block. |
#stale? | Sets the |
::ActionController::Head
- Included
#head | Returns a response that has no content (merely headers). |
::ActionController::Renderers
- Included
#_render_to_body_with_renderer, | |
#render_to_body | Called by |
::ActionController::Rendering
- Included
#render_to_body, | |
#render_to_string | Overwrite render_to_string because body can now be set to a |
::ActionView::Rendering
- Included
#render_to_body, #rendered_format, | |
#view_context | An instance of a view class. |
::ActionController::Redirecting
- Included
#redirect_back | Redirects the browser to the page that issued the request (the referrer) if possible, otherwise redirects to the provided default fallback location. |
#redirect_to | Redirects the browser to the target specified in |
::ActiveSupport::Benchmarkable
- Included
#benchmark | Allows you to measure the execution time of a block in a template and records the result to the log. |
::ActionController::UrlFor
- Included
::AbstractController::UrlFor
- Included
::ActionDispatch::Routing::UrlFor
- Included
#initialize, | |
#route_for | Allows calling direct or regular named route. |
#url_for | Generate a URL based on the options provided, default_url_options and the routes defined in routes.rb. |
#url_options | Hook overridden in controller to add request information with |
#_routes_context, #_with_routes |
::ActionDispatch::Routing::PolymorphicRoutes
- Included
#polymorphic_path | Returns the path component of a URL for the given record. |
#polymorphic_url | Constructs a call to a named RESTful route for the given record and returns the resulting URL string. |
::ActionController::Helpers
- Included
#helpers | Provides a proxy to access helper methods from outside the view. |
::AbstractController::Translation
- Included
#l | Alias for AbstractController::Translation#localize. |
#localize | Delegates to |
#t | Alias for AbstractController::Translation#translate. |
#translate | Delegates to |
::AbstractController::Rendering
- Included
#render | Normalizes arguments, options and then delegates render_to_body and sticks the result in |
#render_to_body | Performs the actual template rendering. |
#render_to_string | Raw rendering of a template to a string. |
#rendered_format | Returns Content-Type of rendered content. |
#view_assigns | This method should return a hash with assigns. |
#_normalize_args | Normalize args by converting |
#_normalize_options | Normalize options. |
#_process_options | Process extra options. |
::ActionView::ViewPaths
- Included
#any_templates?, | |
#append_view_path | Append a path to the list of view paths for the current |
#details_for_lookup, | |
#lookup_context |
|
#prepend_view_path | Prepend a path to the list of view paths for the current |
#template_exists? |
::ActionController::Metal
- Inherited
#controller_name | Delegates to the class’ |
#reset_session, | |
#url_for | Basic url_for that can be overridden for more robust functionality. |
::AbstractController::Base
- Inherited
#action_methods | Delegates to the class’ |
#available_action? | Returns true if a method for the action is available and can be dispatched, false otherwise. |
#controller_path | Delegates to the class’ |
#process | Calls the action going through the entire action dispatch stack. |
::ActiveSupport::Configurable
- Included
#config | Reads and writes attributes from a configuration |
Constructor Details
.new ⇒ TestController
# File 'actionview/lib/action_view/test_case.rb', line 26
def initialize super self.class.controller_path = "" @request = ActionController::TestRequest.create(self.class) @response = ActionDispatch::TestResponse.new @request.env.delete("PATH_INFO") @params = ActionController::Parameters.new end
Class Attribute Details
.controller_path=(value) (writeonly)
[ GitHub ]# File 'actionview/lib/action_view/test_case.rb', line 19
attr_writer :controller_path
Instance Attribute Details
#controller_path=(path) (writeonly)
[ GitHub ]# File 'actionview/lib/action_view/test_case.rb', line 22
def controller_path=(path) self.class.controller_path = (path) end