所以这就是我得到的错误
.F
失败: PostTest#test_post_should_be_valid [/home/ubuntu/workspace/test/models/post_test.rb:9]: [“用户必须存在”]
我不确定“用户必须存在”意味着什么,因为我非常确定具有user_id的用户确实存在。 继承我的代码
require 'test_helper'
class PostTest < ActiveSupport::TestCase
def setup
@post=Post.new(user_id: "1",name:"ruby meetup")
end
test "post should be valid" do
assert @post.valid?, @post.errors.full_messages
end
end
class Post < ApplicationRecord
belongs_to :user
geocoded_by :address
after_validation :geocode, if: ->(obj){ obj.address.present? and obj.address_changed? }
reverse_geocoded_by :latitude, :longitude
after_validation :reverse_geocode
has_many :rsvps
has_many :users, through: :rsvps
validates :name, presence: true
end
我不确定这是否有用,但我还要包括我的用户测试和用户模型。
require 'test_helper'
class UserTest < ActiveSupport::TestCase
def setup
@user=User.new(email:"fo30@hotmail.com", password: "h3h3123")
end
test "user should be valid" do
assert @user.valid?, @user.errors.full_messages
end
end
class User < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
has_many :posts
has_many :rsvps
has_many :posts, through: :rsvps
validates :email, presence: true
end
由于我刚刚开始在rails中进行测试,所以非常感谢任何帮助。
答案 0 :(得分:1)
User.new
在内存中创建一个新用户,但不在数据库中创建。它没有有效的id
来填充user_id
。
尝试User.create!
。
接下来,测试运行之间不共享数据库记录。在每个测试用例之后,Rails尝试通过zilching记录来“测试隔离”。因此,您的PostTest需要自己的User.create!
。
完成此工作后,查看“rails test fixture”的一般主题......