Commit Graph

15828 Commits

Author SHA1 Message Date
Adrianna Chang
2401b336fb
Use expected casing for x-cascade headers in router
This commit changes the router to use the expected casing for the
x-cascade header: in Rack 2, this is mixed-case, and in Rack 3, this is
lower case.

This also fixes https://github.com/rails/rails/issues/47096.
2023-07-28 16:17:08 -04:00
Adrianna Chang
9d840a1719
Make ActionDispatch::SSL compatible with Rack 3.0
Rack 3 now allows response header values to be an Array when handling
multiple values. Newline encoded headers are no longer supported.

This commit updates `ActionDispatch::SSL#flag_cookies_as_secure!` to
be Rack-3 compliant by setting the `set-cookie` header to an Array
rather than a newline-separated String if the current Rack version is
3+.

Additionally, this commit adds `Rack::Lint` to the Rack app in the
middleware test suite so that we can ensure all of the tests are
compliant with the Rack SPEC.
2023-07-28 14:23:25 -04:00
Eileen M. Uchitelle
43be5c4dc4
Merge pull request #48839 from skipkayhil/hm-rack-lint-test-request
Fix TestRequest coercing SERVER_PORT to be an int
2023-07-28 14:08:47 -04:00
Guillermo Iguaran
1788f67431
Merge pull request #48812 from nunosilva800/ns-rack-lint-content-security-policy-middleware
Add Rack::Lint to ContentSecurityPolicy::Middleware tests
2023-07-28 10:27:26 -07:00
Guillermo Iguaran
0a39604161
Merge pull request #48805 from skipkayhil/hm-rack-lint-request-id
Add Rack::Lint to RequestId tests
2023-07-28 10:25:50 -07:00
Hartley McGuire
70335e0793
Fix TestRequest coercing SERVER_PORT to be an int
In both Rack 2 and Rack 3, all headers must be strings. SERVER_PORT has
an additional requirement that it must be an Integer (represented as a
string).

When using #port= on a TestRequest, the value passed has been coerced
into an integer since it was [introduced][1]. Since this is explicitly
incorrect per both Rack 2 and Rack SPEC, the coercion is removed.

This does have the potential to change the value for users who are
checking TestRequest#headers directly, but if they are using
Request#port the value will not change because #port also coerces values
to ints.

[1]: 61960e7b37767140e9af68bd5373e06dce08492d
2023-07-28 13:02:27 -04:00
Nuno Silva
04c61163bf
Add Rack::Lint to ActionDispatch::ServerTiming tests
To ensure Rails is and remains compliant with [the Rack 3
spec](6d16306192/UPGRADE-GUIDE.md)
we can add `Rack::Lint` to the Rails middleware tests.

This adds additional test coverage to `ActionDispatch::ServerTiming` to
validate that its input and output follow the Rack SPEC.

The `Server-Timing` header definition was moved to
`ActionDispatch::Constants` and is now downcased to match the Rack 3
SPEC.

