inflector_test.rb 11.9 KB
Newer Older
1
require 'abstract_unit'
2 3
require 'active_support/inflector'

4
require 'inflector_test_cases'
5

D
David Heinemeier Hansson 已提交
6 7 8
module Ace
  module Base
    class Case
9 10 11 12
    end
  end
end

13
class InflectorTest < Test::Unit::TestCase
14
  include InflectorTestCases
15

16
  def test_pluralize_plurals
17 18
    assert_equal "plurals", ActiveSupport::Inflector.pluralize("plurals")
    assert_equal "Plurals", ActiveSupport::Inflector.pluralize("Plurals")
19 20
  end

21
  def test_pluralize_empty_string
22
    assert_equal "", ActiveSupport::Inflector.pluralize("")
23 24
  end

25 26
  SingularToPlural.each do |singular, plural|
    define_method "test_pluralize_#{singular}" do
27 28
      assert_equal(plural, ActiveSupport::Inflector.pluralize(singular))
      assert_equal(plural.capitalize, ActiveSupport::Inflector.pluralize(singular.capitalize))
29 30 31
    end
  end

32 33
  SingularToPlural.each do |singular, plural|
    define_method "test_singularize_#{plural}" do
34 35
      assert_equal(singular, ActiveSupport::Inflector.singularize(plural))
      assert_equal(singular.capitalize, ActiveSupport::Inflector.singularize(plural.capitalize))
36 37 38
    end
  end

39 40 41 42 43 44 45
  def test_overwrite_previous_inflectors
    assert_equal("series", ActiveSupport::Inflector.singularize("series"))
    ActiveSupport::Inflector.inflections.singular "series", "serie"
    assert_equal("serie", ActiveSupport::Inflector.singularize("series"))
    ActiveSupport::Inflector.inflections.uncountable "series" # Return to normal
  end

46 47
  MixtureToTitleCase.each do |before, titleized|
    define_method "test_titleize_#{before}" do
48
      assert_equal(titleized, ActiveSupport::Inflector.titleize(before))
49 50 51
    end
  end

52 53
  def test_camelize
    CamelToUnderscore.each do |camel, underscore|
54
      assert_equal(camel, ActiveSupport::Inflector.camelize(underscore))
55 56 57
    end
  end

58 59 60 61
  def test_camelize_with_lower_downcases_the_first_letter
    assert_equal('capital', ActiveSupport::Inflector.camelize('Capital', false))
  end

62 63
  def test_underscore
    CamelToUnderscore.each do |camel, underscore|
64
      assert_equal(underscore, ActiveSupport::Inflector.underscore(camel))
65
    end
66
    CamelToUnderscoreWithoutReverse.each do |camel, underscore|
67
      assert_equal(underscore, ActiveSupport::Inflector.underscore(camel))
68
    end
69 70
  end

71 72
  def test_camelize_with_module
    CamelWithModuleToUnderscoreWithSlash.each do |camel, underscore|
73
      assert_equal(camel, ActiveSupport::Inflector.camelize(underscore))
74 75
    end
  end
76

77 78
  def test_underscore_with_slashes
    CamelWithModuleToUnderscoreWithSlash.each do |camel, underscore|
79
      assert_equal(underscore, ActiveSupport::Inflector.underscore(camel))
80 81 82
    end
  end

83
  def test_demodulize
84
    assert_equal "Account", ActiveSupport::Inflector.demodulize("MyApplication::Billing::Account")
85 86 87 88
  end

  def test_foreign_key
    ClassNameToForeignKeyWithUnderscore.each do |klass, foreign_key|
89
      assert_equal(foreign_key, ActiveSupport::Inflector.foreign_key(klass))
90 91 92
    end

    ClassNameToForeignKeyWithoutUnderscore.each do |klass, foreign_key|
93
      assert_equal(foreign_key, ActiveSupport::Inflector.foreign_key(klass, false))
94 95 96 97 98
    end
  end

  def test_tableize
    ClassNameToTableName.each do |class_name, table_name|
99
      assert_equal(table_name, ActiveSupport::Inflector.tableize(class_name))
100 101 102
    end
  end

103 104 105 106 107 108
  def test_parameterize
    StringToParameterized.each do |some_string, parameterized_string|
      assert_equal(parameterized_string, ActiveSupport::Inflector.parameterize(some_string))
    end
  end

