1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/rails_generator_test.rb
Jeremy Kemper f29ce1f356 r3023@asus: jeremy | 2005-07-12 23:43:39 -0700
Remove superfluous inherited override in Dependencies.
 r3024@asus:  jeremy | 2005-07-12 23:54:28 -0700
 Make test the default railties rake target.
 r3025@asus:  jeremy | 2005-07-12 23:55:27 -0700
 Encapsulate dispatch call in dispatcher test.
 r3026@asus:  jeremy | 2005-07-12 23:56:14 -0700
 Expand dispatcher mock to match full method signature for process.
 r3027@asus:  jeremy | 2005-07-12 23:57:24 -0700
 Look for app-specific generators in RAILS_ROOT/generators instead of RAILS_ROOT/script/generators.
 r3028@asus:  jeremy | 2005-07-13 00:00:47 -0700
 Update changelog.


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1819 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-07-13 02:12:00 +00:00

88 lines
2.6 KiB
Ruby

require 'test/unit'
# Optionally load RubyGems.
begin
require 'rubygems'
rescue LoadError
end
# Must set before requiring generator libs.
RAILS_ROOT = File.dirname(__FILE__)
# Preemptively load the rest of Rails so Gems don't hijack our requires.
require File.dirname(__FILE__) + '/../../activerecord/lib/active_record'
require File.dirname(__FILE__) + '/../../actionpack/lib/action_controller'
require File.dirname(__FILE__) + '/../lib/rails_generator'
class RailsGeneratorTest < Test::Unit::TestCase
BUILTINS = %w(controller mailer model scaffold)
CAPITALIZED_BUILTINS = BUILTINS.map { |b| b.capitalize }
def test_sources
expected = [:app, :user, :RubyGems, :builtin]
expected.delete(:gem) unless Object.const_defined?(:Gem)
assert_equal expected, Rails::Generator::Base.sources.map { |s| s.label }
end
def test_lookup_builtins
(BUILTINS + CAPITALIZED_BUILTINS).each do |name|
assert_nothing_raised do
spec = Rails::Generator::Base.lookup(name)
assert_not_nil spec
assert_kind_of Rails::Generator::Spec, spec
klass = spec.klass
assert klass < Rails::Generator::Base
assert_equal spec, klass.spec
end
end
end
def test_autolookup
assert_nothing_raised { ControllerGenerator }
assert_nothing_raised { ModelGenerator }
end
def test_lookup_missing_generator
assert_raise(MissingSourceFile) {
Rails::Generator::Base.lookup('missing_generator').klass
}
end
def test_lookup_missing_class
spec = nil
assert_nothing_raised { spec = Rails::Generator::Base.lookup('missing_class') }
assert_not_nil spec
assert_kind_of Rails::Generator::Spec, spec
assert_raise(NameError) { spec.klass }
end
def test_generator_usage
BUILTINS.each do |name|
assert_raise(Rails::Generator::UsageError) {
Rails::Generator::Base.instance(name)
}
end
end
def test_generator_spec
spec = Rails::Generator::Base.lookup('working')
assert_equal 'working', spec.name
assert_equal "#{RAILS_ROOT}/generators/working", spec.path
assert_equal :app, spec.source
assert_nothing_raised { assert_match /WorkingGenerator$/, spec.klass.name }
end
def test_named_generator_attributes
g = Rails::Generator::Base.instance('working', %w(admin/foo bar baz))
assert_equal 'admin/foo', g.name
assert_equal %w(admin), g.class_path
assert_equal 'Admin', g.class_nesting
assert_equal 'Admin::Foo', g.class_name
assert_equal 'foo', g.singular_name
assert_equal 'foos', g.plural_name
assert_equal g.singular_name, g.file_name
assert_equal g.plural_name, g.table_name
assert_equal %w(bar baz), g.args
end
end