diff options
author | Remo Fritzsche <dev@remofritzsche.com> | 2018-07-05 22:51:52 +0200 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2018-07-05 16:51:52 -0400 |
commit | a0061d2389a178b093f0d3f64f58236ffbe088e0 (patch) | |
tree | c13832bbb96ba827310e042e91987e2790384770 /actionpack/test | |
parent | 9ecbd64cd93af0c7efe3141e93f85e5c263e00d0 (diff) | |
download | rails-a0061d2389a178b093f0d3f64f58236ffbe088e0.tar.gz rails-a0061d2389a178b093f0d3f64f58236ffbe088e0.tar.bz2 rails-a0061d2389a178b093f0d3f64f58236ffbe088e0.zip |
Pass along arguments to underlying `get` method in `follow_redirect!` (#33299)
* Allow get arguments for follow_redirect
Now all arguments passed to `follow_redirect!` are passed to the
underlying `get` method. This for example allows to set custom headers
for the redirection request to the server.
This is especially useful for setting headers that may, outside of the
testing environment, be set automatically on every request, i.e. by a
web application firewall.
* Allow get arguments for follow_redirect
[Remo Fritzsche + Rafael Mendonça França]
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index 9cdf04b886..41812a82e1 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -349,6 +349,16 @@ class IntegrationProcessTest < ActionDispatch::IntegrationTest end end + def test_redirect_with_arguments + with_test_route_set do + get "/redirect" + follow_redirect! params: { foo: :bar } + + assert_response :ok + assert_equal "bar", request.parameters["foo"] + end + end + def test_xml_http_request_get with_test_route_set do get "/get", xhr: true |