109 110 111 112 113 114
  def test_parameterize_and_normalize
    StringToParameterizedAndNormalized.each do |some_string, parameterized_string|
      assert_equal(parameterized_string, ActiveSupport::Inflector.parameterize(some_string))
    end
  end

115 116 117 118 119 120
  def test_parameterize_with_custom_separator
    StringToParameterized.each do |some_string, parameterized_string|
      assert_equal(parameterized_string.gsub('-', '_'), ActiveSupport::Inflector.parameterize(some_string, '_'))
    end
  end

121 122 123 124 125 126
  def test_parameterize_with_multi_character_separator
    StringToParameterized.each do |some_string, parameterized_string|
      assert_equal(parameterized_string.gsub('-', '__sep__'), ActiveSupport::Inflector.parameterize(some_string, '__sep__'))
    end
  end

127 128
  def test_classify
    ClassNameToTableName.each do |class_name, table_name|
129 130
      assert_equal(class_name, ActiveSupport::Inflector.classify(table_name))
      assert_equal(class_name, ActiveSupport::Inflector.classify("table_prefix." + table_name))
131 132
    end
  end
133 134 135

  def test_classify_with_symbol
    assert_nothing_raised do
136
      assert_equal 'FooBar', ActiveSupport::Inflector.classify(:foo_bars)
137 138
    end
  end
139

140
  def test_classify_with_leading_schema_name
141
    assert_equal 'FooBar', ActiveSupport::Inflector.classify('schema.foo_bar')
142 143
  end

144 145
  def test_humanize
    UnderscoreToHuman.each do |underscore, human|
146
      assert_equal(human, ActiveSupport::Inflector.humanize(underscore))
147 148
    end
  end
149

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
  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

167
  def test_constantize
168 169 170 171
    assert_nothing_raised { assert_equal Ace::Base::Case, ActiveSupport::Inflector.constantize("Ace::Base::Case") }
    assert_nothing_raised { assert_equal Ace::Base::Case, ActiveSupport::Inflector.constantize("::Ace::Base::Case") }
    assert_nothing_raised { assert_equal InflectorTest, ActiveSupport::Inflector.constantize("InflectorTest") }
    assert_nothing_raised { assert_equal InflectorTest, ActiveSupport::Inflector.constantize("::InflectorTest") }
172 173 174
    assert_raise(NameError) { ActiveSupport::Inflector.constantize("UnknownClass") }
    assert_raise(NameError) { ActiveSupport::Inflector.constantize("An invalid string") }
    assert_raise(NameError) { ActiveSupport::Inflector.constantize("InvalidClass\n") }
175
  end
176

177
  def test_constantize_does_lexical_lookup
178
    assert_raise(NameError) { ActiveSupport::Inflector.constantize("Ace::Base::InflectorTest") }
179
  end
180 181 182

  def test_ordinal
    OrdinalNumbers.each do |number, ordinalized|
183
      assert_equal(ordinalized, ActiveSupport::Inflector.ordinalize(number))
184 185
    end
  end
186 187 188

  def test_dasherize
    UnderscoresToDashes.each do |underscored, dasherized|
189
      assert_equal(dasherized, ActiveSupport::Inflector.dasherize(underscored))
190 191
    end
  end
192 193 194

  def test_underscore_as_reverse_of_dasherize
    UnderscoresToDashes.each do |underscored, dasherized|
195
      assert_equal(underscored, ActiveSupport::Inflector.underscore(ActiveSupport::Inflector.dasherize(underscored)))
196 197
    end
  end
198 199 200

  def test_underscore_to_lower_camel
    UnderscoreToLowerCamel.each do |underscored, lower_camel|
201
      assert_equal(lower_camel, ActiveSupport::Inflector.camelize(underscored, false))
202 203
    end
  end
204

205 206 207 208 209 210
  def test_symbol_to_lower_camel
    SymbolToLowerCamel.each do |symbol, lower_camel|
      assert_equal(lower_camel, ActiveSupport::Inflector.camelize(symbol, false))
    end
  end

211
  %w{plurals singulars uncountables humans}.each do |inflection_type|
212 213
    class_eval "
      def test_clear_#{inflection_type}
214 215 216 217
        cached_values = ActiveSupport::Inflector.inflections.#{inflection_type}
        ActiveSupport::Inflector.inflections.clear :#{inflection_type}
        assert ActiveSupport::Inflector.inflections.#{inflection_type}.empty?, \"#{inflection_type} inflections should be empty after clear :#{inflection_type}\"
        ActiveSupport::Inflector.inflections.instance_variable_set :@#{inflection_type}, cached_values
