mirror of
https://github.com/github/rails.git
synced 2026-04-04 03:00:58 -04:00
Added --skip-migration option to scaffold and resource generators (closes #8656) [Michael Glaesemann]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7108 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Added --skip-migration option to scaffold and resource generators #8656 [Michael Glaesemann]
|
||||
|
||||
* Fix that FCGIs would leave log files open when asked to shut down by USR2 #3028 [sebastian.kanthak/josh]
|
||||
|
||||
* Fixed that dispatcher preparation callbacks only run once in production mode. Mock Routes.reload so that dispatcher preparation callback tests run. [Rick]
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
class ResourceGenerator < Rails::Generator::NamedBase
|
||||
default_options :skip_migration => false
|
||||
|
||||
attr_reader :controller_name,
|
||||
:controller_class_path,
|
||||
:controller_file_path,
|
||||
@@ -57,7 +59,14 @@ class ResourceGenerator < Rails::Generator::NamedBase
|
||||
"Usage: #{$0} resource ModelName [field:type, field:type]"
|
||||
end
|
||||
|
||||
def model_name
|
||||
def add_options!(opt)
|
||||
opt.separator ''
|
||||
opt.separator 'Options:'
|
||||
opt.on("--skip-migration",
|
||||
"Don't generate a migration file for this model") { |v| options[:skip_migration] = v }
|
||||
end
|
||||
|
||||
def model_name
|
||||
class_name.demodulize
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
class ScaffoldGenerator < Rails::Generator::NamedBase
|
||||
default_options :skip_migration => false
|
||||
|
||||
attr_reader :controller_name,
|
||||
:controller_class_path,
|
||||
:controller_file_path,
|
||||
@@ -51,7 +53,7 @@ class ScaffoldGenerator < Rails::Generator::NamedBase
|
||||
m.template('layout.html.erb', File.join('app/views/layouts', controller_class_path, "#{controller_file_name}.html.erb"))
|
||||
m.template('style.css', 'public/stylesheets/scaffold.css')
|
||||
|
||||
m.dependency 'model', [singular_name] + @args, :collision => :skip
|
||||
m.dependency 'model', [singular_name] + @args, :collision => :skip
|
||||
|
||||
m.template(
|
||||
'controller.rb', File.join('app/controllers', controller_class_path, "#{controller_file_name}_controller.rb")
|
||||
@@ -70,11 +72,18 @@ class ScaffoldGenerator < Rails::Generator::NamedBase
|
||||
"Usage: #{$0} scaffold ModelName [field:type, field:type]"
|
||||
end
|
||||
|
||||
def add_options!(opt)
|
||||
opt.separator ''
|
||||
opt.separator 'Options:'
|
||||
opt.on("--skip-migration",
|
||||
"Don't generate a migration file for this model") { |v| options[:skip_migration] = v }
|
||||
end
|
||||
|
||||
def scaffold_views
|
||||
%w[ index show new edit ]
|
||||
end
|
||||
|
||||
def model_name
|
||||
def model_name
|
||||
class_name.demodulize
|
||||
end
|
||||
end
|
||||
|
||||
@@ -3,14 +3,14 @@ module GeneratorTestHelper
|
||||
def build_generator(name,params)
|
||||
Rails::Generator::Base.instance(name,params)
|
||||
end
|
||||
|
||||
# Runs the create command (like the command line does)
|
||||
|
||||
# Runs the create command (like the command line does)
|
||||
def run_generator(name,params)
|
||||
silence_generator do
|
||||
build_generator(name,params).command(:create).invoke!
|
||||
end
|
||||
silence_generator do
|
||||
build_generator(name,params).command(:create).invoke!
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# Silences the logger temporarily and returns the output as a String
|
||||
def silence_generator
|
||||
logger_original=Rails::Generator::Base.logger
|
||||
@@ -20,7 +20,7 @@ module GeneratorTestHelper
|
||||
Rails::Generator::Base.logger=logger_original
|
||||
myout.string
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given controller was generated.
|
||||
# It takes a name or symbol without the <tt>_controller</tt> part and an optional super class.
|
||||
# The contents of the class source file is passed to a block.
|
||||
@@ -29,7 +29,7 @@ module GeneratorTestHelper
|
||||
yield body if block_given?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given model was generated.
|
||||
# It takes a name or symbol and an optional super class.
|
||||
# the contents of the class source file is passed to a block.
|
||||
@@ -47,7 +47,7 @@ module GeneratorTestHelper
|
||||
yield body if block_given?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given functional test was generated.
|
||||
# It takes a name or symbol without the <tt>_controller_test</tt> part and an optional super class.
|
||||
# the contents of the class source file is passed to a block.
|
||||
@@ -74,45 +74,45 @@ module GeneratorTestHelper
|
||||
yield f.read if block_given?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given file exists
|
||||
def assert_file_exists(path)
|
||||
assert File.exists?("#{RAILS_ROOT}/#{path}"),"The file '#{path}' should exist"
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given class source file was generated.
|
||||
# It takes a path without the <tt>.rb</tt> part and an optional super class.
|
||||
# the contents of the class source file is passed to a block.
|
||||
def assert_generated_class(path,parent=nil)
|
||||
path=~/\/?(\d+_)?(\w+)$/
|
||||
class_name=$2.camelize
|
||||
assert_generated_file("#{path}.rb") do |body|
|
||||
assert_generated_file("#{path}.rb") do |body|
|
||||
assert body=~/class #{class_name}#{parent.nil? ? '':" < #{parent}"}/,"the file '#{path}.rb' should be a class"
|
||||
yield body if block_given?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given module source file was generated.
|
||||
# It takes a path without the <tt>.rb</tt> part.
|
||||
# the contents of the class source file is passed to a block.
|
||||
def assert_generated_module(path)
|
||||
def assert_generated_module(path)
|
||||
path=~/\/?(\w+)$/
|
||||
module_name=$1.camelize
|
||||
assert_generated_file("#{path}.rb") do |body|
|
||||
assert_generated_file("#{path}.rb") do |body|
|
||||
assert body=~/module #{module_name}/,"the file '#{path}.rb' should be a module"
|
||||
yield body if block_given?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given css stylesheet file was generated.
|
||||
# It takes a path without the <tt>.css</tt> part.
|
||||
# the contents of the stylesheet source file is passed to a block.
|
||||
def assert_generated_stylesheet(path)
|
||||
assert_generated_file("public/stylesheets/#{path}.css") do |body|
|
||||
assert_generated_file("public/stylesheets/#{path}.css") do |body|
|
||||
yield body if block_given?
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given yaml file was generated.
|
||||
# It takes a path without the <tt>.yml</tt> part.
|
||||
# the parsed yaml tree is passed to a block.
|
||||
@@ -120,9 +120,9 @@ module GeneratorTestHelper
|
||||
assert_generated_file("#{path}.yml") do |body|
|
||||
assert yaml=YAML.load(body)
|
||||
yield yaml if block_given?
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given fixtures yaml file was generated.
|
||||
# It takes a fixture name without the <tt>.yml</tt> part.
|
||||
# the parsed yaml tree is passed to a block.
|
||||
@@ -132,36 +132,43 @@ module GeneratorTestHelper
|
||||
yield yaml if block_given?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given views were generated.
|
||||
# It takes a controller name and a list of views (including extensions).
|
||||
# The body of each view is passed to a block
|
||||
def assert_generated_views_for(name,*actions)
|
||||
actions.each do |action|
|
||||
assert_generated_file("app/views/#{name.to_s.underscore}/#{action.to_s}") do |body|
|
||||
assert_generated_file("app/views/#{name.to_s.underscore}/#{action.to_s}") do |body|
|
||||
yield body if block_given?
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given migration file was generated.
|
||||
# It takes the name of the migration as a parameter.
|
||||
# the migration body is passed to a block.
|
||||
# The migration body is passed to a block.
|
||||
def assert_generated_migration(name,parent="ActiveRecord::Migration")
|
||||
assert_generated_class "db/migrate/001_#{name.to_s.underscore}",parent do |body|
|
||||
assert body=~/timestamps/, "should have timestamps defined"
|
||||
assert_generated_class "db/migrate/001_#{name.to_s.underscore}",parent do |body|
|
||||
assert body=~/timestamps/, "should have timestamps defined"
|
||||
yield body if block_given?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# Asserts that the given migration file was not generated.
|
||||
# It takes the name of the migration as a parameter.
|
||||
def assert_skipped_migration(name)
|
||||
migration_file = "#{RAILS_ROOT}/db/migrate/001_#{name.to_s.underscore}.rb"
|
||||
assert !File.exists?(migration_file), "should not create migration #{migration_file}"
|
||||
end
|
||||
|
||||
# asserts that the given resource was added to the routes.
|
||||
def assert_added_route_for(name)
|
||||
assert_generated_file("config/routes.rb") do |body|
|
||||
assert body=~/map.resources :#{name.to_s.underscore}/,"should add route for :#{name.to_s.underscore}"
|
||||
end
|
||||
end
|
||||
|
||||
# asserts that the given methods are defined in the body.
|
||||
|
||||
# asserts that the given methods are defined in the body.
|
||||
# This does assume standard rails code conventions with regards to the source code.
|
||||
# The body of each individual method is passed to a block.
|
||||
def assert_has_method(body,*methods)
|
||||
@@ -170,12 +177,12 @@ module GeneratorTestHelper
|
||||
yield( name, $1 ) if block_given?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# asserts that the given column is defined in the migration
|
||||
def assert_generated_column(body,name,type)
|
||||
assert body=~/t\.#{type.to_s} :#{name.to_s}/, "should have column #{name.to_s} defined"
|
||||
end
|
||||
|
||||
|
||||
private
|
||||
# asserts that the default timestamps are created in the fixture
|
||||
def assert_generated_timestamps(yaml)
|
||||
@@ -183,6 +190,6 @@ module GeneratorTestHelper
|
||||
["created_at", "updated_at"].each do |field|
|
||||
assert v.keys.include?(field), "should have #{field} field by default"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -42,10 +42,11 @@ end
|
||||
|
||||
|
||||
# Must set before requiring generator libs.
|
||||
tmp_dir="#{File.dirname(__FILE__)}/../fixtures/tmp"
|
||||
if defined?(RAILS_ROOT)
|
||||
RAILS_ROOT.replace "#{File.dirname(__FILE__)}/../fixtures/tmp"
|
||||
RAILS_ROOT.replace(tmp_dir)
|
||||
else
|
||||
RAILS_ROOT = "#{File.dirname(__FILE__)}/../fixtures/tmp"
|
||||
RAILS_ROOT=tmp_dir
|
||||
end
|
||||
Dir.mkdir(RAILS_ROOT) unless File.exists?(RAILS_ROOT)
|
||||
|
||||
@@ -127,6 +128,20 @@ class RailsScaffoldGeneratorTest < Test::Unit::TestCase
|
||||
assert_added_route_for :products
|
||||
end
|
||||
|
||||
def test_scaffold_skip_migration_skips_migration
|
||||
run_generator('scaffold', %w(Product --skip-migration))
|
||||
|
||||
assert_generated_model_for :product
|
||||
assert_generated_functional_test_for :products
|
||||
assert_generated_unit_test_for :product
|
||||
assert_generated_fixtures_for :products
|
||||
assert_generated_helper_for :products
|
||||
assert_generated_stylesheet :scaffold
|
||||
assert_generated_views_for :products, "index.html.erb","new.html.erb","edit.html.erb","show.html.erb"
|
||||
assert_skipped_migration :create_products
|
||||
assert_added_route_for :products
|
||||
end
|
||||
|
||||
def test_scaffold_generates_resources_with_attributes
|
||||
run_generator('scaffold', %w(Product name:string supplier_id:integer created_at:timestamp))
|
||||
|
||||
@@ -166,4 +181,5 @@ class RailsScaffoldGeneratorTest < Test::Unit::TestCase
|
||||
|
||||
assert_added_route_for :products
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user