提交 5179b351 编写于 作者: J Jeremy Kemper

Scaffolded validation errors set the appropriate HTTP status for XML responses. Closes #8622.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6990 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 fde3d9d8
*SVN* *SVN*
* Scaffolded validation errors set the appropriate HTTP status for XML responses. #8622 [mmmultiworks]
* Sexy migrations for the session_migration generator. #8561 [Vladislav] * Sexy migrations for the session_migration generator. #8561 [Vladislav]
* Console reload! runs to_prepare callbacks also. #8393 [f.svehla] * Console reload! runs to_prepare callbacks also. #8393 [f.svehla]
......
...@@ -49,7 +49,7 @@ def create ...@@ -49,7 +49,7 @@ def create
format.xml { render :xml => @<%= file_name %>, :status => :created, :location => @<%= file_name %> } format.xml { render :xml => @<%= file_name %>, :status => :created, :location => @<%= file_name %> }
else else
format.html { render :action => "new" } format.html { render :action => "new" }
format.xml { render :xml => @<%= file_name %>.errors } format.xml { render :xml => @<%= file_name %>.errors, :status => :unprocessable_entity }
end end
end end
end end
...@@ -66,7 +66,7 @@ def update ...@@ -66,7 +66,7 @@ def update
format.xml { head :ok } format.xml { head :ok }
else else
format.html { render :action => "edit" } format.html { render :action => "edit" }
format.xml { render :xml => @<%= file_name %>.errors } format.xml { render :xml => @<%= file_name %>.errors, :status => :unprocessable_entity }
end end
end end
end end
......
...@@ -14,7 +14,7 @@ class << self ...@@ -14,7 +14,7 @@ class << self
end end
self.pluralize_table_names = true self.pluralize_table_names = true
end end
module ConnectionAdapters module ConnectionAdapters
class Column class Column
attr_reader :name, :default, :type, :limit, :null, :sql_type, :precision, :scale attr_reader :name, :default, :type, :limit, :null, :sql_type, :precision, :scale
...@@ -24,7 +24,7 @@ def initialize(name, default, sql_type = nil) ...@@ -24,7 +24,7 @@ def initialize(name, default, sql_type = nil)
@default=default @default=default
@type=@sql_type=sql_type @type=@sql_type=sql_type
end end
def human_name def human_name
@name.humanize @name.humanize
end end
...@@ -54,9 +54,9 @@ class InstanceTag; end ...@@ -54,9 +54,9 @@ class InstanceTag; end
require "#{File.dirname(__FILE__)}/generator_test_helper" require "#{File.dirname(__FILE__)}/generator_test_helper"
class RailsScaffoldGeneratorTest < Test::Unit::TestCase class RailsScaffoldGeneratorTest < Test::Unit::TestCase
include GeneratorTestHelper include GeneratorTestHelper
def setup def setup
ActiveRecord::Base.pluralize_table_names = true ActiveRecord::Base.pluralize_table_names = true
Dir.mkdir("#{RAILS_ROOT}/app") unless File.exists?("#{RAILS_ROOT}/app") Dir.mkdir("#{RAILS_ROOT}/app") unless File.exists?("#{RAILS_ROOT}/app")
...@@ -70,9 +70,9 @@ def setup ...@@ -70,9 +70,9 @@ def setup
Dir.mkdir("#{RAILS_ROOT}/public/stylesheets") unless File.exists?("#{RAILS_ROOT}/public/stylesheets") Dir.mkdir("#{RAILS_ROOT}/public/stylesheets") unless File.exists?("#{RAILS_ROOT}/public/stylesheets")
File.open("#{RAILS_ROOT}/config/routes.rb",'w') do |f| File.open("#{RAILS_ROOT}/config/routes.rb",'w') do |f|
f<<"ActionController::Routing::Routes.draw do |map|\n\nend\n" f<<"ActionController::Routing::Routes.draw do |map|\n\nend\n"
end end
end end
def teardown def teardown
FileUtils.rm_rf "#{RAILS_ROOT}/app" FileUtils.rm_rf "#{RAILS_ROOT}/app"
FileUtils.rm_rf "#{RAILS_ROOT}/test" FileUtils.rm_rf "#{RAILS_ROOT}/test"
...@@ -80,7 +80,7 @@ def teardown ...@@ -80,7 +80,7 @@ def teardown
FileUtils.rm_rf "#{RAILS_ROOT}/db" FileUtils.rm_rf "#{RAILS_ROOT}/db"
FileUtils.rm_rf "#{RAILS_ROOT}/public" FileUtils.rm_rf "#{RAILS_ROOT}/public"
end end
def test_scaffolded_names def test_scaffolded_names
g = Rails::Generator::Base.instance('scaffold', %w(ProductLine)) g = Rails::Generator::Base.instance('scaffold', %w(ProductLine))
assert_equal "ProductLines", g.controller_name assert_equal "ProductLines", g.controller_name
...@@ -90,31 +90,32 @@ def test_scaffolded_names ...@@ -90,31 +90,32 @@ def test_scaffolded_names
assert_equal "product_lines", g.controller_file_name assert_equal "product_lines", g.controller_file_name
assert_equal "product_lines", g.controller_table_name assert_equal "product_lines", g.controller_table_name
end end
def test_scaffold_generates_resources def test_scaffold_generates_resources
run_generator('scaffold', %w(Product)) run_generator('scaffold', %w(Product))
assert_generated_controller_for :products do |f| assert_generated_controller_for :products do |f|
assert_has_method f,:index do |name,m| assert_has_method f,:index do |name,m|
assert m=~/@products = Product\.find\(:all\)/,"#{name} should query products table" assert_match /@products = Product\.find\(:all\)/, m, "#{name} should query products table"
end end
assert_has_method f,:show,:edit,:update,:destroy do |name,m| assert_has_method f,:show,:edit,:update,:destroy do |name,m|
assert m=~/@product = Product\.find\(params\[:id\]\)/,"#{name.to_s} should query products table" assert_match /@product = Product\.find\(params\[:id\]\)/, m, "#{name.to_s} should query products table"
end end
assert_has_method f,:new do |name,m| assert_has_method f,:new do |name,m|
assert m=~/@product = Product\.new/,"#{name.to_s} should instantiate a product" assert_match /@product = Product\.new/, m, "#{name.to_s} should instantiate a product"
end end
assert_has_method f,:create do |name,m| assert_has_method f,:create do |name,m|
assert m=~/@product = Product\.new\(params\[:product\]\)/,"#{name.to_s} should instantiate a product" assert_match /@product = Product\.new\(params\[:product\]\)/, m, "#{name.to_s} should instantiate a product"
assert_match /format.xml \{ render :xml => @product.errors, :status => :unprocessable_entity \}/, m, "#{name.to_s} should set status to :unprocessable_entity code for xml"
end end
end end
assert_generated_model_for :product assert_generated_model_for :product
assert_generated_functional_test_for :products assert_generated_functional_test_for :products
assert_generated_unit_test_for :product assert_generated_unit_test_for :product
...@@ -128,27 +129,28 @@ def test_scaffold_generates_resources ...@@ -128,27 +129,28 @@ def test_scaffold_generates_resources
def test_scaffold_generates_resources_with_attributes def test_scaffold_generates_resources_with_attributes
run_generator('scaffold', %w(Product name:string supplier_id:integer created_at:timestamp)) run_generator('scaffold', %w(Product name:string supplier_id:integer created_at:timestamp))
assert_generated_controller_for :products do |f| assert_generated_controller_for :products do |f|
assert_has_method f,:index do |name,m| assert_has_method f,:index do |name,m|
assert m=~/@products = Product\.find\(:all\)/,"#{name} should query products table" assert_match /@products = Product\.find\(:all\)/, m, "#{name} should query products table"
end end
assert_has_method f,:show,:edit,:update,:destroy do |name,m| assert_has_method f,:show,:edit,:update,:destroy do |name,m|
assert m=~/@product = Product\.find\(params\[:id\]\)/,"#{name.to_s} should query products table" assert_match /@product = Product\.find\(params\[:id\]\)/, m, "#{name.to_s} should query products table"
end end
assert_has_method f,:new do |name,m| assert_has_method f,:new do |name,m|
assert m=~/@product = Product\.new/,"#{name.to_s} should instantiate a product" assert_match /@product = Product\.new/, m, "#{name.to_s} should instantiate a product"
end end
assert_has_method f,:create do |name,m| assert_has_method f,:create do |name,m|
assert m=~/@product = Product\.new\(params\[:product\]\)/,"#{name.to_s} should instantiate a product" assert_match /@product = Product\.new\(params\[:product\]\)/, m, "#{name.to_s} should instantiate a product"
assert_match /format.xml \{ render :xml => @product.errors, :status => :unprocessable_entity \}/, m, "#{name.to_s} should set status to :unprocessable_entity code for xml"
end end
end end
assert_generated_model_for :product assert_generated_model_for :product
assert_generated_functional_test_for :products assert_generated_functional_test_for :products
assert_generated_unit_test_for :product assert_generated_unit_test_for :product
...@@ -161,7 +163,7 @@ def test_scaffold_generates_resources_with_attributes ...@@ -161,7 +163,7 @@ def test_scaffold_generates_resources_with_attributes
assert_generated_column t, :supplier_id, :integer assert_generated_column t, :supplier_id, :integer
assert_generated_column t, :created_at,:timestamp assert_generated_column t, :created_at,:timestamp
end end
assert_added_route_for :products assert_added_route_for :products
end end
end end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册