218 219 220
      end
    "
  end
221

222
  def test_clear_all
223
    cached_values = ActiveSupport::Inflector.inflections.plurals, ActiveSupport::Inflector.inflections.singulars, ActiveSupport::Inflector.inflections.uncountables, ActiveSupport::Inflector.inflections.humans
224 225 226 227
    ActiveSupport::Inflector.inflections.clear :all
    assert ActiveSupport::Inflector.inflections.plurals.empty?
    assert ActiveSupport::Inflector.inflections.singulars.empty?
    assert ActiveSupport::Inflector.inflections.uncountables.empty?
228
    assert ActiveSupport::Inflector.inflections.humans.empty?
229 230 231
    ActiveSupport::Inflector.inflections.instance_variable_set :@plurals, cached_values[0]
    ActiveSupport::Inflector.inflections.instance_variable_set :@singulars, cached_values[1]
    ActiveSupport::Inflector.inflections.instance_variable_set :@uncountables, cached_values[2]
232
    ActiveSupport::Inflector.inflections.instance_variable_set :@humans, cached_values[3]
233 234
  end

235
  def test_clear_with_default
236
    cached_values = ActiveSupport::Inflector.inflections.plurals, ActiveSupport::Inflector.inflections.singulars, ActiveSupport::Inflector.inflections.uncountables, ActiveSupport::Inflector.inflections.humans
237 238 239 240
    ActiveSupport::Inflector.inflections.clear
    assert ActiveSupport::Inflector.inflections.plurals.empty?
    assert ActiveSupport::Inflector.inflections.singulars.empty?
    assert ActiveSupport::Inflector.inflections.uncountables.empty?
241
    assert ActiveSupport::Inflector.inflections.humans.empty?
242 243 244
    ActiveSupport::Inflector.inflections.instance_variable_set :@plurals, cached_values[0]
    ActiveSupport::Inflector.inflections.instance_variable_set :@singulars, cached_values[1]
    ActiveSupport::Inflector.inflections.instance_variable_set :@uncountables, cached_values[2]
245
    ActiveSupport::Inflector.inflections.instance_variable_set :@humans, cached_values[3]
246
  end
247 248 249

  Irregularities.each do |irregularity|
    singular, plural = *irregularity
250
    ActiveSupport::Inflector.inflections do |inflect|
251 252
      define_method("test_irregularity_between_#{singular}_and_#{plural}") do
        inflect.irregular(singular, plural)
253 254
        assert_equal singular, ActiveSupport::Inflector.singularize(plural)
        assert_equal plural, ActiveSupport::Inflector.pluralize(singular)
255 256 257 258
      end
    end
  end

259 260 261 262 263 264 265 266 267 268
  Irregularities.each do |irregularity|
    singular, plural = *irregularity
    ActiveSupport::Inflector.inflections do |inflect|
      define_method("test_pluralize_of_irregularity_#{plural}_should_be_the_same") do
        inflect.irregular(singular, plural)
        assert_equal plural, ActiveSupport::Inflector.pluralize(plural)
      end
    end
  end

269
  [ :all, [] ].each do |scope|
270
    ActiveSupport::Inflector.inflections do |inflect|
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
      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
        singulars.reverse.each { |singular| inflect.singular(*singular) }
        plurals.reverse.each   { |plural|   inflect.plural(*plural) }
        inflect.uncountable(uncountables)

        assert_equal singulars, inflect.singulars
        assert_equal plurals, inflect.plurals
        assert_equal uncountables, inflect.uncountables
      end
    end
  end

294
  { :singulars => :singular, :plurals => :plural, :uncountables => :uncountable, :humans => :human }.each do |scope, method|
295
    ActiveSupport::Inflector.inflections do |inflect|
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
      define_method("test_clear_inflections_with_#{scope}") do
        # save the inflections
        values = inflect.send(scope)

        # clear the inflections
        inflect.clear(scope)

        assert_equal [], inflect.send(scope)

        # restore the inflections
        if scope == :uncountables
          inflect.send(method, values)
        else
          values.reverse.each { |value| inflect.send(method, *value) }
        end

        assert_equal values, inflect.send(scope)
      end
    end
  end
316
end