- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我在让 rspec 正常运行以测试 validates_inclusion_of 我的迁移时遇到问题,如下所示:
class CreateCategories < ActiveRecord::Migration
def self.up
create_table :categories do |t|
t.string :name
t.integer :parent_id
t.timestamps
end
end
def self.down
drop_table :categories
end
end
我的模型是这样的:
class Category < ActiveRecord::Base
acts_as_tree
validates_presence_of :name
validates_uniqueness_of :name
validates_inclusion_of :parent_id, :in => Category.all.map(&:id), :unless => Proc.new { |c| c.parent_id.blank? }
end
我的工厂:
Factory.define :category do |c|
c.name "Category One"
end
Factory.define :category_2, :class => Category do |c|
c.name "Category Two"
end
我的模型规范如下:
require 'spec_helper'
describe Category do
before(:each) do
@valid_attributes = {
:name => "Category"
}
end
it "should create a new instance given valid attributes" do
Category.create!(@valid_attributes)
end
it "should have a name and it shouldn't be empty" do
c = Category.new :name => nil
c.should be_invalid
c.name = ""
c.should be_invalid
end
it "should not create a duplicate names" do
Category.create!(@valid_attributes)
Category.new(@valid_attributes).should be_invalid
end
it "should not save with invalid parent" do
parent = Factory(:category)
child = Category.new @valid_attributes
child.parent_id = parent.id + 100
child.should be_invalid
end
it "should save with valid parent" do
child = Factory.build(:category_2)
child.parent = Factory(:category)
# FIXME: make it pass, it works on cosole, but I don't know why the test is failing
child.should be_valid
end
end
我收到以下错误:
'Category should save with valid parent' FAILED Expected #<Category id: nil, name: "Category Two", parent_id: 5, created_at: nil, updated_at: nil> to be valid, but it was not Errors:
Parent is missing
在控制台上一切似乎都很好并且按预期工作:
c1 = Category.new :name => "Parent Category"
c1.valid? #=> true
c1.save #=> true
c1.id #=> 1
c2 = Category.new :name => "Child Category"
c2.valid? #=> true
c2.parent_id = 100
c2.valid? #=> false
c2.parent_id = 1
c2.valid? #=> true
我正在运行 rails 2.3.5、rspec 1.3.0 和 rspec-rails 1.3.2
任何人,任何想法?
最佳答案
问题是您无法调用Category.all.map(&:id)
里面叫validates_inclusion_of
.
当您尝试运行时,这种情况的第一个迹象将很明显
rake db:migrate:down VERSION=<n>
rake db:migrate:up VERSOIN=<n>
哪里<n>
是创建类别模型的迁移的版本号。
你会得到这样的东西:
in /Users/sseefried/tmp/so)
== CreateCategories: reverting ===============================================
-- drop_table(:categories)
-> 0.0032s
== CreateCategories: reverted (0.0034s) ======================================
(in /Users/sseefried/tmp/so)
rake aborted!
SQLite3::SQLException: no such table: categories: SELECT * FROM "categories"
(See full trace by running task with --trace)
这是因为rake
尝试加载 app/models/category.rb
在运行迁移之前。因为Category
模型不存在失败。
查看问题的另一种方法是执行 tail -f log/development.log
然后尝试使用 script/console
打开控制台.您将看到以下形式的 SQL 查询:
SELECT * FROM "categories"
在输出中。这对应于对 Category.all.map(:&id)
的调用.但是,一旦您开始键入如下命令:
c1 = Category.new, :name => "Category 1"
您将看到查询 SELECT * from "categories"
不会重新出现在日志中。这个故事的寓意是只有常量可以出现在对validations_inclusion_of
的调用中。因为那里的代码只会被评估一次。。
您的控制台代码工作的唯一原因是,在之前的控制台 session 中,您创建了一个 Category
对象 id=1
您可以编写一个自定义验证来执行您想要的操作:
validate :parent_exists
protected
def parent_exists
ids = Category.all.map(&:id)
if !parent_id.blank? && !ids.member?(parent_id)
errors.add(:parent_id, "does not point to a valid parent record")
end
end
添加此代码后,您的 rspec 测试将通过。
关于ruby-on-rails - validates_inclusion_of、acts_as_tree 和 rspec 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2416381/
ruby 文档 says , By default, ActsAsTree expects a foreign key column called parent_id 我的问题是,我们如何才能将默认外
我有一个有点复杂的模型,并且希望在我对 Rails 的有限理解的情况下获得完整的功能。 我有一个部分、一个标题(使用 acts_as_tree)和一个项目。 我使用 json 来导入数据集。这非常有效
假设我们有一个具有树状结构 (acts_as_tree) 的 List 模型。因此,每个列表都可以有父项和/或子项。 基本上,我希望列表的每个子项都在其父项范围内定义position 字段,如何实现?
这是我第一次在同一模型(产品类别)中对层次结构进行建模。 我找到了一个很棒的 post关于这个话题。由于我使用 Rails 4 和 Postgres,根据文章支持递归查询(这是我第一次听到这个术语),
我有这个任务模型: class Task 'sort_order' end 我有这个测试 class TaskTest @root.id, :sort_order => 2) d2 = c
我在让 rspec 正常运行以测试 validates_inclusion_of 我的迁移时遇到问题,如下所示: class CreateCategories Category.all.map(&:
我有以下内容: class Menu {:parent_id => 0} - was trying # to set parent_id to 0 for top level has_man
我正在使用 Rails 3.2.3 和 acts_as_tree 1.1.0。我一直在将 acts_as_tree 用于一些早期版本的 Rails 3(例如 3.1.1.)的不同项目,没有出现任何问题
我正在使用 ancestry gem在树中构建一些组。同时,我使用 acts_as_list 将组保持在排序列表中的同一树级别。给定以下模型: class Group "ancestry" na
我是一名优秀的程序员,十分优秀!