mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
ea5f509643
Since #35709, `Response#conten_type` returns only MIME type correctly.
It is a documented behavior that this method only returns MIME type, so
this change seems appropriate.
39de7fac05/actionpack/lib/action_dispatch/http/response.rb (L245-L249)
But unfortunately, some users expect this method to return all
Content-Type that does not contain charset. This seems to be breaking
changes.
We can change this behavior with the deprecate cycle.
But, in that case, a method needs that include Content-Type with
additional parameters. And that method name is probably the
`content_type` seems to properly.
So I changed the new behavior to more appropriate `media_type` method.
And `Response#content_type` changed (as the method name) to return Content-Type
header as it is.
Fixes #35709.
[Rafael Mendonça França & Yuuji Yaginuma ]
48 lines
1.1 KiB
Ruby
48 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "abstract_unit"
|
|
|
|
class LocalizedController < ActionController::Base
|
|
def hello_world
|
|
end
|
|
end
|
|
|
|
class LocalizedTemplatesTest < ActionController::TestCase
|
|
tests LocalizedController
|
|
|
|
setup do
|
|
@old_locale = I18n.locale
|
|
end
|
|
|
|
teardown do
|
|
I18n.locale = @old_locale
|
|
end
|
|
|
|
def test_localized_template_is_used
|
|
I18n.locale = :de
|
|
get :hello_world
|
|
assert_equal "Guten Tag", @response.body
|
|
end
|
|
|
|
def test_default_locale_template_is_used_when_locale_is_missing
|
|
I18n.locale = :dk
|
|
get :hello_world
|
|
assert_equal "Hello World", @response.body
|
|
end
|
|
|
|
def test_use_fallback_locales
|
|
I18n.locale = :"de-AT"
|
|
I18n.backend.class.include(I18n::Backend::Fallbacks)
|
|
I18n.fallbacks[:"de-AT"] = [:de]
|
|
|
|
get :hello_world
|
|
assert_equal "Guten Tag", @response.body
|
|
end
|
|
|
|
def test_localized_template_has_correct_header_with_no_format_in_template_name
|
|
I18n.locale = :it
|
|
get :hello_world
|
|
assert_equal "Ciao Mondo", @response.body
|
|
assert_equal "text/html", @response.media_type
|
|
end
|
|
end
|