Skip to Content Skip to Search

class ActionDispatch::TestRequest

Inherits From

Constants

DEFAULT_ENV

Rack::MockRequest.env_for("/",
"HTTP_HOST"                => "test.host".b,
"REMOTE_ADDR"              => "0.0.0.0".b,
"HTTP_USER_AGENT"          => "Rails Testing".b,
)

Public class methods

create(env = {})

Permalink

Create a new test request with default env values.

Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 15
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

Public instance methods

accept=(mime_types)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 66
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)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 46
def action=(action_name)
  path_parameters[:action] = action_name.to_s
end

host=(host)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 30
def host=(host)
  set_header("HTTP_HOST", host)
end

if_modified_since=(last_modified)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 50
def if_modified_since=(last_modified)
  set_header("HTTP_IF_MODIFIED_SINCE", last_modified)
end

if_none_match=(etag)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 54
def if_none_match=(etag)
  set_header("HTTP_IF_NONE_MATCH", etag)
end

path=(path)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 42
def path=(path)
  set_header("PATH_INFO", path)
end

port=(number)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 34
def port=(number)
  set_header("SERVER_PORT", number)
end

remote_addr=(addr)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 58
def remote_addr=(addr)
  set_header("REMOTE_ADDR", addr)
end

request_method=(method)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 26
def request_method=(method)
  super(method.to_s.upcase)
end

request_uri=(uri)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 38
def request_uri=(uri)
  set_header("REQUEST_URI", uri)
end

user_agent=(user_agent)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_request.rb, line 62
def user_agent=(user_agent)
  set_header("HTTP_USER_AGENT", user_agent)
end

Definition files