2017-07-09 20:06:36 +08:00
# frozen_string_literal: true
2017-07-10 21:39:13 +08:00
2018-09-30 08:50:43 +08:00
require_relative " abstract_unit "
2016-08-07 00:03:25 +08:00
require " active_support/inflector "
2009-04-23 08:41:28 +08:00
2018-09-30 08:50:43 +08:00
require_relative " inflector_test_cases "
require_relative " constantize_test_cases "
2005-02-15 09:45:35 +08:00
2012-01-06 09:12:46 +08:00
class InflectorTest < ActiveSupport :: TestCase
2007-09-27 18:19:48 +08:00
include InflectorTestCases
2011-09-23 03:17:42 +08:00
include ConstantizeTestCases
2007-01-28 23:52:45 +08:00
2015-06-15 11:46:18 +08:00
def setup
# Dups the singleton before each test, restoring the original inflections later.
#
# This helper is implemented by setting @__instance__ because in some tests
# there are module functions that access ActiveSupport::Inflector.inflections,
# so we need to replace the singleton itself.
@original_inflections = ActiveSupport :: Inflector :: Inflections . instance_variable_get ( :@__instance__ ) [ :en ]
ActiveSupport :: Inflector :: Inflections . instance_variable_set ( :@__instance__ , en : @original_inflections . dup )
end
def teardown
ActiveSupport :: Inflector :: Inflections . instance_variable_set ( :@__instance__ , en : @original_inflections )
end
2005-03-26 21:20:47 +08:00
def test_pluralize_plurals
2008-06-04 02:32:53 +08:00
assert_equal " plurals " , ActiveSupport :: Inflector . pluralize ( " plurals " )
assert_equal " Plurals " , ActiveSupport :: Inflector . pluralize ( " Plurals " )
2005-03-26 21:20:47 +08:00
end
2007-09-23 02:34:43 +08:00
def test_pluralize_empty_string
2008-06-04 02:32:53 +08:00
assert_equal " " , ActiveSupport :: Inflector . pluralize ( " " )
2007-09-23 02:34:43 +08:00
end
2010-12-22 16:08:20 +08:00
2020-03-06 03:33:58 +08:00
def test_pluralize_with_fallback
I18n . stub ( :default_locale , :" en-GB " ) do
assert_equal " days " , ActiveSupport :: Inflector . pluralize ( " days " )
end
end
2016-12-31 11:58:52 +08:00
test " uncountability of ascii word " do
word = " HTTP "
2013-10-12 19:47:57 +08:00
ActiveSupport :: Inflector . inflections do | inflect |
2016-12-31 11:58:52 +08:00
inflect . uncountable word
2013-10-12 19:47:57 +08:00
end
2016-12-31 11:58:52 +08:00
assert_equal word , ActiveSupport :: Inflector . pluralize ( word )
assert_equal word , ActiveSupport :: Inflector . singularize ( word )
assert_equal ActiveSupport :: Inflector . pluralize ( word ) , ActiveSupport :: Inflector . singularize ( word )
ActiveSupport :: Inflector . inflections . uncountables . pop
end
test " uncountability of non-ascii word " do
word = " 猫 "
ActiveSupport :: Inflector . inflections do | inflect |
inflect . uncountable word
end
assert_equal word , ActiveSupport :: Inflector . pluralize ( word )
assert_equal word , ActiveSupport :: Inflector . singularize ( word )
assert_equal ActiveSupport :: Inflector . pluralize ( word ) , ActiveSupport :: Inflector . singularize ( word )
2013-10-12 19:47:57 +08:00
ActiveSupport :: Inflector . inflections . uncountables . pop
end
2010-12-01 02:48:25 +08:00
ActiveSupport :: Inflector . inflections . uncountable . each do | word |
define_method " test_uncountability_of_ #{ word } " do
assert_equal word , ActiveSupport :: Inflector . singularize ( word )
assert_equal word , ActiveSupport :: Inflector . pluralize ( word )
assert_equal ActiveSupport :: Inflector . pluralize ( word ) , ActiveSupport :: Inflector . singularize ( word )
end
end
2010-12-22 16:08:20 +08:00
2010-12-01 02:48:25 +08:00
def test_uncountable_word_is_not_greedy
2015-06-15 11:46:18 +08:00
uncountable_word = " ors "
countable_word = " sponsor "
2010-12-22 16:08:20 +08:00
2015-06-15 11:46:18 +08:00
ActiveSupport :: Inflector . inflections . uncountable << uncountable_word
2010-12-22 16:08:20 +08:00
2015-06-15 11:46:18 +08:00
assert_equal uncountable_word , ActiveSupport :: Inflector . singularize ( uncountable_word )
assert_equal uncountable_word , ActiveSupport :: Inflector . pluralize ( uncountable_word )
assert_equal ActiveSupport :: Inflector . pluralize ( uncountable_word ) , ActiveSupport :: Inflector . singularize ( uncountable_word )
2010-12-01 02:48:25 +08:00
2015-06-15 11:46:18 +08:00
assert_equal " sponsor " , ActiveSupport :: Inflector . singularize ( countable_word )
assert_equal " sponsors " , ActiveSupport :: Inflector . pluralize ( countable_word )
assert_equal " sponsor " , ActiveSupport :: Inflector . singularize ( ActiveSupport :: Inflector . pluralize ( countable_word ) )
2010-12-01 02:48:25 +08:00
end
2007-09-23 02:34:43 +08:00
2005-03-26 21:20:47 +08:00
SingularToPlural . each do | singular , plural |
2011-03-01 06:17:38 +08:00
define_method " test_pluralize_singular_ #{ singular } " do
2008-06-04 02:32:53 +08:00
assert_equal ( plural , ActiveSupport :: Inflector . pluralize ( singular ) )
assert_equal ( plural . capitalize , ActiveSupport :: Inflector . pluralize ( singular . capitalize ) )
2004-12-30 05:03:21 +08:00
end
end
2005-03-26 21:20:47 +08:00
SingularToPlural . each do | singular , plural |
2011-03-01 06:17:38 +08:00
define_method " test_singularize_plural_ #{ plural } " do
2008-06-04 02:32:53 +08:00
assert_equal ( singular , ActiveSupport :: Inflector . singularize ( plural ) )
assert_equal ( singular . capitalize , ActiveSupport :: Inflector . singularize ( plural . capitalize ) )
2004-12-30 05:03:21 +08:00
end
end
2011-03-01 06:17:38 +08:00
2011-02-08 10:39:46 +08:00
SingularToPlural . each do | singular , plural |
2011-03-01 06:17:38 +08:00
define_method " test_pluralize_plural_ #{ plural } " do
2011-02-08 10:39:46 +08:00
assert_equal ( plural , ActiveSupport :: Inflector . pluralize ( plural ) )
assert_equal ( plural . capitalize , ActiveSupport :: Inflector . pluralize ( plural . capitalize ) )
end
2012-02-25 07:06:17 +08:00
2012-01-27 16:20:13 +08:00
define_method " test_singularize_singular_ #{ singular } " do
assert_equal ( singular , ActiveSupport :: Inflector . singularize ( singular ) )
assert_equal ( singular . capitalize , ActiveSupport :: Inflector . singularize ( singular . capitalize ) )
end
end
2012-02-25 07:06:17 +08:00
2008-08-24 01:33:07 +08:00
def test_overwrite_previous_inflectors
2015-06-15 11:46:18 +08:00
assert_equal ( " series " , ActiveSupport :: Inflector . singularize ( " series " ) )
ActiveSupport :: Inflector . inflections . singular " series " , " serie "
assert_equal ( " serie " , ActiveSupport :: Inflector . singularize ( " series " ) )
2008-08-24 01:33:07 +08:00
end
2013-08-03 20:51:17 +08:00
MixtureToTitleCase . each_with_index do | ( before , titleized ) , index |
define_method " test_titleize_mixture_to_title_case_ #{ index } " do
assert_equal ( titleized , ActiveSupport :: Inflector . titleize ( before ) , " mixture \
to TitleCase failed for #{before}")
2005-10-20 04:20:11 +08:00
end
end
2016-08-07 20:27:47 +08:00
MixtureToTitleCaseWithKeepIdSuffix . each_with_index do | ( before , titleized ) , index |
define_method " test_titleize_with_keep_id_suffix_mixture_to_title_case_ #{ index } " do
assert_equal ( titleized , ActiveSupport :: Inflector . titleize ( before , keep_id_suffix : true ) ,
" mixture to TitleCase with keep_id_suffix failed for #{ before } " )
end
end
2004-12-30 05:03:21 +08:00
def test_camelize
CamelToUnderscore . each do | camel , underscore |
2008-06-04 02:32:53 +08:00
assert_equal ( camel , ActiveSupport :: Inflector . camelize ( underscore ) )
2004-12-30 05:03:21 +08:00
end
end
2008-08-22 20:31:13 +08:00
def test_camelize_with_lower_downcases_the_first_letter
2016-08-07 00:03:25 +08:00
assert_equal ( " capital " , ActiveSupport :: Inflector . camelize ( " Capital " , false ) )
2008-08-22 20:31:13 +08:00
end
2011-06-09 16:10:49 +08:00
def test_camelize_with_underscores
2016-08-07 00:03:25 +08:00
assert_equal ( " CamelCase " , ActiveSupport :: Inflector . camelize ( " Camel_Case " ) )
2011-06-09 16:10:49 +08:00
end
def test_acronyms
ActiveSupport :: Inflector . inflections do | inflect |
inflect . acronym ( " API " )
inflect . acronym ( " HTML " )
inflect . acronym ( " HTTP " )
inflect . acronym ( " RESTful " )
inflect . acronym ( " W3C " )
inflect . acronym ( " PhD " )
inflect . acronym ( " RoR " )
inflect . acronym ( " SSL " )
end
# camelize underscore humanize titleize
[
[ " API " , " api " , " API " , " API " ] ,
[ " APIController " , " api_controller " , " API controller " , " API Controller " ] ,
[ " Nokogiri::HTML " , " nokogiri/html " , " Nokogiri/HTML " , " Nokogiri/HTML " ] ,
[ " HTTPAPI " , " http_api " , " HTTP API " , " HTTP API " ] ,
[ " HTTP::Get " , " http/get " , " HTTP/get " , " HTTP/Get " ] ,
[ " SSLError " , " ssl_error " , " SSL error " , " SSL Error " ] ,
[ " RESTful " , " restful " , " RESTful " , " RESTful " ] ,
[ " RESTfulController " , " restful_controller " , " RESTful controller " , " RESTful Controller " ] ,
2014-09-06 03:26:25 +08:00
[ " Nested::RESTful " , " nested/restful " , " Nested/RESTful " , " Nested/RESTful " ] ,
2011-06-09 16:10:49 +08:00
[ " IHeartW3C " , " i_heart_w3c " , " I heart W3C " , " I Heart W3C " ] ,
[ " PhDRequired " , " phd_required " , " PhD required " , " PhD Required " ] ,
[ " IRoRU " , " i_ror_u " , " I RoR u " , " I RoR U " ] ,
[ " RESTfulHTTPAPI " , " restful_http_api " , " RESTful HTTP API " , " RESTful HTTP API " ] ,
2014-10-04 05:45:40 +08:00
[ " HTTP::RESTful " , " http/restful " , " HTTP/RESTful " , " HTTP/RESTful " ] ,
[ " HTTP::RESTfulAPI " , " http/restful_api " , " HTTP/RESTful API " , " HTTP/RESTful API " ] ,
[ " APIRESTful " , " api_restful " , " API RESTful " , " API RESTful " ] ,
2011-06-09 16:10:49 +08:00
# misdirection
[ " Capistrano " , " capistrano " , " Capistrano " , " Capistrano " ] ,
[ " CapiController " , " capi_controller " , " Capi controller " , " Capi Controller " ] ,
[ " HttpsApis " , " https_apis " , " Https apis " , " Https Apis " ] ,
[ " Html5 " , " html5 " , " Html5 " , " Html5 " ] ,
[ " Restfully " , " restfully " , " Restfully " , " Restfully " ] ,
[ " RoRails " , " ro_rails " , " Ro rails " , " Ro Rails " ]
] . each do | camel , under , human , title |
assert_equal ( camel , ActiveSupport :: Inflector . camelize ( under ) )
assert_equal ( camel , ActiveSupport :: Inflector . camelize ( camel ) )
assert_equal ( under , ActiveSupport :: Inflector . underscore ( under ) )
assert_equal ( under , ActiveSupport :: Inflector . underscore ( camel ) )
assert_equal ( title , ActiveSupport :: Inflector . titleize ( under ) )
assert_equal ( title , ActiveSupport :: Inflector . titleize ( camel ) )
assert_equal ( human , ActiveSupport :: Inflector . humanize ( under ) )
end
end
def test_acronym_override
ActiveSupport :: Inflector . inflections do | inflect |
inflect . acronym ( " API " )
inflect . acronym ( " LegacyApi " )
end
assert_equal ( " LegacyApi " , ActiveSupport :: Inflector . camelize ( " legacyapi " ) )
assert_equal ( " LegacyAPI " , ActiveSupport :: Inflector . camelize ( " legacy_api " ) )
assert_equal ( " SomeLegacyApi " , ActiveSupport :: Inflector . camelize ( " some_legacyapi " ) )
assert_equal ( " Nonlegacyapi " , ActiveSupport :: Inflector . camelize ( " nonlegacyapi " ) )
end
def test_acronyms_camelize_lower
ActiveSupport :: Inflector . inflections do | inflect |
inflect . acronym ( " API " )
inflect . acronym ( " HTML " )
end
assert_equal ( " htmlAPI " , ActiveSupport :: Inflector . camelize ( " html_api " , false ) )
assert_equal ( " htmlAPI " , ActiveSupport :: Inflector . camelize ( " htmlAPI " , false ) )
assert_equal ( " htmlAPI " , ActiveSupport :: Inflector . camelize ( " HTMLAPI " , false ) )
end
def test_underscore_acronym_sequence
ActiveSupport :: Inflector . inflections do | inflect |
inflect . acronym ( " API " )
2012-07-15 05:01:28 +08:00
inflect . acronym ( " JSON " )
2011-06-09 16:10:49 +08:00
inflect . acronym ( " HTML " )
end
2012-07-15 05:01:28 +08:00
assert_equal ( " json_html_api " , ActiveSupport :: Inflector . underscore ( " JSONHTMLAPI " ) )
2011-06-09 16:10:49 +08:00
end
2004-12-30 05:03:21 +08:00
def test_underscore
CamelToUnderscore . each do | camel , underscore |
2008-06-04 02:32:53 +08:00
assert_equal ( underscore , ActiveSupport :: Inflector . underscore ( camel ) )
2004-12-30 05:03:21 +08:00
end
2005-09-13 15:44:20 +08:00
CamelToUnderscoreWithoutReverse . each do | camel , underscore |
2008-06-04 02:32:53 +08:00
assert_equal ( underscore , ActiveSupport :: Inflector . underscore ( camel ) )
2005-09-13 15:44:20 +08:00
end
2004-12-30 05:03:21 +08:00
end
2005-02-15 09:45:35 +08:00
def test_camelize_with_module
CamelWithModuleToUnderscoreWithSlash . each do | camel , underscore |
2008-06-04 02:32:53 +08:00
assert_equal ( camel , ActiveSupport :: Inflector . camelize ( underscore ) )
2005-02-15 09:45:35 +08:00
end
end
2006-07-09 02:14:49 +08:00
2005-02-15 09:45:35 +08:00
def test_underscore_with_slashes
CamelWithModuleToUnderscoreWithSlash . each do | camel , underscore |
2008-06-04 02:32:53 +08:00
assert_equal ( underscore , ActiveSupport :: Inflector . underscore ( camel ) )
2005-02-15 09:45:35 +08:00
end
end
2004-12-30 05:03:21 +08:00
def test_demodulize
2008-06-04 02:32:53 +08:00
assert_equal " Account " , ActiveSupport :: Inflector . demodulize ( " MyApplication::Billing::Account " )
2011-10-29 16:07:54 +08:00
assert_equal " Account " , ActiveSupport :: Inflector . demodulize ( " Account " )
2014-04-11 20:27:16 +08:00
assert_equal " Account " , ActiveSupport :: Inflector . demodulize ( " ::Account " )
2011-10-29 16:07:54 +08:00
assert_equal " " , ActiveSupport :: Inflector . demodulize ( " " )
2004-12-30 05:03:21 +08:00
end
2011-10-30 09:03:35 +08:00
def test_deconstantize
assert_equal " MyApplication::Billing " , ActiveSupport :: Inflector . deconstantize ( " MyApplication::Billing::Account " )
assert_equal " ::MyApplication::Billing " , ActiveSupport :: Inflector . deconstantize ( " ::MyApplication::Billing::Account " )
assert_equal " MyApplication " , ActiveSupport :: Inflector . deconstantize ( " MyApplication::Billing " )
assert_equal " ::MyApplication " , ActiveSupport :: Inflector . deconstantize ( " ::MyApplication::Billing " )
assert_equal " " , ActiveSupport :: Inflector . deconstantize ( " Account " )
assert_equal " " , ActiveSupport :: Inflector . deconstantize ( " ::Account " )
assert_equal " " , ActiveSupport :: Inflector . deconstantize ( " " )
end
2004-12-30 05:03:21 +08:00
def test_foreign_key
ClassNameToForeignKeyWithUnderscore . each do | klass , foreign_key |
2008-06-04 02:32:53 +08:00
assert_equal ( foreign_key , ActiveSupport :: Inflector . foreign_key ( klass ) )
2004-12-30 05:03:21 +08:00
end
ClassNameToForeignKeyWithoutUnderscore . each do | klass , foreign_key |
2008-06-04 02:32:53 +08:00
assert_equal ( foreign_key , ActiveSupport :: Inflector . foreign_key ( klass , false ) )
2004-12-30 05:03:21 +08:00
end
end
def test_tableize
ClassNameToTableName . each do | class_name , table_name |
2008-06-04 02:32:53 +08:00
assert_equal ( table_name , ActiveSupport :: Inflector . tableize ( class_name ) )
2004-12-30 05:03:21 +08:00
end
end
2008-09-10 13:26:50 +08:00
def test_parameterize
StringToParameterized . each do | some_string , parameterized_string |
assert_equal ( parameterized_string , ActiveSupport :: Inflector . parameterize ( some_string ) )
end
end
2008-11-27 09:59:35 +08:00
def test_parameterize_and_normalize
StringToParameterizedAndNormalized . each do | some_string , parameterized_string |
assert_equal ( parameterized_string , ActiveSupport :: Inflector . parameterize ( some_string ) )
end
end
2008-09-12 20:45:11 +08:00
def test_parameterize_with_custom_separator
2011-06-04 07:07:28 +08:00
StringToParameterizeWithUnderscore . each do | some_string , parameterized_string |
2016-08-07 00:03:25 +08:00
assert_equal ( parameterized_string , ActiveSupport :: Inflector . parameterize ( some_string , separator : " _ " ) )
2015-10-07 20:16:38 +08:00
end
end
2009-03-11 05:36:46 +08:00
def test_parameterize_with_multi_character_separator
StringToParameterized . each do | some_string , parameterized_string |
2016-08-07 00:03:25 +08:00
assert_equal ( parameterized_string . gsub ( " - " , " __sep__ " ) , ActiveSupport :: Inflector . parameterize ( some_string , separator : " __sep__ " ) )
2015-10-07 20:16:38 +08:00
end
end
2019-03-12 03:09:58 +08:00
def test_parameterize_with_locale
word = " Fünf autos "
I18n . backend . store_translations ( :de , i18n : { transliterate : { rule : { " ü " = > " ue " } } } )
assert_equal ( " fuenf-autos " , ActiveSupport :: Inflector . parameterize ( word , locale : :de ) )
end
2004-12-30 05:03:21 +08:00
def test_classify
ClassNameToTableName . each do | class_name , table_name |
2008-06-04 02:32:53 +08:00
assert_equal ( class_name , ActiveSupport :: Inflector . classify ( table_name ) )
assert_equal ( class_name , ActiveSupport :: Inflector . classify ( " table_prefix. " + table_name ) )
2004-12-30 05:03:21 +08:00
end
end
2006-05-22 23:17:45 +08:00
2011-09-09 02:49:08 +08:00
def test_classify_with_symbol
assert_nothing_raised do
2016-08-07 00:03:25 +08:00
assert_equal " FooBar " , ActiveSupport :: Inflector . classify ( :foo_bars )
2011-09-09 02:49:08 +08:00
end
end
2007-01-28 23:52:45 +08:00
def test_classify_with_leading_schema_name
2016-08-07 00:03:25 +08:00
assert_equal " FooBar " , ActiveSupport :: Inflector . classify ( " schema.foo_bar " )
2007-01-28 23:52:45 +08:00
end
2005-01-18 03:53:42 +08:00
def test_humanize
UnderscoreToHuman . each do | underscore , human |
2008-06-04 02:32:53 +08:00
assert_equal ( human , ActiveSupport :: Inflector . humanize ( underscore ) )
2005-01-18 03:53:42 +08:00
end
end
2006-07-09 02:14:49 +08:00
2013-11-07 04:57:21 +08:00
def test_humanize_without_capitalize
UnderscoreToHumanWithoutCapitalize . each do | underscore , human |
assert_equal ( human , ActiveSupport :: Inflector . humanize ( underscore , capitalize : false ) )
end
end
2016-08-07 20:27:47 +08:00
def test_humanize_with_keep_id_suffix
UnderscoreToHumanWithKeepIdSuffix . each do | underscore , human |
assert_equal ( human , ActiveSupport :: Inflector . humanize ( underscore , keep_id_suffix : true ) )
end
end
2008-07-02 20:25:17 +08:00
def test_humanize_by_rule
ActiveSupport :: Inflector . inflections do | inflect |
inflect . human ( / _cnt$ /i , '\1_count' )
inflect . human ( / ^prefx_ /i , '\1' )
end
assert_equal ( " Jargon count " , ActiveSupport :: Inflector . humanize ( " jargon_cnt " ) )
assert_equal ( " Request " , ActiveSupport :: Inflector . humanize ( " prefx_request " ) )
end
def test_humanize_by_string
ActiveSupport :: Inflector . inflections do | inflect |
inflect . human ( " col_rpted_bugs " , " Reported bugs " )
end
assert_equal ( " Reported bugs " , ActiveSupport :: Inflector . humanize ( " col_rpted_bugs " ) )
assert_equal ( " Col rpted bugs " , ActiveSupport :: Inflector . humanize ( " COL_rpted_bugs " ) )
end
2017-11-06 22:46:42 +08:00
def test_humanize_with_acronyms
ActiveSupport :: Inflector . inflections do | inflect |
inflect . acronym " LAX "
inflect . acronym " SFO "
end
assert_equal ( " LAX roundtrip to SFO " , ActiveSupport :: Inflector . humanize ( " LAX ROUNDTRIP TO SFO " ) )
assert_equal ( " LAX roundtrip to SFO " , ActiveSupport :: Inflector . humanize ( " LAX ROUNDTRIP TO SFO " , capitalize : false ) )
assert_equal ( " LAX roundtrip to SFO " , ActiveSupport :: Inflector . humanize ( " lax roundtrip to sfo " ) )
assert_equal ( " LAX roundtrip to SFO " , ActiveSupport :: Inflector . humanize ( " lax roundtrip to sfo " , capitalize : false ) )
assert_equal ( " LAX roundtrip to SFO " , ActiveSupport :: Inflector . humanize ( " Lax Roundtrip To Sfo " ) )
assert_equal ( " LAX roundtrip to SFO " , ActiveSupport :: Inflector . humanize ( " Lax Roundtrip To Sfo " , capitalize : false ) )
end
2005-02-15 09:45:35 +08:00
def test_constantize
2011-09-23 03:17:42 +08:00
run_constantize_tests_on do | string |
ActiveSupport :: Inflector . constantize ( string )
end
2005-11-16 08:56:16 +08:00
end
2012-02-25 07:06:17 +08:00
2011-09-23 03:17:42 +08:00
def test_safe_constantize
run_safe_constantize_tests_on do | string |
ActiveSupport :: Inflector . safe_constantize ( string )
end
2005-02-15 09:45:35 +08:00
end
2005-07-17 18:02:23 +08:00
def test_ordinal
2011-07-14 23:16:28 +08:00
OrdinalNumbers . each do | number , ordinalized |
assert_equal ( ordinalized , number + ActiveSupport :: Inflector . ordinal ( number ) )
end
end
def test_ordinalize
2005-07-17 18:02:23 +08:00
OrdinalNumbers . each do | number , ordinalized |
2008-06-04 02:32:53 +08:00
assert_equal ( ordinalized , ActiveSupport :: Inflector . ordinalize ( number ) )
2005-07-17 18:02:23 +08:00
end
end
2006-03-08 10:56:25 +08:00
def test_dasherize
UnderscoresToDashes . each do | underscored , dasherized |
2008-06-04 02:32:53 +08:00
assert_equal ( dasherized , ActiveSupport :: Inflector . dasherize ( underscored ) )
2006-03-08 10:56:25 +08:00
end
end
2006-03-16 05:05:10 +08:00
def test_underscore_as_reverse_of_dasherize
2013-03-18 02:49:57 +08:00
UnderscoresToDashes . each_key do | underscored |
2008-06-04 02:32:53 +08:00
assert_equal ( underscored , ActiveSupport :: Inflector . underscore ( ActiveSupport :: Inflector . dasherize ( underscored ) ) )
2006-03-16 05:05:10 +08:00
end
end
2006-03-20 11:32:28 +08:00
def test_underscore_to_lower_camel
UnderscoreToLowerCamel . each do | underscored , lower_camel |
2008-06-04 02:32:53 +08:00
assert_equal ( lower_camel , ActiveSupport :: Inflector . camelize ( underscored , false ) )
2006-03-20 11:32:28 +08:00
end
end
2008-06-04 02:32:53 +08:00
2011-09-09 02:49:08 +08:00
def test_symbol_to_lower_camel
SymbolToLowerCamel . each do | symbol , lower_camel |
assert_equal ( lower_camel , ActiveSupport :: Inflector . camelize ( symbol , false ) )
end
end
2008-07-02 20:25:17 +08:00
%w{ plurals singulars uncountables humans } . each do | inflection_type |
2010-05-20 03:37:41 +08:00
class_eval <<-RUBY, __FILE__, __LINE__ + 1
2007-01-23 13:32:08 +08:00
def test_clear_ #{inflection_type}
2015-06-15 11:46:18 +08:00
ActiveSupport :: Inflector . inflections . clear : #{inflection_type}
assert ActiveSupport :: Inflector . inflections . #{inflection_type}.empty?, \"#{inflection_type} inflections should be empty after clear :#{inflection_type}\"
2007-01-23 13:32:08 +08:00
end
2010-05-20 03:37:41 +08:00
RUBY
2007-01-23 13:32:08 +08:00
end
2008-06-04 02:32:53 +08:00
Make ActiveSupport::Inflector locale aware and multilingual
The Inflector is currently not very supportive of internationalized
websites. If a user wants to singularize and/or pluralize words based on
any locale other than English, they must define each case in locale
files. Rather than create large locale files with mappings between
singular and plural words, why not allow the Inflector to accept a
locale?
This patch makes ActiveSupport::Inflector locale aware and uses `:en`` unless
otherwise specified. Users will still be provided a list of English (:en)
inflections, but they may additionally define inflection rules for other
locales. Each list is kept separately and permanently. There is no reason to
limit users to one list of inflections:
ActiveSupport::Inflector.inflections(:es) do |inflect|
inflect.plural(/$/, 's')
inflect.plural(/([^aeéiou])$/i, '\1es')
inflect.plural(/([aeiou]s)$/i, '\1')
inflect.plural(/z$/i, 'ces')
inflect.plural(/á([sn])$/i, 'a\1es')
inflect.plural(/é([sn])$/i, 'e\1es')
inflect.plural(/í([sn])$/i, 'i\1es')
inflect.plural(/ó([sn])$/i, 'o\1es')
inflect.plural(/ú([sn])$/i, 'u\1es')
inflect.singular(/s$/, '')
inflect.singular(/es$/, '')
inflect.irregular('el', 'los')
end
'ley'.pluralize(:es) # => "leyes"
'ley'.pluralize(:en) # => "leys"
'avión'.pluralize(:es) # => "aviones"
'avión'.pluralize(:en) # => "avións"
A multilingual Inflector should be of use to anybody that is tasked with
internationalizing their Rails application.
Signed-off-by: David Celis <david@davidcelis.com>
2012-07-30 06:31:53 +08:00
def test_inflector_locality
ActiveSupport :: Inflector . inflections ( :es ) do | inflect |
2016-08-07 00:03:25 +08:00
inflect . plural ( / $ / , " s " )
inflect . plural ( / z$ /i , " ces " )
Make ActiveSupport::Inflector locale aware and multilingual
The Inflector is currently not very supportive of internationalized
websites. If a user wants to singularize and/or pluralize words based on
any locale other than English, they must define each case in locale
files. Rather than create large locale files with mappings between
singular and plural words, why not allow the Inflector to accept a
locale?
This patch makes ActiveSupport::Inflector locale aware and uses `:en`` unless
otherwise specified. Users will still be provided a list of English (:en)
inflections, but they may additionally define inflection rules for other
locales. Each list is kept separately and permanently. There is no reason to
limit users to one list of inflections:
ActiveSupport::Inflector.inflections(:es) do |inflect|
inflect.plural(/$/, 's')
inflect.plural(/([^aeéiou])$/i, '\1es')
inflect.plural(/([aeiou]s)$/i, '\1')
inflect.plural(/z$/i, 'ces')
inflect.plural(/á([sn])$/i, 'a\1es')
inflect.plural(/é([sn])$/i, 'e\1es')
inflect.plural(/í([sn])$/i, 'i\1es')
inflect.plural(/ó([sn])$/i, 'o\1es')
inflect.plural(/ú([sn])$/i, 'u\1es')
inflect.singular(/s$/, '')
inflect.singular(/es$/, '')
inflect.irregular('el', 'los')
end
'ley'.pluralize(:es) # => "leyes"
'ley'.pluralize(:en) # => "leys"
'avión'.pluralize(:es) # => "aviones"
'avión'.pluralize(:en) # => "avións"
A multilingual Inflector should be of use to anybody that is tasked with
internationalizing their Rails application.
Signed-off-by: David Celis <david@davidcelis.com>
2012-07-30 06:31:53 +08:00
2016-08-07 00:03:25 +08:00
inflect . singular ( / s$ / , " " )
inflect . singular ( / es$ / , " " )
2013-01-04 10:14:57 +08:00
2016-08-07 00:03:25 +08:00
inflect . irregular ( " el " , " los " )
2017-05-10 05:50:47 +08:00
inflect . uncountable ( " agua " )
Make ActiveSupport::Inflector locale aware and multilingual
The Inflector is currently not very supportive of internationalized
websites. If a user wants to singularize and/or pluralize words based on
any locale other than English, they must define each case in locale
files. Rather than create large locale files with mappings between
singular and plural words, why not allow the Inflector to accept a
locale?
This patch makes ActiveSupport::Inflector locale aware and uses `:en`` unless
otherwise specified. Users will still be provided a list of English (:en)
inflections, but they may additionally define inflection rules for other
locales. Each list is kept separately and permanently. There is no reason to
limit users to one list of inflections:
ActiveSupport::Inflector.inflections(:es) do |inflect|
inflect.plural(/$/, 's')
inflect.plural(/([^aeéiou])$/i, '\1es')
inflect.plural(/([aeiou]s)$/i, '\1')
inflect.plural(/z$/i, 'ces')
inflect.plural(/á([sn])$/i, 'a\1es')
inflect.plural(/é([sn])$/i, 'e\1es')
inflect.plural(/í([sn])$/i, 'i\1es')
inflect.plural(/ó([sn])$/i, 'o\1es')
inflect.plural(/ú([sn])$/i, 'u\1es')
inflect.singular(/s$/, '')
inflect.singular(/es$/, '')
inflect.irregular('el', 'los')
end
'ley'.pluralize(:es) # => "leyes"
'ley'.pluralize(:en) # => "leys"
'avión'.pluralize(:es) # => "aviones"
'avión'.pluralize(:en) # => "avións"
A multilingual Inflector should be of use to anybody that is tasked with
internationalizing their Rails application.
Signed-off-by: David Celis <david@davidcelis.com>
2012-07-30 06:31:53 +08:00
end
2016-08-07 00:03:25 +08:00
assert_equal ( " hijos " , " hijo " . pluralize ( :es ) )
assert_equal ( " luces " , " luz " . pluralize ( :es ) )
assert_equal ( " luzs " , " luz " . pluralize )
Make ActiveSupport::Inflector locale aware and multilingual
The Inflector is currently not very supportive of internationalized
websites. If a user wants to singularize and/or pluralize words based on
any locale other than English, they must define each case in locale
files. Rather than create large locale files with mappings between
singular and plural words, why not allow the Inflector to accept a
locale?
This patch makes ActiveSupport::Inflector locale aware and uses `:en`` unless
otherwise specified. Users will still be provided a list of English (:en)
inflections, but they may additionally define inflection rules for other
locales. Each list is kept separately and permanently. There is no reason to
limit users to one list of inflections:
ActiveSupport::Inflector.inflections(:es) do |inflect|
inflect.plural(/$/, 's')
inflect.plural(/([^aeéiou])$/i, '\1es')
inflect.plural(/([aeiou]s)$/i, '\1')
inflect.plural(/z$/i, 'ces')
inflect.plural(/á([sn])$/i, 'a\1es')
inflect.plural(/é([sn])$/i, 'e\1es')
inflect.plural(/í([sn])$/i, 'i\1es')
inflect.plural(/ó([sn])$/i, 'o\1es')
inflect.plural(/ú([sn])$/i, 'u\1es')
inflect.singular(/s$/, '')
inflect.singular(/es$/, '')
inflect.irregular('el', 'los')
end
'ley'.pluralize(:es) # => "leyes"
'ley'.pluralize(:en) # => "leys"
'avión'.pluralize(:es) # => "aviones"
'avión'.pluralize(:en) # => "avións"
A multilingual Inflector should be of use to anybody that is tasked with
internationalizing their Rails application.
Signed-off-by: David Celis <david@davidcelis.com>
2012-07-30 06:31:53 +08:00
2016-08-07 00:03:25 +08:00
assert_equal ( " sociedad " , " sociedades " . singularize ( :es ) )
assert_equal ( " sociedade " , " sociedades " . singularize )
Make ActiveSupport::Inflector locale aware and multilingual
The Inflector is currently not very supportive of internationalized
websites. If a user wants to singularize and/or pluralize words based on
any locale other than English, they must define each case in locale
files. Rather than create large locale files with mappings between
singular and plural words, why not allow the Inflector to accept a
locale?
This patch makes ActiveSupport::Inflector locale aware and uses `:en`` unless
otherwise specified. Users will still be provided a list of English (:en)
inflections, but they may additionally define inflection rules for other
locales. Each list is kept separately and permanently. There is no reason to
limit users to one list of inflections:
ActiveSupport::Inflector.inflections(:es) do |inflect|
inflect.plural(/$/, 's')
inflect.plural(/([^aeéiou])$/i, '\1es')
inflect.plural(/([aeiou]s)$/i, '\1')
inflect.plural(/z$/i, 'ces')
inflect.plural(/á([sn])$/i, 'a\1es')
inflect.plural(/é([sn])$/i, 'e\1es')
inflect.plural(/í([sn])$/i, 'i\1es')
inflect.plural(/ó([sn])$/i, 'o\1es')
inflect.plural(/ú([sn])$/i, 'u\1es')
inflect.singular(/s$/, '')
inflect.singular(/es$/, '')
inflect.irregular('el', 'los')
end
'ley'.pluralize(:es) # => "leyes"
'ley'.pluralize(:en) # => "leys"
'avión'.pluralize(:es) # => "aviones"
'avión'.pluralize(:en) # => "avións"
A multilingual Inflector should be of use to anybody that is tasked with
internationalizing their Rails application.
Signed-off-by: David Celis <david@davidcelis.com>
2012-07-30 06:31:53 +08:00
2016-08-07 00:03:25 +08:00
assert_equal ( " los " , " el " . pluralize ( :es ) )
assert_equal ( " els " , " el " . pluralize )
Make ActiveSupport::Inflector locale aware and multilingual
The Inflector is currently not very supportive of internationalized
websites. If a user wants to singularize and/or pluralize words based on
any locale other than English, they must define each case in locale
files. Rather than create large locale files with mappings between
singular and plural words, why not allow the Inflector to accept a
locale?
This patch makes ActiveSupport::Inflector locale aware and uses `:en`` unless
otherwise specified. Users will still be provided a list of English (:en)
inflections, but they may additionally define inflection rules for other
locales. Each list is kept separately and permanently. There is no reason to
limit users to one list of inflections:
ActiveSupport::Inflector.inflections(:es) do |inflect|
inflect.plural(/$/, 's')
inflect.plural(/([^aeéiou])$/i, '\1es')
inflect.plural(/([aeiou]s)$/i, '\1')
inflect.plural(/z$/i, 'ces')
inflect.plural(/á([sn])$/i, 'a\1es')
inflect.plural(/é([sn])$/i, 'e\1es')
inflect.plural(/í([sn])$/i, 'i\1es')
inflect.plural(/ó([sn])$/i, 'o\1es')
inflect.plural(/ú([sn])$/i, 'u\1es')
inflect.singular(/s$/, '')
inflect.singular(/es$/, '')
inflect.irregular('el', 'los')
end
'ley'.pluralize(:es) # => "leyes"
'ley'.pluralize(:en) # => "leys"
'avión'.pluralize(:es) # => "aviones"
'avión'.pluralize(:en) # => "avións"
A multilingual Inflector should be of use to anybody that is tasked with
internationalizing their Rails application.
Signed-off-by: David Celis <david@davidcelis.com>
2012-07-30 06:31:53 +08:00
2017-05-10 05:50:47 +08:00
assert_equal ( " agua " , " agua " . pluralize ( :es ) )
assert_equal ( " aguas " , " agua " . pluralize )
Make ActiveSupport::Inflector locale aware and multilingual
The Inflector is currently not very supportive of internationalized
websites. If a user wants to singularize and/or pluralize words based on
any locale other than English, they must define each case in locale
files. Rather than create large locale files with mappings between
singular and plural words, why not allow the Inflector to accept a
locale?
This patch makes ActiveSupport::Inflector locale aware and uses `:en`` unless
otherwise specified. Users will still be provided a list of English (:en)
inflections, but they may additionally define inflection rules for other
locales. Each list is kept separately and permanently. There is no reason to
limit users to one list of inflections:
ActiveSupport::Inflector.inflections(:es) do |inflect|
inflect.plural(/$/, 's')
inflect.plural(/([^aeéiou])$/i, '\1es')
inflect.plural(/([aeiou]s)$/i, '\1')
inflect.plural(/z$/i, 'ces')
inflect.plural(/á([sn])$/i, 'a\1es')
inflect.plural(/é([sn])$/i, 'e\1es')
inflect.plural(/í([sn])$/i, 'i\1es')
inflect.plural(/ó([sn])$/i, 'o\1es')
inflect.plural(/ú([sn])$/i, 'u\1es')
inflect.singular(/s$/, '')
inflect.singular(/es$/, '')
inflect.irregular('el', 'los')
end
'ley'.pluralize(:es) # => "leyes"
'ley'.pluralize(:en) # => "leys"
'avión'.pluralize(:es) # => "aviones"
'avión'.pluralize(:en) # => "avións"
A multilingual Inflector should be of use to anybody that is tasked with
internationalizing their Rails application.
Signed-off-by: David Celis <david@davidcelis.com>
2012-07-30 06:31:53 +08:00
ActiveSupport :: Inflector . inflections ( :es ) { | inflect | inflect . clear }
2018-01-26 07:16:57 +08:00
assert_empty ActiveSupport :: Inflector . inflections ( :es ) . plurals
assert_empty ActiveSupport :: Inflector . inflections ( :es ) . singulars
assert_empty ActiveSupport :: Inflector . inflections ( :es ) . uncountables
assert_not_empty ActiveSupport :: Inflector . inflections . plurals
assert_not_empty ActiveSupport :: Inflector . inflections . singulars
assert_not_empty ActiveSupport :: Inflector . inflections . uncountables
Make ActiveSupport::Inflector locale aware and multilingual
The Inflector is currently not very supportive of internationalized
websites. If a user wants to singularize and/or pluralize words based on
any locale other than English, they must define each case in locale
files. Rather than create large locale files with mappings between
singular and plural words, why not allow the Inflector to accept a
locale?
This patch makes ActiveSupport::Inflector locale aware and uses `:en`` unless
otherwise specified. Users will still be provided a list of English (:en)
inflections, but they may additionally define inflection rules for other
locales. Each list is kept separately and permanently. There is no reason to
limit users to one list of inflections:
ActiveSupport::Inflector.inflections(:es) do |inflect|
inflect.plural(/$/, 's')
inflect.plural(/([^aeéiou])$/i, '\1es')
inflect.plural(/([aeiou]s)$/i, '\1')
inflect.plural(/z$/i, 'ces')
inflect.plural(/á([sn])$/i, 'a\1es')
inflect.plural(/é([sn])$/i, 'e\1es')
inflect.plural(/í([sn])$/i, 'i\1es')
inflect.plural(/ó([sn])$/i, 'o\1es')
inflect.plural(/ú([sn])$/i, 'u\1es')
inflect.singular(/s$/, '')
inflect.singular(/es$/, '')
inflect.irregular('el', 'los')
end
'ley'.pluralize(:es) # => "leyes"
'ley'.pluralize(:en) # => "leys"
'avión'.pluralize(:es) # => "aviones"
'avión'.pluralize(:en) # => "avións"
A multilingual Inflector should be of use to anybody that is tasked with
internationalizing their Rails application.
Signed-off-by: David Celis <david@davidcelis.com>
2012-07-30 06:31:53 +08:00
end
2007-01-23 13:32:08 +08:00
def test_clear_all
2015-06-15 11:46:18 +08:00
ActiveSupport :: Inflector . inflections do | inflect |
# ensure any data is present
inflect . plural ( / (quiz)$ /i , '\1zes' )
inflect . singular ( / (database)s$ /i , '\1' )
2016-08-07 00:03:25 +08:00
inflect . uncountable ( " series " )
2015-06-15 11:46:18 +08:00
inflect . human ( " col_rpted_bugs " , " Reported bugs " )
inflect . clear :all
2018-01-26 07:16:57 +08:00
assert_empty inflect . plurals
assert_empty inflect . singulars
assert_empty inflect . uncountables
assert_empty inflect . humans
2011-04-25 09:17:22 +08:00
end
2008-06-04 02:32:53 +08:00
end
2007-01-23 13:32:08 +08:00
def test_clear_with_default
2015-06-15 11:46:18 +08:00
ActiveSupport :: Inflector . inflections do | inflect |
# ensure any data is present
inflect . plural ( / (quiz)$ /i , '\1zes' )
inflect . singular ( / (database)s$ /i , '\1' )
2016-08-07 00:03:25 +08:00
inflect . uncountable ( " series " )
2015-06-15 11:46:18 +08:00
inflect . human ( " col_rpted_bugs " , " Reported bugs " )
inflect . clear
2018-01-26 07:16:57 +08:00
assert_empty inflect . plurals
assert_empty inflect . singulars
assert_empty inflect . uncountables
assert_empty inflect . humans
2011-04-25 09:17:22 +08:00
end
2007-01-23 13:32:08 +08:00
end
2007-01-28 23:52:45 +08:00
2013-07-30 19:01:56 +08:00
Irregularities . each do | singular , plural |
define_method ( " test_irregularity_between_ #{ singular } _and_ #{ plural } " ) do
2015-06-15 11:46:18 +08:00
ActiveSupport :: Inflector . inflections do | inflect |
inflect . irregular ( singular , plural )
assert_equal singular , ActiveSupport :: Inflector . singularize ( plural )
assert_equal plural , ActiveSupport :: Inflector . pluralize ( singular )
2007-01-28 23:52:45 +08:00
end
end
end
2013-07-30 19:01:56 +08:00
Irregularities . each do | singular , plural |
define_method ( " test_pluralize_of_irregularity_ #{ plural } _should_be_the_same " ) do
2015-06-15 11:46:18 +08:00
ActiveSupport :: Inflector . inflections do | inflect |
inflect . irregular ( singular , plural )
assert_equal plural , ActiveSupport :: Inflector . pluralize ( plural )
2008-07-04 15:04:50 +08:00
end
end
end
2013-07-30 19:01:56 +08:00
Irregularities . each do | singular , plural |
define_method ( " test_singularize_of_irregularity_ #{ singular } _should_be_the_same " ) do
2015-06-15 11:46:18 +08:00
ActiveSupport :: Inflector . inflections do | inflect |
inflect . irregular ( singular , plural )
assert_equal singular , ActiveSupport :: Inflector . singularize ( singular )
2012-06-21 17:16:48 +08:00
end
end
end
2007-01-28 23:52:45 +08:00
[ :all , [ ] ] . each do | scope |
2008-06-04 02:32:53 +08:00
ActiveSupport :: Inflector . inflections do | inflect |
2007-01-28 23:52:45 +08:00
define_method ( " test_clear_inflections_with_ #{ scope . kind_of? ( Array ) ? " no_arguments " : scope } " ) do
# save all the inflections
singulars , plurals , uncountables = inflect . singulars , inflect . plurals , inflect . uncountables
# clear all the inflections
inflect . clear ( * scope )
assert_equal [ ] , inflect . singulars
assert_equal [ ] , inflect . plurals
assert_equal [ ] , inflect . uncountables
# restore all the inflections
2014-10-13 18:47:16 +08:00
singulars . reverse_each { | singular | inflect . singular ( * singular ) }
plurals . reverse_each { | plural | inflect . plural ( * plural ) }
2007-01-28 23:52:45 +08:00
inflect . uncountable ( uncountables )
assert_equal singulars , inflect . singulars
assert_equal plurals , inflect . plurals
assert_equal uncountables , inflect . uncountables
end
end
end
2012-02-25 07:06:17 +08:00
%w( plurals singulars uncountables humans acronyms ) . each do | scope |
2014-05-26 00:06:02 +08:00
define_method ( " test_clear_inflections_with_ #{ scope } " ) do
2015-06-15 11:46:18 +08:00
# clear the inflections
ActiveSupport :: Inflector . inflections do | inflect |
inflect . clear ( scope )
2020-10-02 14:17:18 +08:00
assert_equal [ ] , inflect . public_send ( scope )
2007-01-28 23:52:45 +08:00
end
end
end
2005-07-17 18:02:23 +08:00
end