2005-01-02 23:16:59 +08:00
|
|
|
require 'test/unit'
|
2005-02-15 23:57:44 +08:00
|
|
|
require File.dirname(__FILE__) + '/../lib/active_support/inflector'
|
2004-12-30 05:03:21 +08:00
|
|
|
|
2005-02-15 23:02:43 +08:00
|
|
|
module Ace
|
|
|
|
module Base
|
|
|
|
class Case
|
2005-02-15 09:45:35 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-12-30 05:03:21 +08:00
|
|
|
class InflectorTest < Test::Unit::TestCase
|
|
|
|
SingularToPlural = {
|
|
|
|
"search" => "searches",
|
|
|
|
"switch" => "switches",
|
|
|
|
"fix" => "fixes",
|
|
|
|
"box" => "boxes",
|
|
|
|
"process" => "processes",
|
|
|
|
"address" => "addresses",
|
|
|
|
"case" => "cases",
|
2005-03-26 21:20:47 +08:00
|
|
|
"stack" => "stacks",
|
|
|
|
"wish" => "wishes",
|
|
|
|
"fish" => "fish",
|
2004-12-30 05:03:21 +08:00
|
|
|
|
|
|
|
"category" => "categories",
|
|
|
|
"query" => "queries",
|
|
|
|
"ability" => "abilities",
|
|
|
|
"agency" => "agencies",
|
|
|
|
"movie" => "movies",
|
|
|
|
|
|
|
|
"wife" => "wives",
|
|
|
|
"safe" => "saves",
|
|
|
|
"half" => "halves",
|
|
|
|
|
|
|
|
"salesperson" => "salespeople",
|
|
|
|
"person" => "people",
|
|
|
|
|
|
|
|
"spokesman" => "spokesmen",
|
|
|
|
"man" => "men",
|
|
|
|
"woman" => "women",
|
|
|
|
|
|
|
|
"basis" => "bases",
|
|
|
|
"diagnosis" => "diagnoses",
|
|
|
|
|
|
|
|
"datum" => "data",
|
|
|
|
"medium" => "media",
|
|
|
|
|
|
|
|
"node_child" => "node_children",
|
|
|
|
"child" => "children",
|
|
|
|
|
|
|
|
"experience" => "experiences",
|
|
|
|
"day" => "days",
|
|
|
|
|
|
|
|
"comment" => "comments",
|
2005-02-15 10:02:20 +08:00
|
|
|
"foobar" => "foobars",
|
|
|
|
"newsletter" => "newsletters",
|
|
|
|
|
|
|
|
"old_news" => "old_news",
|
|
|
|
"news" => "news",
|
|
|
|
|
2005-04-07 14:19:10 +08:00
|
|
|
"series" => "series",
|
|
|
|
|
|
|
|
"perspective" => "perspectives"
|
2004-12-30 05:03:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CamelToUnderscore = {
|
2005-04-07 14:19:10 +08:00
|
|
|
"Product" => "product",
|
|
|
|
"SpecialGuest" => "special_guest",
|
2004-12-30 05:03:21 +08:00
|
|
|
"ApplicationController" => "application_controller"
|
|
|
|
}
|
2005-02-15 09:45:35 +08:00
|
|
|
|
|
|
|
CamelWithModuleToUnderscoreWithSlash = {
|
|
|
|
"Admin::Product" => "admin/product",
|
|
|
|
"Users::Commission::Department" => "users/commission/department",
|
|
|
|
"UsersSection::CommissionDepartment" => "users_section/commission_department",
|
|
|
|
}
|
2004-12-30 05:03:21 +08:00
|
|
|
|
|
|
|
ClassNameToForeignKeyWithUnderscore = {
|
|
|
|
"Person" => "person_id",
|
|
|
|
"MyApplication::Billing::Account" => "account_id"
|
|
|
|
}
|
|
|
|
|
|
|
|
ClassNameToForeignKeyWithoutUnderscore = {
|
|
|
|
"Person" => "personid",
|
|
|
|
"MyApplication::Billing::Account" => "accountid"
|
|
|
|
}
|
|
|
|
|
|
|
|
ClassNameToTableName = {
|
|
|
|
"PrimarySpokesman" => "primary_spokesmen",
|
|
|
|
"NodeChild" => "node_children"
|
|
|
|
}
|
2005-01-18 03:53:42 +08:00
|
|
|
|
|
|
|
UnderscoreToHuman = {
|
|
|
|
"employee_salary" => "Employee salary",
|
|
|
|
"underground" => "Underground"
|
|
|
|
}
|
2004-12-30 05:03:21 +08:00
|
|
|
|
2005-03-26 21:20:47 +08:00
|
|
|
def test_pluralize_plurals
|
|
|
|
assert_equal "plurals", Inflector.pluralize("plurals")
|
|
|
|
assert_equal "Plurals", Inflector.pluralize("Plurals")
|
|
|
|
end
|
|
|
|
|
|
|
|
SingularToPlural.each do |singular, plural|
|
|
|
|
define_method "test_pluralize_#{singular}" do
|
2004-12-30 05:03:21 +08:00
|
|
|
assert_equal(plural, Inflector.pluralize(singular))
|
2005-03-26 21:20:47 +08:00
|
|
|
assert_equal(plural.capitalize, 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|
|
|
|
|
define_method "test_singularize_#{plural}" do
|
2004-12-30 05:03:21 +08:00
|
|
|
assert_equal(singular, Inflector.singularize(plural))
|
2005-03-26 21:20:47 +08:00
|
|
|
assert_equal(singular.capitalize, Inflector.singularize(plural.capitalize))
|
2004-12-30 05:03:21 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_camelize
|
|
|
|
CamelToUnderscore.each do |camel, underscore|
|
|
|
|
assert_equal(camel, Inflector.camelize(underscore))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_underscore
|
|
|
|
CamelToUnderscore.each do |camel, underscore|
|
|
|
|
assert_equal(underscore, Inflector.underscore(camel))
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "html_tidy", Inflector.underscore("HTMLTidy")
|
|
|
|
assert_equal "html_tidy_generator", Inflector.underscore("HTMLTidyGenerator")
|
|
|
|
end
|
|
|
|
|
2005-02-15 09:45:35 +08:00
|
|
|
def test_camelize_with_module
|
|
|
|
CamelWithModuleToUnderscoreWithSlash.each do |camel, underscore|
|
|
|
|
assert_equal(camel, Inflector.camelize(underscore))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_underscore_with_slashes
|
|
|
|
CamelWithModuleToUnderscoreWithSlash.each do |camel, underscore|
|
|
|
|
assert_equal(underscore, Inflector.underscore(camel))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-12-30 05:03:21 +08:00
|
|
|
def test_demodulize
|
|
|
|
assert_equal "Account", Inflector.demodulize("MyApplication::Billing::Account")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_foreign_key
|
|
|
|
ClassNameToForeignKeyWithUnderscore.each do |klass, foreign_key|
|
|
|
|
assert_equal(foreign_key, Inflector.foreign_key(klass))
|
|
|
|
end
|
|
|
|
|
|
|
|
ClassNameToForeignKeyWithoutUnderscore.each do |klass, foreign_key|
|
|
|
|
assert_equal(foreign_key, Inflector.foreign_key(klass, false))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_tableize
|
|
|
|
ClassNameToTableName.each do |class_name, table_name|
|
|
|
|
assert_equal(table_name, Inflector.tableize(class_name))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_classify
|
|
|
|
ClassNameToTableName.each do |class_name, table_name|
|
|
|
|
assert_equal(class_name, Inflector.classify(table_name))
|
|
|
|
end
|
|
|
|
end
|
2005-01-18 03:53:42 +08:00
|
|
|
|
|
|
|
def test_humanize
|
|
|
|
UnderscoreToHuman.each do |underscore, human|
|
|
|
|
assert_equal(human, Inflector.humanize(underscore))
|
|
|
|
end
|
|
|
|
end
|
2005-02-15 09:45:35 +08:00
|
|
|
|
|
|
|
def test_constantize
|
2005-02-15 23:02:43 +08:00
|
|
|
assert_equal Ace::Base::Case, Inflector.constantize("Ace::Base::Case")
|
2005-02-15 09:45:35 +08:00
|
|
|
assert_equal InflectorTest, Inflector.constantize("InflectorTest")
|
|
|
|
assert_raises(NameError) { Inflector.constantize("UnknownClass") }
|
|
|
|
end
|
2005-02-15 10:02:20 +08:00
|
|
|
end
|