方法
- A
- C
- H
- I
- P
- R
- U
常量
DEFAULT_ENV | = | Rack::MockRequest.env_for("/", "HTTP_HOST" => "test.host".b, "REMOTE_ADDR" => "0.0.0.0".b, "HTTP_USER_AGENT" => "Rails Testing".b, ) |
类公共方法
create(env = {}) 链接
使用默认的 env
值创建一个新的测试请求。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 17 def self.create(env = {}) env = Rails.application.env_config.merge(env) if defined?(Rails.application) && Rails.application env["rack.request.cookie_hash"] ||= {}.with_indifferent_access new(default_env.merge(env)) end
实例公共方法
accept=(mime_types) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 68 def accept=(mime_types) delete_header("action_dispatch.request.accepts") set_header("HTTP_ACCEPT", Array(mime_types).collect(&:to_s).join(",")) end
action=(action_name) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 48 def action=(action_name) path_parameters[:action] = action_name.to_s end
host=(host) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 32 def host=(host) set_header("HTTP_HOST", host) end
if_modified_since=(last_modified) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 52 def if_modified_since=(last_modified) set_header("HTTP_IF_MODIFIED_SINCE", last_modified) end
if_none_match=(etag) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 56 def if_none_match=(etag) set_header("HTTP_IF_NONE_MATCH", etag) end
path=(path) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 44 def path=(path) set_header("PATH_INFO", path) end
port=(number) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 36 def port=(number) set_header("SERVER_PORT", number) end
remote_addr=(addr) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 60 def remote_addr=(addr) set_header("REMOTE_ADDR", addr) end
request_method=(method) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 28 def request_method=(method) super(method.to_s.upcase) end
request_uri=(uri) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 40 def request_uri=(uri) set_header("REQUEST_URI", uri) end
user_agent=(user_agent) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 64 def user_agent=(user_agent) set_header("HTTP_USER_AGENT", user_agent) end