The tests that rely on a `Concurrent::CyclicBarrier` ("events are
tracked by thread") were changed since passing the required proc in the
env is not compatible with the SPEC:

```
Rack::Lint::LintError: env variable proc has non-string value
```

The same can be achieved by invoking the proc as a child Rack app.
2023-07-28 15:24:32 +00:00
Hartley McGuire
b2da0053aa
Add Rack::Lint to RequestId tests
This adds additional test coverage to RequestId to validate that its
input and output follow the Rack SPEC.

In this case, the only changes necessary were to the Request tests. This
is due to the fact that the Request and Response tests use different
classes for their Response headers. The Response tests simulate a Rails
app, where the Response headers will be a Rack::Headers object for
compatbility with both Rack 2 and 3. However, since the Request tests
are only using the Hash returned by the test app, the tests must use a
downcased header to support both Rack 2 and Rack 3.
2023-07-28 10:29:31 -04:00
Eileen M. Uchitelle
dda937fa62
Merge pull request #48819 from skipkayhil/hm-doc-integration-tweaks
Add and remove some links in IntegrationTest docs [ci skip]
2023-07-28 08:54:53 -04:00
Eileen M. Uchitelle
924a371e38
Merge pull request #48788 from ylecuyer/fix-selenium-tests-yle
Fix: Do not execute selenium driver_path if it is a string.
2023-07-28 08:53:25 -04:00
Nuno Silva
d1381dc654
Add Rack::Lint to ContentSecurityPolicy::Middleware tests
To ensure Rails is and remains compliant with [the Rack 3
spec](6d16306192/UPGRADE-GUIDE.md)
we can add `Rack::Lint` to the Rails middleware tests.

This adds additional test coverage to
`ContentSecurityPolicy::Middleware` to validate that its input and
output follow the Rack SPEC.

The changes made are because of:
- [Response Headers must be lower case](6d16306192/UPGRADE-GUIDE.md (response-headers-must-be-lower-case))

Added tests to ensure that CSP headers set by an app are not overridden,
regardless of the casing.
An example of this is Sidekiq: https://github.com/sidekiq/sidekiq/blob/b3225ce/lib/sidekiq/web/application.rb#L353
2023-07-28 09:37:23 +00:00
Guillermo Iguaran
ff232b1190 Move X-Request-Id header name to ActionDispatch::Constants 2023-07-27 16:03:52 -07:00
Guillermo Iguaran
5b45803984 Use constants defined in ActionDispatch::Constants instead of conditional assignments 2023-07-27 15:21:18 -07:00
Guillermo Iguaran
1fd79abb54 Define constants for headers in ActionDispatch::Constants to avoid conditional checks around multiple classes 2023-07-27 15:20:33 -07:00
Guillermo Iguaran
71ce2fd309
Merge pull request #48825 from nunosilva800/ns-rack-lint-executor
Add Rack::Lint to ActionDispatch::Executor tests
2023-07-27 14:43:00 -07:00
Yoann Lecuyer
bd8a6778a0 Fix: Do not execute selenium driver_path if it is a string. 2023-07-27 22:57:49 +02:00
Guillermo Iguaran
034cae80a9
Merge pull request #48818 from skipkayhil/hm-rack-list-permissions-policy
Add Rack::Lint to PermissionsPolicy tests
2023-07-27 13:56:03 -07:00
Eileen M. Uchitelle
c9a104008f
Merge pull request #48832 from skipkayhil/hm-rack-lint-debug-locks
Add Rack::Lint to DebugLocks tests
2023-07-27 16:51:53 -04:00
Eileen M. Uchitelle
6f396113d0
Merge pull request #48810 from nunosilva800/ns-rack-lint-callbacks
Add Rack::Lint to ActionDispatch::Callbacks tests
2023-07-27 16:51:20 -04:00
Hartley McGuire
fe5eb3d0fb
Add Rack::Lint to DebugLocks tests
This adds additional test coverage to HostAuthorization to validate that
its behavior conforms to Rack SPEC.

This fixes the following two issues in the reponse returned by
DebugLocks:
- Rack::Lint::Error: uppercase character in header name
  Content-{Type/Length}
- Rack::Lint::Error: a header value must be a String or Array of
  Strings, but the value of 'content-length' is an Integer
2023-07-27 16:33:41 -04:00
Guillermo Iguaran
d835023f1b
Merge pull request #48831 from skipkayhil/hm-rack-lint-static
Add Rack::Lint to Static tests
2023-07-27 13:26:28 -07:00
Guillermo Iguaran
4b3172035c
Merge pull request #48813 from skipkayhil/hm-rack-lint-actionable-actionable-exceptions
Add Rack::Lint to ActionableExceptions tests
2023-07-27 13:22:47 -07:00
Guillermo Iguaran
546dad9904
Merge pull request #48829 from nunosilva800/ns-rack-lint-middleware-stack
Add Rack::Lint to ActionDispatch::MiddlewareStack tests
2023-07-27 13:12:42 -07:00
Guillermo Iguaran
1d34845e3f
Merge pull request #48811 from nunosilva800/ns-rack-lint-assume-ssl
Add Rack::Lint to AssumeSSL middleware tests
2023-07-27 12:56:44 -07:00
Guillermo Iguaran
3d3585bd5e
Merge pull request #48814 from skipkayhil/hm-rack-lint-host-authorization
Add Rack::Lint to HostAuthorization tests
2023-07-27 12:49:09 -07:00
Hartley McGuire
b580df616b
Add Rack::Lint to Static tests
This adds additional test coverage to Static to validate that its
behavior conforms to the Rack SPEC.

The test changes are just downcasing headers where appropriate:
- the Static `headers` params is purely user configured headers, so its
  reasonable to expect these shoud be correct for an application's Rack
  version
- header assertions can use downcased headers because Rack::MockRequest
  returns a Rack::Response, which uses Rack::Headers internally (so
  either casing will work)

Additionally, the unconditionally downcased headers in the Static
middleware were updated to be conditional based on the Rack version to
ensure that this middleware remains fully compatible with other Rack 2
middleware.
2023-07-27 15:48:43 -04:00
Nuno Silva
180cd9f5ac
Add Rack::Lint to ActionDispatch::MiddlewareStack tests
To ensure Rails is and remains compliant with [the Rack 3 spec](6d16306192/UPGRADE-GUIDE.md) we can add `Rack::Lint` to the Rails middleware tests.

This adds additional test coverage to `ActionDispatch::MiddlewareStack` to validate that its input and output follow the Rack SPEC.

In this case, no changes are required, and the additional test
will ensure this middleware remains compliant with the Rack SPEC.
2023-07-27 17:24:08 +00:00
Hartley McGuire
f880da0f24
Refactor StaticTests to use single app builder
This commit refactors the StaticTests class in preparation for adding
Rack::Lint to the tests.

The first change is inlining the StaticTests module into the StaticTest
class. It was originally extracted into a module when Static was
[changed][1] to support passing multiple root paths, but support for
multiple paths has since been [removed][2].

The second change is to move all Rack App creation into a single method.
This will make it extremely easy to add Rack::Lint to the App in a
followup commit.

[1]: 401cd97923fb52c8f8c458b8cb276b338e0b20f3
[2]: d5ad92ced1786b742c3ecce3cb60d851c7200bc9
2023-07-27 12:10:32 -04:00
Nuno Silva
41365ae953
Add Rack::Lint to ActionDispatch::Executor tests
To ensure Rails is and remains compliant with [the Rack 3
spec](6d16306192/UPGRADE-GUIDE.md)
we can add `Rack::Lint` to the Rails middleware tests.

This adds additional test coverage to `ActionDispatch::Executor` to
validate that its input and output follow the Rack SPEC.

This also removes some tests that were asserting the body object
passed to `ActionDispatch::Executor` and not the Rack SPEC.
See also https://github.com/rack/rack/issues/2100.
2023-07-27 15:38:06 +00:00
Adrianna Chang
cef3109856
Add ActionDispatch::Cookies middleware test with Rack::Lint
This adds an additional test to the ActionDispatch::Cookies middleware
test suite to ensure that the middleware sets the expected cookie header
when the request contains a cookie jar. Additionally, the test wraps the
Cookies middleware in Rack::Lint to ensure that ActionDispatch::Cookies
complies with the Rack SPEC.
2023-07-27 11:18:47 -04:00
Hartley McGuire
34947521d9
Add and remove some links in IntegrationTest docs
Add direct links to #get, #post, #parsed_body, and #open_session.

Remove links to Session when already on the Session page.
2023-07-26 18:14:07 -04:00
Hartley McGuire
4991525abb
Add Rack::Lint to PermissionsPolicy tests
This adds additional test coverage to PermissionsPolicy::Middleware to
validate that it conforms to the Rack SPEC.

The only changes necessary were to use the appropriate header casing for
Content-Type and Feature-Policy. Since this was the only usage of the
CONTENT_TYPE constant, I opted to remove it, but I can replace it with a
DeprecatedConstantProxy if that's more desirable.
2023-07-26 13:34:14 -04:00
Hartley McGuire
0c92013158
Add Rack::Lint to ActionableExceptions tests
This adds additional test coverage to ActionableExceptions to validate
that its behavior conforms to the Rack SPEC.

The changes neccesary were to ensure that Response headers are downcased
when using Rack 3. For Content-Type and Content-Length, this is trivial
because Rack provides constants who's casing is dependent on the version
(Rack 2 is mixed, and Rack 3 is downcased). Since Rack does not include
a LOCATION constant, the Response::LOCATION constant was updated to
have a downcased value when using Rack 3.

Additionally, there was some missing coverage for invalid redirect URLs
which was addressed as well.
2023-07-26 10:13:57 -04:00
Hartley McGuire
37522f1596
Add Rack::Lint to HostAuthorization tests
This adds additional test coverage to HostAuthorization to validate that
its behavior conforms to the Rack SPEC.

By using Rack:: constants for Content-Type and Content-Length, we are
able to use the "correct" versions of the headers for applications using
each Rack version.

Additionally, two tests had to be updated that use an ipv6 address
without brackets in the HOST header because Rack::Lint warned that these
addresses were not valid HOST values. Rack::Lint checks HOST headers using
`URI.parse("http://#{HOST}/")`, and from what I could find, this
requirement follows RFC 3986 Section 3.2.2:

```
host        = IP-literal / IPv4address / reg-name
IP-literal = "[" ( IPv6address / IPvFuture  ) "]"
IPvFuture  = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" )
```
2023-07-26 09:50:06 -04:00
Nuno Silva
df2616e20b
Add Rack::Lint to AssumeSSL middleware tests
To ensure Rails is and remains compliant with [the Rack 3
spec](6d16306192/UPGRADE-GUIDE.md)
we can add `Rack::Lint` to the Rails middleware tests.

There was no test file for ActionDispatch::AssumeSSL, so this change
adds one and validating that its input and output follow the Rack SPEC.
2023-07-26 11:08:43 +00:00
Nuno Silva
425decee6f
Add Rack::Lint to ActionDispatch::Callbacks tests
This adds additional test coverage for ActionDispatch::Callbacks by
validating that its input and output follow the Rack SPEC.

The `"rack.input" => StringIO.new("")` header value raised the following error:

```
Rack::Lint::LintError: rack.input #<StringIO:0x00007fd7513fe550> does not have ASCII-8BIT as its external encoding
```

Since this header is not required for the test, it is now removed.
2023-07-26 08:52:23 +00:00
Ufuk Kayserilioglu
c2b195e1e3
Change load error messages to use Kernel#warn instead of $stderr.puts
When development tools try to load Rails components, they sometimes end up loading files that will error out since a dependency is missing. In these cases, the tooling can catch the error and change its behaviour.

However, since the warning is printed directly to `$stderr`, the tooling cannot catch and suppress it easily, which ends up causing noise in the output of the tool.

This change makes Rails print these warnings using `Kernel#warn` instead, which can be suppressed by the tooling.
2023-07-21 00:38:12 +03:00
Samuel Williams
8fbf70c889
Improve cookie attribute assertions. 2023-07-19 15:36:57 +12:00
Samuel Williams
b505e2358c
The JavaScript mime-type was updated in Rack 3.1 to text/javascript. 2023-07-19 15:36:57 +12:00
Samuel Williams
56c416e7c3
The request rack.input is optional. 2023-07-19 15:36:57 +12:00
Henrik Nyh
cf166fb13c Doc and spec cookies.delete returning value 2023-07-12 12:08:35 +01:00
Kamil Gwóźdź
2c3504bdf1
AbstractController#internal_methods: ignore action_methods
xref https://github.com/rails/rails/pull/48559#issuecomment-1624321279
2023-07-09 21:05:58 +02:00
Guillermo Iguaran
1c0aeed2fb
Merge pull request #48575 from skipkayhil/hm-config-exception-level
Make the log level in DebugExceptions configurable
2023-06-27 10:17:45 -07:00
Xavier Noria
9294a55187 Fix indentation in ActionDispatch::Routing::RouteSet::Dispatcher 2023-06-27 16:15:09 +02:00
Carlos Antonio da Silva
d9af9f1023 Avoid creating match object when checking for illegal header value
We can use `match?` to check against the illegal header value regexp,
since we don't need the match data result.
2023-06-27 09:40:35 -03:00
Guillermo Iguaran
10b4bd597f
Merge branch 'main' into hm-config-exception-level 2023-06-26 19:07:08 -07:00
John Hawthorn
f1cdfc037f Fix rubocop warning 2023-06-26 15:17:43 -07:00
Zack Deveau
69e37c84e3 Added check for illegal HTTP header value in redirect_to
The set of legal characters for an HTTP header value is described
in https://datatracker.ietf.org/doc/html/rfc7230\#section-3.2.6.

This commit adds a check to redirect_to that ensures the
provided URL does not contain any of the illegal characters.

Downstream consumers of the resulting Location response header
may accidentally remove the header if it does not comply with the RFC
resulting in unexpected behavior.

Related to [CVE-2023-28362].
2023-06-26 14:51:39 -07:00
Hartley McGuire
519577ecc3
Make the log level in DebugExceptions configurable
This middleware has been logging at a FATAL level since the first
[commit][1] in Rails (the code originally lived in
actionpack/lib/action_controller/rescue.rb). However, FATAL is
documented in the Ruby Logger [docs][2] as being for "An unhandleable
error that results in a program crash.", which does not really apply to
this case since DebugExceptions is handling the error. A more
appropriate level would be ERROR, which the Ruby Logger docs describe as
"A handleable error condition."

This commit introduces a new configuration for the DebugExceptions log
level so that new apps will have it set to ERROR by default and ERROR
can eventually be made the default.

[1]: db045dbbf60b53dbe013ef25554fd013baf88134
[2]: https://ruby-doc.org/3.2.1/stdlibs/logger/Logger/Severity.html
2023-06-25 23:11:39 -04:00
zzak
dd89f600f7
🔗 Remove RDoc auto-link from Rails module everywhere 2023-06-23 10:49:30 +09:00
Guillermo Iguaran
c20f8eb6b6
Merge pull request #48471 from mdh/improve-naming-of-local-secret-generation
Improve naming of local secret generation
2023-06-21 00:04:32 -07:00
Mike Dalessio
2362f57cd8
Update Action View and Action Dispatch to use HTML5 when available 2023-06-19 16:34:33 -04:00
Marek de Heus
f75934f80d Improve naming of local secret generation
For local environments (def and test), we create a secret file. However this file is called development_secret.txt, which imho is confusing as it is used by both dev and test environments.

This commit renames the file and related code to local_secret.
2023-06-19 11:59:17 +02:00
zzak
9cfeedb718
💅 Wrap the AC::Meta::Streaming doc links
This way they look good on page, and in your editor.
2023-06-19 09:33:36 +09:00
zzak
fd2ac22b54
Fixes to AC::Streaming docs
* Unlink the Rails module automatically
* Inline the documentation links for unicorn and passenger
* Use RDoc fixed-width for passenger_buffer_response instead of markdown
* TIL: about linking to headings, so fixed that for "Middlewares" section
2023-06-16 16:36:53 +09:00
Guillermo Iguaran
84540a6289
Merge pull request #48455 from rails/action_controller-streaming-body
Remove dependency on deprecated Rack::Chunked
2023-06-12 15:55:18 -07:00
Guillermo Iguaran
af68c31d7f Remove dependency on deprecated Rack::Chunked
Import the used Rack::Chunked::Body as private AC::Streaming::Body
class and use it instead.
2023-06-11 20:48:37 -07:00
Joé Dupuis
7c3fc67c31 Test respond_to? :to_ary directly on RackBody
RackBody is the final body object returned by the Rack app
(`Rails.application`). This test that it conforms to the spec
instead of testing on the underlying response.
2023-06-11 19:42:22 -07:00
Guillermo Iguaran
0174283901 Undefine #to_ary in ActionController::Live::Buffer
ActionDispatch::Response delegates #to_ary to the internal ActionDispatch::Response::Buffer,
defining #to_ary is an indicator that the response body can be buffered and/or cached by
Rack middlewares, this is not the case for Live responses so we undefine it for this Buffer subclass.

Puma raises an exception trying to call #to_ary in Live::Buffer
expecting it to return an array if defined:

188f5da192/lib/puma/request.rb (L183-L186)
2023-06-11 04:07:48 -07:00
Joé Dupuis
45c90b7bd3 Rack spec requires mutable headers
The rack spec requires the header object to be an unfrozen hash.
c8e9822183/SPEC.rdoc (L240)

Rack::ETag was buffering and making a copy of the response,
so the freeze was not effective anyway.

Plus we are freezing the hash too early, preventing middlewares
from modifying it. It causes crash with gems like rack-livereload.
I started having crashes on some pages (like the internal
http://localhost:3000/rails/info/routes) because of rack-livereload
hitting the frozen hash after the rack 3 upgrade.

Also we're not consistent with the protection. We're not preventing
users from adding cookies. The cookie jar is already flushed,
therefore it doesn't try to change the headers and never triggers the
frozen hash error.
2023-06-11 01:32:31 -07:00
Hartley McGuire
f7c6e2c8aa
Fix duplicate Content-Type header with Rack 2
Previously, `ActionDispatch::Static` would always merge a "content-type"
header into the headers returned from `Rack::Files`. However, this would
potentially lead to both a "Content-Type" header and a "content-type"
header when using Rack 2.

This commit fixes the issue by using `Rack::CONTENT_TYPE` to determine
which version of the header to set in `ActionDispatch::Static`. In both
versions of Rack it will use the same version of the header as
`Rack::Files`.

The tests added have to use `@app.call` instead of
`get()`/`Rack::MockRequest` because `Rack::Response` actually does the
correct thing already by using `Rack::Util::HeaderHash` so it covers up
the issue in tests.
2023-06-09 18:49:37 -04:00
Joé Dupuis
efce114dde Force turbo reload on error.
Turbo frames on turbo-rails 1.4 (current default in Rails 7) don't
break out of the frame to load the error response from the DebugView
middleware like they used to. It requires the turbo-visit-control meta set to reload or it
fails silently.
2023-06-06 22:01:35 -07:00
Andrew Novoselac
37f3ce9930 Create a class level #with_routing helper.
Before each test, the helper creates a new RouteSet instance and yields it to the passed black. The routes are then reset after the test is completed.
2023-06-06 14:13:24 -04:00
Rafael Mendonça França
0e1800396d
Merge pull request #48397 from ThunderKey/improve-mime-regex
improve quoted parameters in mime types
2023-06-05 12:56:17 -04:00
Nicolas Erni
1071a39020 improve quoted parameters in mime types
Accept headers allow parameters to be passed. They can contain quotes
that need to be handled differently. These quoted strings can contain
commas, which are not considered as delimiters of accept headers.

Additionally, all parameters before the q-parameter should be used to
lookup the media-type as well. If no media-type with the parameters is
found, a fallback is introduced to the media-type without any parameters
to keep the same functionality as before.

Fix #48052
2023-06-05 12:53:08 +02:00
Petrik de Heus
a84ef12221
Merge pull request #48383 from p8/fix/link-to-cookies
Fix link to ActionController::Cookies#cookies [ci-skip]
2023-06-02 18:13:54 +02:00
Petrik
f492d51795 Fix link to ActionController::Cookies#cookies
The `cookies` method was not defined on ActionController::Base making the
permalink to the method not work.
Changing it to ActionController::Cookies make the reference a link.
2023-06-02 16:53:38 +02:00
Marek de Heus
39156c8812
Update actionpack/lib/action_controller/metal.rb
Co-authored-by: Petrik de Heus <petrik@deheus.net>
2023-06-02 15:10:49 +02:00
Marek de Heus
0da0fc8979 Add missing docs for request.session 2023-06-02 15:04:21 +02:00
Jeremy Beker
c34d1f0a68
Base case with our checks last in conditional 2023-05-30 20:49:45 +00:00
Jeremy Beker
d00843aa13
Test case with our checks first in conditional 2023-05-30 20:49:44 +00:00
Jeremy Beker
f1889f139d
Indentation correction via rubocop. 2023-05-30 20:49:41 +00:00
Jason Meller
1904a3031a
Re-order conditional for maybe better perf 2023-05-30 20:48:11 +00:00
Jason Meller
afb847f1b7
Fix spelling error 2023-05-30 20:48:08 +00:00
Jason Meller
1bca0dc586
PR feedback 2023-05-30 20:47:52 +00:00
Jason Meller
4370293a68
Implement PR suggestions 2023-05-30 20:47:30 +00:00
Jason Meller
e388ebe0f2
Attempt to fix rubocop warnings 2023-05-30 20:47:29 +00:00
Jason Meller
a78d3e3207
Enable bind_params option in url_for helper
The url_for helper now supports a new option called `bind_params`.
This is very useful in situations where you only want to add a required
param that is part of the route's URL but for other route not append an
extraneous query param.

Given the following router...
```ruby
Rails.application.routes.draw do
  scope ":account_id" do
    get 'dashboard' => 'pages#dashboard', as: :dashboard
    get 'search/:term' => 'search#search', as: :search
  end
  delete 'signout' => 'sessions#destroy', as: :signout
end
```

And given the following `ApplicationController`
```ruby
  class ApplicationController < ActionController::Base
    def default_url_options
      { bind_params: { account_id: "foo" } }
    end
  end
```

The standard URLHelpers will now behave as follows:

```ruby
dashboard_path # => /foo/dashboard
dashboard_path(account_id: "bar") # => /bar/dashboard
signout_path # => /signout
signout_path(account_id: "bar") # => /signout?account_id=bar
search_path("quin") # => /foo/search/quin
```
2023-05-30 20:47:26 +00:00
Rafael Mendonça França
7eeaadb7fc
Merge pull request #48199 from JoeDupuis/remove-url-rewriter-tests
Remove UrlRewriter tests
2023-05-30 16:03:43 -04:00
Rafael Mendonça França
54de0cb2ee
Merge pull request #48293 from flavorjones/flavorjones-support-html5-sanitizer
Update Action View to use HTML5 standards-compliant sanitizers
2023-05-30 16:00:13 -04:00
zzak
7a014c07e2
Add a tiny more detail about the middleware stack 2023-05-29 16:43:34 +09:00
zzak
2b637b6850
Fix RDoc autolinks in ActionController::Metal 2023-05-29 16:01:00 +09:00
zzak
722d4f6582
Unlink Rails constant from READMEs 2023-05-29 15:14:44 +09:00
zzak
7765a693ee
Fix links for Renderers.add and Renderers.remove 2023-05-29 14:24:10 +09:00
Mike Dalessio
500ccaaeea
Update dependency on rails-html-sanitizer to ~>1.6
for HTML5 sanitizer support
2023-05-28 14:00:35 -04:00
Joé Dupuis
acdfef2097 Remove UrlRewriter tests
UrlRewriter has been deleted in 2010 e68bfaf1fe1a7890a67af6f444281185f507cf9e
The url_rewriter_test is really testing url_for. Most of the tests are
identical.

This also move a couple tests that were not present in
`url_for_test.rb`.
2023-05-27 17:01:21 -07:00
Aaron Patterson
861795ed92
Refactor error highlight detection
Before this commit, some calls to render were hard-coding error
highlight as "not available".  This was causing some error pages to show
the "you should install error highlight" message even though the right
version of error highlight was installed.

This commit adds a delegate method to the DebugView class so that the
debugging related templates can just ask whether or not error highlight
is available via a method call.  That way we don't need to rely on
passing locals everywhere.  The down side is that this change requires
all "rescue" templates to be rendered within the context of a DebugView
class (but I think that's OK)
2023-05-25 09:27:35 -07:00
zzak
073269c9b9
Merge pull request #48288 from zzak/rdoc-fixed-width-namespaces
Use short-form fixed-width RDoc form for namespaces
2023-05-25 07:14:47 +09:00
zzak
e3c73fd183
Replace all occurrences of '<tt>(\w+::\w+)</tt>' with '+$1+'
E.g.:

* <tt>ActiveRecord::Base</tt> -> +ActiveRecord::Base+

Co-authored-by: Hartley McGuire <skipkayhil@gmail.com>
Co-authored-by: Petrik de Heus <petrik@deheus.net>
2023-05-25 06:52:32 +09:00
Rafael Mendonça França
61accb7dea
Merge pull request #45867 from jdufresne/show-rescuable-exceptions
Make the test environment show rescuable exceptions in responses
2023-05-24 13:45:45 -04:00
Rafael Mendonça França
5e34a9297b
Test behavior in unit test 2023-05-24 17:01:38 +00:00
Zeke Gabrielse
7d8cb154d4 Fix issue with empty values within delimited authorization header
When the Authorization header would contain a set of delimited values
where one or more values were blank, an ArgumentError would be raised.
This resolves that by removing blank values during parsing of the
Authorization header.
2023-05-22 15:27:03 -05:00
Jonathan Hefner
117c2b47b3 Add missing comma [ci-skip] 2023-05-21 16:24:02 -05:00
Guillermo Iguaran
b44b881112 Register Mime type for image/webp automatically.
Although we rarely update this list now WebP can be considered
popular enough to be included.
2023-05-20 18:30:26 -07:00
Hartley McGuire
d028c14b03
Link rescue_from from modules including Rescuable
Also add some additional words to make it clear that the modules also
implement handling the exceptions configured with rescue_from, because
it was not immediately clear that happened without reading the code.
2023-05-18 12:54:16 -04:00
Jonathan Hefner
4d240e0da3
Merge pull request #48251 from skipkayhil/hm-rm-explicit-alias-doc
Remove explicit "aliased as" documentation [ci skip]
2023-05-18 10:17:14 -05:00
Hartley McGuire
b3c6a9adf0
Remove explicit "aliased as" documentation
Most of these are redundant because rdoc handles these itself, but
`titlecase` on `ActiveSupport::Inflector` does not exist so that one is
just incorrect.
2023-05-18 11:04:04 -04:00
Hartley McGuire
5cd144e7fb
Update and fixup ActionController::Parameters docs
- Small wording tweaks for grammar or consistency
- Add links to methods/classes when possible, and fix some cases where
  there were links but shouldn't be (`API`, `Testing`, etc.)
- Fixed `call-seq` for `each_key`
- Change `has_key?`, `key?`, and `member?` to aliases instead of
  delegates so that they are documented as aliases (This is how the
  methods are documented for Hash in Ruby)
- Remove explicit "also aliased as" docs because rdoc does this already
- Add `:nodoc:` to `EMPTY_ARRAY` and `EMPTY_HASH` constants since these
  are internal optimizations
2023-05-18 10:35:42 -04:00
Petrik
72c5a69b5f Clarify X-Cascade header in ShowExceptions middleware [ci-skip]
Clarify that the middleware looks at the `X-Cascade` header in the
response.

Co-authored-by: Hartley McGuire <skipkayhil@gmail.com>
2023-05-17 17:19:10 +02:00
Jon Dufresne
e28f147329 Make the test environment show rescuable exceptions in responses
Background
----------

During integration tests, it is desirable for the application to respond
as closely as possible to the way it would in production. This improves
confidence that the application behavior acts as it should.

In Rails tests, one major mismatch between the test and production
environments is that exceptions raised during an HTTP request (e.g.
`ActiveRecord::RecordNotFound`) are re-raised within the test rather
than rescued and then converted to a 404 response.

Setting `config.action_dispatch.show_exceptions` to `true` will make the
test environment act like production, however, when an unexpected
internal server error occurs, the test will be left with a opaque 500
response rather than presenting a useful stack trace. This makes
debugging more difficult.

This leaves the developer with choosing between higher quality
integration tests or an improved debugging experience on a failure.

I propose that we can achieve both.

Solution
--------

Change the configuration option `config.action_dispatch.show_exceptions`
from a boolean to one of 3 values: `:all`, `:rescuable`, `:none`. The
values `:all` and `:none` behaves the same as the previous `true` and
`false` respectively. What was previously `true` (now `:all`) continues
to be the default for non-test environments.

The new `:rescuable` value is the new default for the test environment.
It will show exceptions in the response only for rescuable exceptions as
defined by `ActionDispatch::ExceptionWrapper.rescue_responses`. In the
event of an unexpected internal server error, the exception that caused
the error will still be raised within the test so as to provide a useful
stack trace and a good debugging experience.
2023-05-17 06:30:28 -07:00