我是 Rails 和 Rspec 的新手,我正在使用 Rspec 测试这个控制器方法,其中包括异常处理:
def search_movies_director
@current_movie = Movie.find(params[:id])
begin
@movies = Movie.find_movies_director(params[:id])
rescue Movie::NoDirectorError
flash[:warning] = "#{@current_movie} has no director info"
redirect_to movies_path
end
end
我不知道如何正确测试所述路径:在无效搜索后(收到错误时)它应该重定向到主页。我试过这样的事情:
describe MoviesController do
describe 'Finding Movies With Same Director' do
#some other code
context 'after invalid search' do
it 'should redirect to the homepage' do
Movie.stub(:find)
Movie.stub(:find_movies_director).and_raise(Movie::NoDirectorError)
get :search_movies_director, {:id => '1'}
response.should redirect_to movies_path
end
end
end
end
运行测试失败并出现错误后: NameError: uninitialized constant Movie::NoDirectorError
如何伪造在此测试中引发错误,以便实际检查是否发生重定向?
谢谢!
更新:
正如 nzifnab 解释的那样,它找不到Movie::NoDirectorError
. 我忘了定义这个异常类。所以我将它添加到app/models/movie.rb
:
class Movie < ActiveRecord::Base
class Movie::NoDirectorError < StandardError ; end
#some model methods
end
这解决了我的问题,这个测试通过了。