我正在玩rails 3.0.6与ruby 1.9.2,该应用程序正在浏览器上运行,但未在测试中…
1)我创建了一个新的rails应用程序"rails new myapp"
2)生成脚手架"rails生成脚手架用户username:string hashhed_password:string salt:string"
3)之后,我改变了users_controller一个位
# POST /users
# POST /users.xml
def create
@user = User.new(params[:user])
respond_to do |format|
if @user.save
// change @user to usrs_url
format.html { redirect_to(users_url, :notice => "User #{@user.username} was successfully created.") }
format.xml { render :xml => @user, :status => :created, :location => @user }
else
format.html { render :action => "new" }
format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
end
end
end
# PUT /users/1
# PUT /users/1.xml
def update
@user = User.find(params[:id])
respond_to do |format|
if @user.update_attributes(params[:user])
// change @user to usrs_url
format.html { redirect_to(users_url, :notice => "User #{@user.username} was successfully updated.") }
format.xml { head :ok }
else
format.html { render :action => "edit" }
format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
end
end
end
4)所以我也试着修改测试:
setup do
@input_attributes = {
:username => 'username@goodmail.com',
:password => 'secret',
:password_confirmation => 'secret'
}
@user = users(:one)
end
test "should create user" do
assert_difference('User.count') do
post :create, :user => @input_attributes
end
assert_redirected_to users_path
end
test "should update user" do
put :update, :id => @user.to_param, :user => @input_attributes
assert_redirected_to users_path
end
但是创建和更新测试失败
谁能告诉我我做错了什么?感谢Loaded suite C:/Ruby192/lib/ruby/1.9.1/rake/rake_test_loader
Started
F.....F
Finished in 5.628874 seconds.
1) Failure:
test_should_create_user(UsersControllerTest) [test/functional/users_controller_test.rb:26]:
"User.count" didn't change by 1.
<3> expected but was
<2>.
2) Failure:
test_should_update_user(UsersControllerTest) [test/functional/users_controller_test.rb:45]:
Expected block to return true value.
7 tests, 9 assertions, 2 failures, 0 errors, 0 skips
require 'digest/sha2'
class User < ActiveRecord::Base
validates :username, :presence => true, :uniqueness => true
validates_format_of :username, :with => /A^[^rn@ ][^rn@ ]+@[^rn@ ]+[.][^rn@. ]+$Z/i
#password is a fake field
validates :password, :confirmation => true
validate :password_must_be_present
attr_accessor :password_confirmation
attr_reader :password
def password=(password)
if password.present?
generate_salt
self.hashed_password = self.class.encrypt_password(password, salt)
end
end
class << self
def encrypt_password(password, salt)
Digest::SHA2.hexdigest(password + "shrimpy" + salt)
end
def authenticate(username, password)
if user = find_by_username(username)
if user.hashed_password == encrypt_password(password, user.salt)
user
end
end
end
end
private
def password_must_be_present
errors.add(:password, "Missing password") unless hashed_password.present?
end
def generate_salt
self.salt = self.object_id.to_s + rand.to_s
end
end
assert_redirected_to user_path
是奇异的。您甚至可能没有定义单个user
资源路由。您想要的可能是assert_redirected_to users_path
与复数users。