跳至内容 跳至搜索
命名空间
方法
B
C
D
G
H
P
Q
S
包含的模块

属性

[R] request
[R] response

实例公共方法

build_response(klass)

# File actionpack/lib/action_controller/test_case.rb, line 584
def build_response(klass)
  klass.create
end

controller_class_name()

# File actionpack/lib/action_controller/test_case.rb, line 544
def controller_class_name
  @controller.class.anonymous? ? "anonymous" : @controller.class.controller_path
end

delete(action, **args)

使用给定的参数模拟 DELETE 请求并设置/发送响应。有关更多详细信息,请参见 get

# File actionpack/lib/action_controller/test_case.rb, line 455
def delete(action, **args)
  process(action, method: "DELETE", **args)
end

generated_path(generated_extras)

# File actionpack/lib/action_controller/test_case.rb, line 548
def generated_path(generated_extras)
  generated_extras[0]
end

get(action, **args)

使用给定的参数模拟 GET 请求。

  • action: 要调用的控制器操作。

  • params: 您要传递的 HTTP 参数的哈希值。这可能是 nil

  • body: 具有适当编码的字符串(application/x-www-form-urlencodedmultipart/form-data)的请求主体。

  • session: 要存储在会话中的参数的哈希值。这可能是 nil

  • flash: 要存储在闪存中的参数的哈希值。这可能是 nil

您还可以使用 postpatchputdeletehead 模拟 POST、PATCH、PUT、DELETE 和 HEAD 请求。发送参数、会话和设置闪存消息的示例

get :show,
  params: { id: 7 },
  session: { user_id: 1 },
  flash: { notice: 'This is flash message' }

请注意,不会验证请求方法。提供不同的方法是为了使测试更具表现力。

# File actionpack/lib/action_controller/test_case.rb, line 431
def get(action, **args)
  process(action, method: "GET", **args)
end

head(action, **args)

使用给定的参数模拟 HEAD 请求并设置/发送响应。有关更多详细信息,请参见 get

# File actionpack/lib/action_controller/test_case.rb, line 461
def head(action, **args)
  process(action, method: "HEAD", **args)
end

patch(action, **args)

使用给定的参数模拟 PATCH 请求并设置/发送响应。有关更多详细信息,请参见 get

# File actionpack/lib/action_controller/test_case.rb, line 443
def patch(action, **args)
  process(action, method: "PATCH", **args)
end

post(action, **args)

使用给定的参数模拟 POST 请求并设置/发送响应。有关更多详细信息,请参见 get

# File actionpack/lib/action_controller/test_case.rb, line 437
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)

通过指定请求方法、参数并设置/发送响应来模拟对 action 的 HTTP 请求。

  • action: 要调用的控制器操作。

  • method: 用于发送 HTTP 请求的请求方法。可能的值为 GETPOSTPATCHPUTDELETEHEAD。默认为 GET。可以是符号。

  • params: 您要传递的 HTTP 参数的哈希值。这可能是 nil

  • body: 具有适当编码的字符串(application/x-www-form-urlencodedmultipart/form-data)的请求主体。

  • session: 要存储在会话中的参数的哈希值。这可能是 nil

  • flash: 要存储在闪存中的参数的哈希值。这可能是 nil

  • format: 请求格式。默认为 nil。可以是字符串或符号。

  • as: 内容类型。默认为 nil。必须是与 MIME 类型相对应的符号。

调用 create 操作并发送两个参数的示例

process :create,
  method: 'POST',
  params: {
    user: { name: 'Gaurish Sharma', email: '[email protected]' }
  },
  session: { user_id: 1 },
  flash: { notice: 'This is flash message' }

要模拟 GETPOSTPATCHPUTDELETEHEAD 请求,建议分别使用 getpostpatchputdeletehead 方法,这将使测试更具表现力。

不建议在同一测试中进行多次请求。在一个请求中设置的实例变量不会保留到下一个请求,但不能保证所有 Rails 内部状态都将重置。对于在同一测试中进行多次请求,建议使用 ActionDispatch::IntegrationTest

请注意,不会验证请求方法。

# File actionpack/lib/action_controller/test_case.rb, line 504
def process(action, method: "GET", params: nil, session: nil, body: nil, flash: {}, format: nil, xhr: false, as: nil)
  check_required_ivars
  @controller.clear_instance_variables_between_requests

  action = +action.to_s
  http_method = method.to_s.upcase

  @html_document = nil

  cookies.update(@request.cookies)
  cookies.update_cookies_from_jar
  @request.set_header "HTTP_COOKIE", cookies.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, cookies, xhr)
end

put(action, **args)

使用给定的参数模拟 PUT 请求并设置/发送响应。有关更多详细信息,请参见 get

# File actionpack/lib/action_controller/test_case.rb, line 449
def put(action, **args)
  process(action, method: "PUT", **args)
end

query_parameter_names(generated_extras)

# File actionpack/lib/action_controller/test_case.rb, line 552
def query_parameter_names(generated_extras)
  generated_extras[1] + [:controller, :action]
end

setup_controller_request_and_response()

# File actionpack/lib/action_controller/test_case.rb, line 556
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