aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/inflector_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-01-28 15:52:45 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-01-28 15:52:45 +0000
commitb0ed5057e01b78f2f7e0e078c0534647b425c290 (patch)
tree5f95376c0507f8decd83b76c17de93ed8dfc48e2 /activesupport/test/inflector_test.rb
parent269ad9711ddc179e72cc7da3176893a1dcca1b26 (diff)
downloadrails-b0ed5057e01b78f2f7e0e078c0534647b425c290.tar.gz
rails-b0ed5057e01b78f2f7e0e078c0534647b425c290.tar.bz2
rails-b0ed5057e01b78f2f7e0e078c0534647b425c290.zip
Full test coverage for Inflector. Closes #7228.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6075 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/inflector_test.rb')
-rw-r--r--activesupport/test/inflector_test.rb141
1 files changed, 108 insertions, 33 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index d068a9892f..3aff541646 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -70,39 +70,39 @@ class InflectorTest < Test::Unit::TestCase
"perspective" => "perspectives",
- "ox" => "oxen",
- "photo" => "photos",
- "buffalo" => "buffaloes",
- "tomato" => "tomatoes",
- "dwarf" => "dwarves",
- "elf" => "elves",
+ "ox" => "oxen",
+ "photo" => "photos",
+ "buffalo" => "buffaloes",
+ "tomato" => "tomatoes",
+ "dwarf" => "dwarves",
+ "elf" => "elves",
"information" => "information",
- "equipment" => "equipment",
- "bus" => "buses",
- "status" => "statuses",
+ "equipment" => "equipment",
+ "bus" => "buses",
+ "status" => "statuses",
"status_code" => "status_codes",
- "mouse" => "mice",
+ "mouse" => "mice",
- "louse" => "lice",
- "house" => "houses",
- "octopus" => "octopi",
- "virus" => "viri",
- "alias" => "aliases",
- "portfolio" => "portfolios",
+ "louse" => "lice",
+ "house" => "houses",
+ "octopus" => "octopi",
+ "virus" => "viri",
+ "alias" => "aliases",
+ "portfolio" => "portfolios",
- "vertex" => "vertices",
- "matrix" => "matrices",
+ "vertex" => "vertices",
+ "matrix" => "matrices",
- "axis" => "axes",
- "testis" => "testes",
- "crisis" => "crises",
+ "axis" => "axes",
+ "testis" => "testes",
+ "crisis" => "crises",
- "rice" => "rice",
- "shoe" => "shoes",
+ "rice" => "rice",
+ "shoe" => "shoes",
- "horse" => "horses",
- "prize" => "prizes",
- "edge" => "edges"
+ "horse" => "horses",
+ "prize" => "prizes",
+ "edge" => "edges"
}
CamelToUnderscore = {
@@ -190,6 +190,9 @@ class InflectorTest < Test::Unit::TestCase
"103" => "103rd",
"104" => "104th",
"110" => "110th",
+ "111" => "111th",
+ "112" => "112th",
+ "113" => "113th",
"1000" => "1000th",
"1001" => "1001st"
}
@@ -200,6 +203,14 @@ class InflectorTest < Test::Unit::TestCase
"person_street_address" => "person-street-address"
}
+ Irregularities = {
+ 'person' => 'people',
+ 'man' => 'men',
+ 'child' => 'children',
+ 'sex' => 'sexes',
+ 'move' => 'moves',
+ }
+
def test_pluralize_plurals
assert_equal "plurals", Inflector.pluralize("plurals")
assert_equal "Plurals", Inflector.pluralize("Plurals")
@@ -219,9 +230,9 @@ class InflectorTest < Test::Unit::TestCase
end
end
- MixtureToTitleCase.each do |before, title_cased|
- define_method 'test_titlecase' do
- assert_equal(title_cased, Inflector.titleize(before))
+ MixtureToTitleCase.each do |before, titleized|
+ define_method "test_titleize_#{before}" do
+ assert_equal(titleized, Inflector.titleize(before))
end
end
@@ -285,6 +296,10 @@ class InflectorTest < Test::Unit::TestCase
end
end
+ def test_classify_with_leading_schema_name
+ assert_equal 'FooBar', Inflector.classify('schema.foo_bar')
+ end
+
def test_humanize
UnderscoreToHuman.each do |underscore, human|
assert_equal(human, Inflector.humanize(underscore))
@@ -292,12 +307,13 @@ class InflectorTest < Test::Unit::TestCase
end
def test_constantize
- assert_equal Ace::Base::Case, Inflector.constantize("Ace::Base::Case")
- assert_equal Ace::Base::Case, Inflector.constantize("::Ace::Base::Case")
- assert_equal InflectorTest, Inflector.constantize("InflectorTest")
- assert_equal InflectorTest, Inflector.constantize("::InflectorTest")
+ assert_nothing_raised { assert_equal Ace::Base::Case, Inflector.constantize("Ace::Base::Case") }
+ assert_nothing_raised { assert_equal Ace::Base::Case, Inflector.constantize("::Ace::Base::Case") }
+ assert_nothing_raised { assert_equal InflectorTest, Inflector.constantize("InflectorTest") }
+ assert_nothing_raised { assert_equal InflectorTest, Inflector.constantize("::InflectorTest") }
assert_raises(NameError) { Inflector.constantize("UnknownClass") }
assert_raises(NameError) { Inflector.constantize("An invalid string") }
+ assert_raises(NameError) { Inflector.constantize("InvalidClass\n") }
end
def test_constantize_doesnt_look_in_parent
@@ -360,4 +376,63 @@ class InflectorTest < Test::Unit::TestCase
Inflector.inflections.instance_variable_set :@singulars, cached_values[1]
Inflector.inflections.instance_variable_set :@uncountables, cached_values[2]
end
+
+ Irregularities.each do |irregularity|
+ singular, plural = *irregularity
+ Inflector.inflections do |inflect|
+ define_method("test_irregularity_between_#{singular}_and_#{plural}") do
+ inflect.irregular(singular, plural)
+ assert_equal singular, Inflector.singularize(plural)
+ assert_equal plural, Inflector.pluralize(singular)
+ end
+ end
+ end
+
+ [ :all, [] ].each do |scope|
+ Inflector.inflections do |inflect|
+ 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
+
+ { :singulars => :singular, :plurals => :plural, :uncountables => :uncountable }.each do |scope, method|
+ Inflector.inflections do |inflect|
+ 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
end